diff --git a/.Rprofile b/.Rprofile new file mode 100644 index 0000000..81b960f --- /dev/null +++ b/.Rprofile @@ -0,0 +1 @@ +source("renv/activate.R") diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..feaa6b8 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,31 @@ +{ + "permissions": { + "allow": [ + "Bash(sed 's/.*\"\"Package\"\": \"\"//')", + "Bash(R_CONFIG_ACTIVE=draft Rscript -e \":*)", + "Bash(ps -p 50426 -o pid,command)", + "Bash(while kill -0 50426)", + "Bash(do sleep 3)", + "Bash(DOCSTYLE_DEBUG=1 quarto render full-study-protocol.qmd)", + "Bash(Rscript -e \"cat\\(system.file\\(package=''docstyle''\\)\\)\")", + "Bash(Rscript -e \"ls\\(getNamespace\\(''docstyle''\\)\\)\")", + "Bash(Rscript -e \"packageVersion\\(''docstyle''\\)\")", + "Bash(Rscript -e \"renv::install\\(''~/github/docstyle''\\)\")", + "Bash(Rscript -e \"renv::install\\(''splines2''\\)\")", + "Bash(Rscript -e \"testthat::test_file\\(''tests/testthat/test-apc-data.R''\\)\")", + "Bash(Rscript -e \"testthat::test_dir\\(''tests/testthat/''\\)\")", + "Bash(R_CONFIG_ACTIVE=draft Rscript -e \"targets::tar_make\\(names = c\\(''apc_data'', ''apc_model_initiation_men'', ''apc_model_initiation_women'', ''apc_model_cessation_men'', ''apc_model_cessation_women''\\)\\)\")", + "Bash(Rscript -e \"docstyle::update_extension\\(\\)\")", + "Bash(Rscript -e \"renv::install\\(''DougManuel/docstyle''\\)\")", + "Bash(Rscript -e \"docstyle::update_extension\\(''/Users/dmanuel/github/cshgm-dev/docs''\\)\")", + "Bash(R_CONFIG_ACTIVE=draft Rscript -e \"targets::tar_make\\(names = c\\(''apc_model_initiation_men'', ''apc_model_initiation_women'', ''apc_model_cessation_men'', ''apc_model_cessation_women''\\)\\)\")", + "Read(//Users/dmanuel/github/cshgm-dev/**)", + "Bash(du -h data/dev/*.RData)", + "Read(//Users/dmanuel/github/cchsflow/.claude/worktrees/smoking-cleanup/**)", + "Read(//Users/dmanuel/github/cchsflow/.claude/worktrees/smoking-cleanup/$1 ~ /^\\(age_start_smoking|age_first_cigarette|cigs_per_day|time_quit_smoking|pack_years|SMKDSTY_cat5|smoke_simple\\)$/**)" + ], + "additionalDirectories": [ + "/Users/dmanuel/.claude/projects/-Users-dmanuel-github-cshgm-dev" + ] + } +} diff --git a/.gitignore b/.gitignore index def92c1..f313e75 100644 --- a/.gitignore +++ b/.gitignore @@ -6,11 +6,60 @@ # Built _targets dist +_site/ +_freeze/ + +# renv library files (large) +renv/library/ # Mac .DS_Store -data/prod -.prettierrc +# Data (raw source files — never commit; pipeline outputs kept locally only) +data/dev/*.RData +data/dev/*.rdata +data/*.rds + +# Secure config (RDC paths — never commit) +config/statscan.yml + +# Legacy SAS code (ICES copyright — not for distribution) +resources/legacy-code/*.sas +# Editor configs +.prettierrc .vscode/ + +# Manuscript rendered output +manuscript/output/ +manuscript/_docstyle/ + +# Generated files +*.html +*.pdf +*.log +*.aux + +/.quarto/ +docs/.quarto/ + +/.luarc.json + +# Internal development notes (working documents, not for collaborators) +docs/development/ + +# Working copies +worksheets/cshm-variables-working-copy.csv + +# Runtime +logs/ + +# Machine-local Claude Code settings +.claude/settings.local.json + +resources/ + +# Quarto project caches +manuscript/.quarto/ + +**/*.quarto_ipynb diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..f19ce29 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,160 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +For project overview, methodology, and architecture see [README.md](README.md) and [docs/development/project-architecture.md](docs/development/project-architecture.md). + +## Common commands + +```r +# Run the full pipeline +targets::tar_make() + +# Visualize pipeline DAG +targets::tar_visnetwork() + +# Run a single target / inspect / check outdated +targets::tar_make(study_data) +targets::tar_read(study_data) +targets::tar_outdated() + +# Run tests +testthat::test_dir("tests/testthat/") +testthat::test_file("tests/testthat/test-apc-data.R") + +# Switch config profile (dev = 10% sample; draft = 5% from cchsflow-data release) +Sys.setenv(R_CONFIG_ACTIVE = "dev") +targets::tar_make() + +# Add a new dependency +renv::install("package-name") +renv::snapshot() +``` + +```bash +# Preview / build documentation website +quarto preview +quarto render + +# Render manuscript to Word (docstyle) +quarto render manuscript/manuscript.qmd +``` + +## Developer context + +### Pipeline and configuration + +The pipeline follows the DemPoRT-V2-dev pattern (`~/github/DemPoRT-V2-dev`); its CLAUDE.md is the reference implementation. + +| File | Purpose | +|------|---------| +| [_targets.R](_targets.R) | Pipeline definition (stages 1–8 active; 9–10 stubbed) | +| [config.yml](config.yml) | Environment profiles (`default`, `draft`, `dev`, `prod`, `statscan`) | +| [worksheets/cshm-variables.csv](worksheets/cshm-variables.csv) | Study variable list — `role`, `source`, and `purpose` columns | +| [worksheets/cshm-variable-details.csv](worksheets/cshm-variable-details.csv) | CSHM extension rows: GEOGPRV and WTS_M for cchs2019_2020_p and cchs2022_p (DHH_SEX/DHHGAGE_cont rows removed — cchsflow v3 now covers them) | +| [R/study-data.R](R/study-data.R) | `load_study_data()` — load + harmonize CCHS cycles | +| [R/data-cleaning.R](R/data-cleaning.R) | `clean_study_data()` — distribution checks, truncation | +| [R/imputation.R](R/imputation.R) | `impute_data()` — MICE imputation | +| [R/descriptive-data.R](R/descriptive-data.R) | `get_cshm_desc_data()` — Table 1 statistics wrapper | +| [R/get-descriptive-data.R](R/get-descriptive-data.R) | `get_descriptive_data()` — core stats engine (ported from DemPoRT) | +| [R/create-descriptive-tables.R](R/create-descriptive-tables.R) | `create_descriptive_table()`, `create_cycle_specific_descriptive_table()` | +| [R/variables-sheet-utils.R](R/variables-sheet-utils.R) | Variables worksheet helpers (ported from DemPoRT) | +| [R/variable-details-sheet-utils.R](R/variable-details-sheet-utils.R) | Variable details helpers (ported from DemPoRT) | +| [R/apc-model.R](R/apc-model.R) | APC data prep + model fitting | +| [R/smoking-histories.R](R/smoking-histories.R) | Rate table generation (Stage 9, stub) | +| [R/validation.R](R/validation.R) | Prevalence validation | +| [docs/results/table-1.qmd](docs/results/table-1.qmd) | Table 1a, 1b, and cycle appendix | +| [R/legacy/smoking.R](R/legacy/smoking.R) | Interim smoking variables (pre-cchsflow v3) | +| [R/legacy/process_smoking_initiation.R](R/legacy/process_smoking_initiation.R) | APC data prep (pre-pipeline; superseded by R/apc-model.R) | +| [resources/legacy-code/Modeling2013.sas](resources/legacy-code/Modeling2013.sas) | Original SAS implementation (Manuel et al. 2020) | +| docs/references/Manuel_HR_2020.pdf | Key reference paper (local only; PDFs are gitignored) | +| [config/statscan.yml.example](config/statscan.yml.example) | RDC config template (copy to `config/statscan.yml`, gitignored) | + +**Documentation structure** (three purposes): + +| Location | Purpose | +|----------|---------| +| [docs/protocol/full-protocol.qmd](docs/protocol/full-protocol.qmd) | Prespecified study protocol | +| [docs/protocol/study-summary.qmd](docs/protocol/study-summary.qmd) | One-page protocol summary | +| [docs/workflow/](docs/workflow/) | Step QMDs — one per pipeline stage (Stages 1–8) | +| [manuscript/manuscript.qmd](manuscript/manuscript.qmd) | Study manuscript (all numbers inline R from pipeline) | +| [docs/how-to/](docs/how-to/) | Task-oriented guides | +| [docs/explanation/](docs/explanation/) | Conceptual explanations of APC methodology | +| [docs/reference/](docs/reference/) | Variable, function, and model reference | + +**Development artefacts** (`docs/development/` — gitignored, local only): planning documents, meeting notes, protocol drafts, pipeline progress notes. + +`config.yml` profiles (set via `R_CONFIG_ACTIVE`): +- **default** — PUMF data from `~/github/cchsflow-data/data/sources/rdata/` (renamed via scripts/rename-pumf-objects.R); full sample +- **draft** — 5% sample from `cchsflow-data` release files (`CCHS_2001.RData` naming, internal object `table`) +- **dev** — 10% sample from default PUMF source; single imputation; fast iteration +- **prod** — full PUMF sample; WARN logging +- **statscan** — delegates to `config/statscan.yml` (gitignored); Master file paths at RDC + +APC spline knots: Age `[10, 15, 20, 50, 60]` · Period `[1940, 1950, 1960, 1970, 1980]` · Cohort `[1930, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980]` + +### Data paths + +PUMF `.RData` files: `~/github/cchsflow/data/` (cycles 2001–2017/18 with correct `cchs*_p` naming). Cycles 2019–20 and 2022 require renaming from `cchsflow-data` GH release via `scripts/rename-pumf-objects.R`. + +CCHS metadata CLI: +```bash +python3 ~/github/cchsflow-docs/mcp-server/cli.py search smoking +python3 ~/github/cchsflow-docs/mcp-server/cli.py detail SMKDSTY +python3 ~/github/cchsflow-docs/mcp-server/cli.py compare cchs2013_2014_p cchs2013_2014_m +``` + +### Variable naming + +The `variableStart` worksheet column uses cchsflow notation: `cchs2001_p::SMKA_01A, cchs2007_2008_p::SMK_01A, [SMK_01A]` — `_p` = PUMF, `_m` = Master, `[VAR]` = fallback name. + +**Unified variables (preferred):** `age_first_cigarette`, `age_start_smoking`, `time_quit_smoking` + +**Master-only continuous:** `SMK_01C`, `SMK_040`, `SMK_09C` / `SMK_06C` / `SMK_10C` + +**PUMF pseudo-continuous (midpoint imputed):** `SMKG01C_cont`, `SMKG040_cont`, `SMK_09A_cont` / `SMK_06A_cont` / `SMK_10A_cont` + +**Deprecated aliases:** `SMK_005` → `SMK_202`; `SMK_030` → `SMK_05D` + +**APC model variables (internal):** `age`, `cohort`, `period`, `init`, `weighting`, `ont_id` + +### cchsflow dependency + +Branch: `v3` (smoking work merged 2026-04-29, commit bd0df3ac; PR #163 closed in favour of direct merge). The pipeline reads recoding rules from the in-repo snapshot `worksheets/cchsflow-variable-details.csv` (taken from `~/github/cchsflow/inst/extdata/variable_details.csv` with local fixes for cchsflow #184/#185); refresh it when upstream merges the fixes. renv installs the cchsflow *package* from the local `~/github/cchsflow` checkout on `v3` (CRAN 2.1.0 lacks the v3 derivation functions). Key smoking files: +`R/smoke-start.R`, `R/smoke-stop.R`, `R/smoke-intensity.R`, `R/smoking-status.R`, `R/smoking-cessation.R`, `R/clean-variables.R`, `R/missing-data-functions.R` + +cchsflow must be *attached* (not just `::`-qualified) when calling `rec_with_table()` — v3 derivation functions use unqualified dplyr/rlang helpers that resolve through its `Depends`. `_targets.R` handles this with `tar_option_set(packages = "cchsflow")`. + +### Variable roles + +Roles are comma-separated in `cshm-variables.csv`. A variable may carry multiple roles. `select_vars_by_role(role, variables_sheet)` handles this correctly. + +| Role | Group | Purpose | +|------|-------|---------| +| `design` | Survey design | Survey infrastructure (SurveyCycle, WTS_M) | +| `intermediate` | Harmonization | Raw cchsflow input needed to derive a unified variable; not used directly by pipeline code | +| `predictor` | Model | Covariate in the APC model or descriptive analysis | +| `model-stratifier` | Model | Stratifies APC into separate fits (e.g. DHH_SEX) | +| `table1` | Descriptive | Row in Table 1 descriptive statistics | +| `table1-stratifier` | Descriptive | Stratifies Table 1 columns | +| `apc-numerator` | APC data prep | Defines the event indicator in Stage 7 | +| `apc-denominator` | APC data prep | Constructs the at-risk person-year denominator in Stage 7 | +| `imputation-predictor` | Imputation | Included in MICE imputation model | +| `sensitivity-analysis` | Analysis | Used in sensitivity analyses only | + +Role vocabulary (single source of truth): [schemas/cshm-variables.yaml](schemas/cshm-variables.yaml) `VariableRoleEnum`. Role helpers in `R/variables-sheet-utils.R` are project-local for now; long-term home is cchsflow (skill branch `skills/review-validation`). + +### Missing data conventions + +`haven::tagged_na()` throughout: **NA(a)** = not applicable · **NA(b)** = don't know/refused · **NA(c)** = not asked this cycle + +## Code style + +- Follow tidyverse design principles; snake_case for all function and variable names +- Format code with the `styler` package + +## Editorial style + +- Canadian English: "modelling", "behaviour", "analyse" +- Sentence case for all headings (except document title) +- Provide DOI or PMID for references diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..8c8f82a --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,160 @@ +# Contributing to CSHM + +Thank you for your interest in contributing to the Canadian Smoking Histories Model (CSHM) project! This document provides guidelines for contributions to help maintain consistency and quality across the project. + +## Code of Conduct + +All contributors are expected to adhere to the project's code of conduct, which promotes a respectful and inclusive environment for collaboration. + +## How to Contribute + +There are many ways to contribute to the CSHM project: + +1. **Report issues**: Submit bug reports or feature requests through the GitHub issue tracker. +2. **Suggest improvements**: Share ideas for enhancing the code, documentation, or workflow. +3. **Submit code**: Contribute code improvements via pull requests. +4. **Improve documentation**: Help make the documentation more comprehensive and clear. +5. **Test the software**: Report unexpected behavior or performance issues. + +## Development Workflow + +### 1. Fork the Repository + +Start by forking the repository and creating a local clone of your fork: + +```bash +git clone https://github.com/your-username/cshgm.git +cd cshgm + +# Install renv if you don't have it +install.packages("renv") + +# Set up the project environment with renv +renv::restore() +``` + +This will set up all the required package dependencies in a project-specific library. + +### 2. Create a Branch + +Create a branch for your changes: + +```bash +git checkout -b your-branch-name +``` + +Use descriptive branch names that reflect the purpose of your changes: +- `feature/add-cessation-model` +- `fix/initiation-calculation-bug` +- `docs/improve-apc-explanation` + +### 3. Make Your Changes + +Follow these guidelines when making changes: + +- Adhere to the code style guidelines in the project specifications +- Use clear, descriptive variable and function names +- Add comprehensive documentation for new functions +- Include tests for new functionality +- Follow Canadian spelling conventions + +#### Package Management + +When adding new package dependencies: + +```r +# Install a new package with renv +renv::install("packagename") + +# Update the renv.lock file to record the dependency +renv::snapshot() +``` + +Include the updated `renv.lock` file in your pull request so other contributors will get the same dependencies. + +### 4. Test Your Changes + +Before submitting a pull request, ensure that: + +- All tests pass +- New functionality is tested +- Documentation is updated and complete + +Run tests with: + +```r +testthat::test_dir("tests/testthat/") +``` + +### 5. Update Documentation + +If your changes require documentation updates: + +1. Edit the appropriate `.qmd` files in the `docs/` directory +2. Preview your changes locally: + ```bash + quarto preview + ``` +3. Make sure your documentation changes render correctly before submitting your PR + +#### Documentation Structure + +- `docs/reference/`: Technical reference documentation +- `docs/how-to/`: Task-oriented guides +- `docs/explanation/`: Conceptual explanations +- `docs/tutorials/`: Learning-oriented tutorials + +#### Writing Style + +- Use sentence case for headings +- Follow Canadian spelling conventions +- Be clear, concise, and direct +- Use examples where appropriate + +### 6. Submit a Pull Request + +1. Push your changes to your fork: + ```bash + git push origin your-branch-name + ``` + +2. Create a pull request from your branch to the main CSHM repository +3. Provide a clear title and description for your pull request, explaining: + - What changes you've made + - Why these changes are necessary + - Any dependencies or potential issues + +### 7. Code Review + +All pull requests will be reviewed by project maintainers. Be prepared to: +- Answer questions about your implementation +- Make requested changes to meet project standards +- Be patient during the review process + +## Styleguides + +### Code Style + +- Follow tidyverse design principles +- Use snake_case for function and variable names +- Include roxygen2 documentation for all functions +- Format code with the styler package + +### Commit Messages + +Write clear, concise commit messages that explain what the commit does and why: + +``` +Add smoking cessation function + +Implements the processing for smoking cessation data based on the APC model. +Function extracts cessation age and calculates cessation probabilities. +``` + +## Licence + +By contributing to CSHM, you agree that your contributions will be licensed under the [MIT License](LICENSE). + +## Questions? + +If you have questions about contributing, please open an issue on GitHub for clarification. \ No newline at end of file diff --git a/LICENSE b/LICENSE index 03ffbba..64b7db2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,28 +1,21 @@ -BSD 3-Clause License +MIT License -Copyright (c) 2025, Doug Manuel +Copyright (c) 2025 Doug Manuel and The Ottawa Hospital Research Institute -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/R/apc-model.R b/R/apc-model.R new file mode 100644 index 0000000..052f970 --- /dev/null +++ b/R/apc-model.R @@ -0,0 +1,518 @@ +# apc-model.R +# Stage 7: Prepare APC numerator/denominator datasets +# Stage 8: Fit constrained cubic spline age-period-cohort models +# +# Based on the Canadian Smoking Histories Model (Manuel et al., Health Reports 2020) +# and the Holford constrained spline APC framework (Holford et al., Cancer Epidemiol +# Biomarkers Prev 2014). +# +# CCHS data used here is accessed and adapted in accordance with the Statistics Canada +# Open Licence (https://www.statcan.gc.ca/eng/reference/licence). +# +# References: +# Manuel DG et al. Health Reports 2020. doi:10.25318/82-003-x202001100002-eng +# Holford TR et al. Cancer Epidemiol Biomarkers Prev. 2014;23(11):2356-65. + + +# --------------------------------------------------------------------------- +# Stage 7 entry point +# --------------------------------------------------------------------------- + +#' Prepare APC datasets for model fitting +#' +#' Builds long-format person-year data frames for smoking initiation (by sex) +#' and cessation (by sex). Each row is either a transition event (event = 1) +#' or an at-risk person-year (event = 0). Applies mortality survival correction +#' via cfg$apc$mortality_method. +#' +#' @param analysis_data Output of impute_data() +#' @param cfg Config object from config::get() +#' @return Named list: initiation_men, initiation_women, cessation_men, +#' cessation_women. Each element is a data frame with columns: +#' age, cohort, period, event, weight. +prepare_apc_data <- function(analysis_data, cfg) { + data <- derive_survey_year(analysis_data, cfg) + + init_men <- build_initiation_data(data[data[[survey_var(cfg, "sex")]] == 1, ], cfg) + init_women <- build_initiation_data(data[data[[survey_var(cfg, "sex")]] == 2, ], cfg) + cess_men <- build_cessation_data(data[data[[survey_var(cfg, "sex")]] == 1, ], cfg) + cess_women <- build_cessation_data(data[data[[survey_var(cfg, "sex")]] == 2, ], cfg) + + list( + initiation_men = apply_survival_correction(init_men, cfg), + initiation_women = apply_survival_correction(init_women, cfg), + cessation_men = apply_survival_correction(cess_men, cfg), + cessation_women = apply_survival_correction(cess_women, cfg) + ) +} + + +# --------------------------------------------------------------------------- +# Stage 7 sub-functions +# --------------------------------------------------------------------------- + +#' Add survey_year and cohort columns to analysis data +#' +#' Maps SurveyCycle factor codes ("1"–"11") to integer calendar years using +#' cfg$cycle_survey_years. Cohort is defined as survey_year − round(age). +#' NOTE: SurveyCycle is a factor — as.character() is required before lookup. +#' +#' @param data Data frame containing SurveyCycle and age columns +#' @param cfg Config object +#' @return data with survey_year (integer) and cohort (integer) columns added +derive_survey_year <- function(data, cfg) { + cycle_col <- survey_var(cfg, "cycle") + age_col <- survey_var(cfg, "age") + + year_map <- cfg$cycle_survey_years + cycle_keys <- as.character(data[[cycle_col]]) + + # Map each key individually so missing keys return NA (not NULL) + survey_years <- vapply(cycle_keys, function(k) { + v <- year_map[[k]] + if (is.null(v)) NA_integer_ else as.integer(v) + }, integer(1)) + + missing <- is.na(survey_years) + if (any(missing)) { + bad <- unique(cycle_keys[missing]) + stop("Unknown SurveyCycle codes with no year mapping: ", paste(bad, collapse = ", ")) + } + + data$survey_year <- as.integer(survey_years) + data$cohort <- data$survey_year - round(data[[age_col]]) + data +} + + +#' Build combined initiation numerator + denominator dataset +#' +#' @param data Data frame for one sex, with survey_year and cohort columns +#' @param cfg Config object +#' @return Long-format data frame: age, cohort, period, event, weight +build_initiation_data <- function(data, cfg) { + status_col <- survey_var(cfg, "smoking_status") + age_col <- survey_var(cfg, "age_first_cigarette") + weight_col <- survey_var(cfg, "weight") + min_age <- survey_bound(cfg, "age_first_cigarette", "min") + cohort_min <- cfg$apc$cohort_min + period_min <- cfg$apc$period_min + period_max <- cfg$apc$period_max + + # Restrict to valid cohorts + data <- data[data$cohort >= cohort_min, ] + + # Identify ever-smokers: SMKDSTY_original %in% 1:5, age_first_cigarette >= min_age + # Never-smokers (SMKDSTY_original = 6) carry NA(a) for age_first_cigarette; + # 55 is the legitimate midpoint of the "50+ years" category among ever-smokers. + # SMKDSTY_original categories: 1=daily, 2=occ(fmr daily), 3=always occ, 4=fmr daily, 5=fmr occ, 6=never + smkdsty <- data[[status_col]] + ever_smoker <- !is.na(smkdsty) & smkdsty %in% 1:5 + + age_init_raw <- data[[age_col]] + + # The analytic floor is survey_bound(cfg, "age_first_cigarette", "min"): + # 13 for PUMF, 8 for Master per config.yml. Note SMKG01C_cont has a 5-11 + # category (midpoint 8) in all PUMF cycles, so a floor of 13 excludes that + # group — whether to lower the PUMF floor to 8 is an open study decision. + # Source of truth for category midpoints: cchsflow variable_details.csv (recEnd). + ages_among_smokers <- age_init_raw[ever_smoker & !is.na(age_init_raw)] + if (length(ages_among_smokers) > 0 && min(ages_among_smokers) > 10) { + warning( + "min(age_first_cigarette) = ", min(ages_among_smokers), + " among ever-smokers — early-initiation categories appear absent or ", + "excluded by the configured floor (", min_age, "). RDC Master run will ", + "use exact ages." + ) + } + + # Issue 2: flag implausible initiation ages (age_first > current age) + age_survey <- data[[survey_var(cfg, "age")]] + implausible <- ever_smoker & !is.na(age_init_raw) & age_init_raw > age_survey + n_implausible <- sum(implausible, na.rm = TRUE) + if (n_implausible > 0) { + message("Excluding ", n_implausible, " rows with age_first_cigarette > current age.") + } + + # Valid initiators: ever-smoker, plausible age, age >= min_age + valid_init <- ever_smoker & + !is.na(age_init_raw) & + age_init_raw >= min_age & + !implausible + + # Numerator: one row per initiator + num <- data[valid_init, ] + age_num <- as.integer(round(num[[age_col]])) + numerator <- data.frame( + age = age_num, + cohort = num$cohort, + period = num$cohort + age_num, + event = rep(1L, nrow(num)), + weight = num[[weight_col]] + ) + + # Denominator: person-years at risk before initiation + # Person attributes needed for expand + denom_source <- data.frame( + person_id = seq_len(nrow(data)), + cohort = data$cohort, + age_init = ifelse(valid_init, as.integer(round(age_init_raw)), NA_integer_), + # Never-smokers and invalid: treat as still at risk through end of period range + age_survey = as.integer(round(data[[survey_var(cfg, "age")]])), + weight = data[[weight_col]] + ) + # For never-smokers (no initiation), denominator runs to survey age (proxy for period_max) + # For initiators, denominator runs up to (but not including) age_init + denom_source$age_denom_max <- ifelse( + is.na(denom_source$age_init), + denom_source$age_survey, # never initiated — at risk through observed age + denom_source$age_init - 1L # initiated — at risk until year before initiation + ) + + period_range <- seq(period_min, period_max) + + denominator <- expand_denominator(denom_source, period_range, min_age) + + rbind(numerator, denominator) +} + + +#' Expand person × period denominator with immediate at-risk filter +#' +#' @param denom_source Data frame with: person_id, cohort, age_denom_max, weight +#' @param period_range Integer vector of calendar years +#' @param min_age Minimum age for being at risk +#' @return Data frame: age, cohort, period, event=0, weight +expand_denominator <- function(denom_source, period_range, min_age) { + # Vectorised approach: for each person, compute valid period range and expand + # This avoids materialising the full cross-product before filtering + rows <- vector("list", nrow(denom_source)) + + for (i in seq_len(nrow(denom_source))) { + p <- denom_source$person_id[i] + co <- denom_source$cohort[i] + am <- denom_source$age_denom_max[i] + w <- denom_source$weight[i] + + if (is.na(co) || is.na(am)) next + + # Period range for this person: they are at risk from min_age to age_denom_max + p_min <- max(period_range[1], co + min_age) + p_max <- min(period_range[length(period_range)], co + am) + + if (p_max < p_min) next + + ps <- seq(p_min, p_max) + rows[[i]] <- data.frame( + age = as.integer(ps - co), + cohort = co, + period = as.integer(ps), + event = 0L, + weight = w + ) + } + + non_null <- rows[!vapply(rows, is.null, logical(1))] + if (length(non_null) == 0) { + return(data.frame(age = integer(0), cohort = integer(0), period = integer(0), + event = integer(0), weight = numeric(0))) + } + do.call(rbind, non_null) +} + + +#' Build combined cessation numerator + denominator dataset +#' +#' Restricted to ever-daily smokers using SMKDSTY_original categories: +#' 1 = daily, 2 = occasional (formerly daily), 4 = former daily. +#' Category 3 (always occasional) and 5 (former occasional) are excluded +#' because they never smoked daily. See GH#1. +#' +#' @param data Data frame for one sex, with survey_year and cohort columns +#' @param cfg Config object +#' @return Long-format data frame: age, cohort, period, event, weight +build_cessation_data <- function(data, cfg) { + status_col <- survey_var(cfg, "smoking_status") + quit_col <- survey_var(cfg, "years_since_quit") + age_col <- survey_var(cfg, "age") + weight_col <- survey_var(cfg, "weight") + min_age <- survey_bound(cfg, "years_since_quit", "min") + cohort_min <- cfg$apc$cohort_min + period_min <- cfg$apc$period_min + period_max <- cfg$apc$period_max + + # SMKDSTY_original: 1=daily, 2=occ(fmr daily), 3=always occ, 4=fmr daily, 5=fmr occ, 6=never + # Cessation scope: ever-daily smokers only (1, 2, 4). Excludes always-occasional (3) + # and former-occasional (5) — they never smoked daily so cessation timing is undefined. + smkdsty_raw <- data[[status_col]] + in_scope <- !is.na(smkdsty_raw) & smkdsty_raw %in% c(1, 2, 4) & data$cohort >= cohort_min + data <- data[in_scope, ] + + smkdsty <- data[[status_col]] + years_quit <- data[[quit_col]] + age_survey <- data[[age_col]] + age_cessation <- age_survey - years_quit + + former_daily <- smkdsty == 4 + current_daily <- smkdsty %in% c(1, 2) + + # Issue 7: plausibility filter for former daily smokers. + # PUMF: time_quit_smoking_daily top-coded at 15 years; cessation ages below + # approximately (survey_age - 15) are not directly observed. Master has exact values. + # Source of truth for bounds: config.yml survey: years_since_quit: pumf/master: max. + implausible_cess <- former_daily & ( + is.na(age_cessation) | age_cessation < min_age | age_cessation < 0 + ) + n_implausible <- sum(implausible_cess, na.rm = TRUE) + if (n_implausible > 0) { + message("Excluding ", n_implausible, + " cessation rows with age_cessation < ", min_age, " or negative.") + } + + valid_cess <- former_daily & !implausible_cess & !is.na(age_cessation) + + # Numerator: one row per quitter + num <- data[valid_cess, ] + age_cess_int <- as.integer(round(age_cessation[valid_cess])) + numerator <- data.frame( + age = age_cess_int, + cohort = num$cohort, + period = num$cohort + age_cess_int, + event = rep(1L, nrow(num)), + weight = num[[weight_col]] + ) + + # Denominator: current and valid former daily smokers at risk of cessation + in_denom <- valid_cess | current_daily + + age_denom_max <- ifelse( + valid_cess[in_denom], + as.integer(round(age_cessation[in_denom])) - 1L, + as.integer(round(age_survey[in_denom])) + ) + + denom_source <- data.frame( + person_id = seq_len(sum(in_denom)), + cohort = data$cohort[in_denom], + age_denom_max = age_denom_max, + weight = data[[weight_col]][in_denom] + ) + + period_range <- seq(period_min, period_max) + denominator <- expand_denominator(denom_source, period_range, min_age) + + rbind(numerator, denominator) +} + + +#' Apply mortality survival correction to APC dataset +#' +#' Dispatches on cfg$apc$mortality_method. +#' "peto" — weight unchanged (Peto approximation, weight × 1.0) +#' "mport" — not yet implemented +#' +#' @param apc_data Data frame with weight column +#' @param cfg Config object +#' @return apc_data with weight column adjusted +apply_survival_correction <- function(apc_data, cfg) { + method <- cfg$apc$mortality_method + + if (method == "peto") { + # Peto stub: weights unchanged + return(apc_data) + } + + if (method == "mport") { + stop( + "MPoRT mortality correction not yet implemented. ", + "Set cfg$apc$mortality_method = 'peto' for current pipeline runs. ", + "See protocol-todo.md issue #4 for interaction with WTS_M." + ) + } + + stop("Unknown mortality_method: '", method, "'. Expected 'peto' or 'mport'.") +} + + +# --------------------------------------------------------------------------- +# Stage 8 entry point +# --------------------------------------------------------------------------- + +#' Fit APC model for one sex × transition combination +#' +#' Fits a weighted binomial logistic regression on a constrained natural +#' cubic spline basis (Holford et al. 2014). Period and cohort effects are +#' clamped before basis construction to hold them constant beyond the +#' observed range (data-side constraint). +#' +#' @param apc_dataset One element of the list returned by prepare_apc_data() +#' @param model_type Character: "initiation" or "cessation" +#' @param sex Integer: 1 (men) or 2 (women) +#' @param cfg Config object from config::get() +#' @return Fitted glm object with attributes: knots, constraints, model_type, +#' spline_type, sex +fit_apc_model <- function(apc_dataset, model_type, sex, cfg) { + basis <- build_spline_basis(apc_dataset, model_type, sex, cfg) + fit <- fit_binomial_apc(basis, apc_dataset$event, apc_dataset$weight) + + attr(fit, "knots") <- list( + age = cfg$apc$age_knots, + period = cfg$apc$period_knots, + cohort = cfg$apc$cohort_knots + ) + attr(fit, "constraints") <- list( + period_max = get_period_constraint(model_type, sex, cfg), + cohort_min = cfg$apc$cohort_constraints$initiation_prior_to, + cohort_max = cfg$apc$cohort_constraints$cessation_from + ) + attr(fit, "model_type") <- model_type + attr(fit, "spline_type") <- cfg$apc$spline_type + attr(fit, "sex") <- sex + + fit +} + + +# --------------------------------------------------------------------------- +# Stage 8 sub-functions +# --------------------------------------------------------------------------- + +#' Filter knots to those strictly inside the observed data range +#' +#' nsp() sets boundary knots automatically at min/max(x). Interior knots +#' outside that range raise an error. This can occur for cessation models +#' where the clamped period range (e.g. 1965–2013) excludes early knots +#' (e.g. 1940, 1950, 1960) specified for the full denominator range. +#' +#' @param x Numeric vector of observed values +#' @param knots Numeric vector of candidate interior knot positions +#' @return Numeric vector of knots strictly inside (min(x), max(x)) +interior_knots <- function(x, knots) { + lo <- min(x, na.rm = TRUE) + hi <- max(x, na.rm = TRUE) + knots[knots > lo & knots < hi] +} + + +#' Build combined age-period-cohort spline basis matrix +#' +#' Applies period and cohort clamping, then constructs natural spline bases +#' for each dimension. Dispatches on cfg$apc$spline_type ("nsp" or "rcs"). +#' +#' @param apc_dataset Data frame with age, period, cohort columns +#' @param model_type "initiation" or "cessation" +#' @param sex 1 or 2 +#' @param cfg Config object +#' @return Named matrix: columns age_1...age_k, period_1...period_k, +#' cohort_1...cohort_k (intercept = FALSE in all bases) +build_spline_basis <- function(apc_dataset, model_type, sex, cfg) { + period_constraint <- get_period_constraint(model_type, sex, cfg) + cohort_prior <- cfg$apc$cohort_constraints$initiation_prior_to + cohort_from <- cfg$apc$cohort_constraints$cessation_from + + period_clamped <- pmin(apc_dataset$period, period_constraint) + cohort_clamped <- pmin(pmax(apc_dataset$cohort, cohort_prior), cohort_from) + + # Filter interior knots to those strictly inside the observed data range. + # nsp() boundary knots are set automatically at min/max(x); interior knots + # outside that range cause an error. This can happen for cessation where the + # effective period range (1965–2013 after clamping) excludes the early + # period knots (1940, 1950, 1960) inherited from the full denominator spec. + age_knots <- interior_knots(apc_dataset$age, cfg$apc$age_knots) + period_knots <- interior_knots(period_clamped, cfg$apc$period_knots) + cohort_knots <- interior_knots(cohort_clamped, cfg$apc$cohort_knots) + + spline_type <- cfg$apc$spline_type + + if (spline_type == "nsp") { + if (!requireNamespace("splines2", quietly = TRUE)) { + stop("Package 'splines2' required for spline_type = 'nsp'. Install with renv::install('splines2').") + } + age_basis <- splines2::nsp(apc_dataset$age, knots = age_knots, intercept = FALSE) + period_basis <- splines2::nsp(period_clamped, knots = period_knots, intercept = FALSE) + cohort_basis <- splines2::nsp(cohort_clamped, knots = cohort_knots, intercept = FALSE) + + } else if (spline_type == "rcs") { + if (!requireNamespace("rms", quietly = TRUE)) { + stop("Package 'rms' required for spline_type = 'rcs'. Install with renv::install('rms').") + } + age_basis <- rms::rcs(apc_dataset$age, knots = age_knots) + period_basis <- rms::rcs(period_clamped, knots = period_knots) + cohort_basis <- rms::rcs(cohort_clamped, knots = cohort_knots) + + } else { + stop("Unknown spline_type: '", spline_type, "'. Expected 'nsp' or 'rcs'.") + } + + colnames(age_basis) <- paste0("age_", seq_len(ncol(age_basis))) + colnames(period_basis) <- paste0("period_", seq_len(ncol(period_basis))) + colnames(cohort_basis) <- paste0("cohort_", seq_len(ncol(cohort_basis))) + + cbind(age_basis, period_basis, cohort_basis) +} + + +#' Look up the period constraint year for a given model type and sex +#' +#' @param model_type "initiation" or "cessation" +#' @param sex 1 (men) or 2 (women) +#' @param cfg Config object +#' @return Integer year beyond which the period effect is held constant +get_period_constraint <- function(model_type, sex, cfg) { + pc <- cfg$apc$period_constraints + + if (model_type == "initiation") { + if (sex == 2) return(pc$initiation_women_from) + if (sex == 1) return(pc$initiation_men_from) + stop("sex must be 1 or 2, got: ", sex) + } + + if (model_type == "cessation") { + return(pc$cessation_from) + } + + stop("model_type must be 'initiation' or 'cessation', got: ", model_type) +} + + +#' Aggregate person-years to age-period-cohort cells and fit binomial APC model +#' +#' Follows the SAS PROC MEANS → PROC GENMOD pattern from Modeling2013.sas: +#' survey weights are summed within each (age, period, cohort) cell to produce +#' weighted numerator (d) and denominator (pop), then fitted as +#' glm(cbind(d, pop - d) ~ basis, family = binomial). +#' +#' Fitting on individual-level rows with raw weights causes numerical failure +#' because large survey weights (~10,000) create extreme leverage, driving +#' glm.fit to push some probabilities to exactly 0 or 1. +#' +#' @param basis_matrix Named matrix from build_spline_basis() +#' @param event Integer vector of 0/1 outcomes +#' @param weight Numeric vector of survey weights +#' @return Fitted glm object (family = binomial) +fit_binomial_apc <- function(basis_matrix, event, weight) { + # Aggregate to unique basis rows (= unique age-period-cohort cells after clamping) + df <- as.data.frame(basis_matrix) + df$.event <- event + df$.weight <- weight + + # Sum weighted events (d) and weighted person-years (pop) per unique cell + agg_key <- do.call(paste, c(df[, !names(df) %in% c(".event", ".weight"), drop = FALSE], sep = "|")) + cell_ids <- match(agg_key, unique(agg_key)) + n_cells <- max(cell_ids) + + d <- vapply(seq_len(n_cells), function(i) sum(df$.weight[cell_ids == i & df$.event == 1]), numeric(1)) + pop <- vapply(seq_len(n_cells), function(i) sum(df$.weight[cell_ids == i]), numeric(1)) + + # Extract one basis row per unique cell + cell_rows <- match(seq_len(n_cells), cell_ids) + basis_agg <- basis_matrix[cell_rows, , drop = FALSE] + + cell_df <- as.data.frame(basis_agg) + cell_df$.d <- d + cell_df$.pop <- pop + + glm(cbind(.d, .pop - .d) ~ . - .d - .pop, data = cell_df, + family = binomial(), + control = glm.control(maxit = 100, epsilon = 1e-8)) +} diff --git a/R/config-utils.R b/R/config-utils.R new file mode 100644 index 0000000..d8fe1b6 --- /dev/null +++ b/R/config-utils.R @@ -0,0 +1,32 @@ +# config-utils.R — helpers for accessing config.yml values +# +# survey_var(cfg, "age") → variable name for current data_source +# survey_bound(cfg, "age", "min") → analytical bound for a survey variable + +# Null-coalescing operator (base R >= 4.4 ships %||%; keep this for R >= 4.2 compat) +`%||%` <- function(x, y) if (is.null(x)) y else x + +survey_var <- function(cfg, key) { + entry <- cfg$survey[[key]] + if (is.null(entry)) stop("survey_var: unknown key '", key, "'") + # Scalar values (e.g. cycle) are stored directly, not as pumf/master lists + if (!is.list(entry)) return(entry) + src <- cfg$data_source %||% "pumf" + src_entry <- entry[[src]] + if (is.null(src_entry)) stop("survey_var: no '", src, "' entry for key '", key, "'") + # Source entry is itself a list with var, min, max; or a plain scalar + if (is.list(src_entry)) src_entry[["var"]] else src_entry +} + +# Access a bound (min/max) for the active data source. +# e.g. survey_bound(cfg, "age_first_cigarette", "min") → 13 (pumf) or 8 (master) +survey_bound <- function(cfg, key, bound) { + entry <- cfg$survey[[key]] + if (is.null(entry)) stop("survey_bound: unknown key '", key, "'") + src <- cfg$data_source %||% "pumf" + src_entry <- entry[[src]] + if (is.null(src_entry)) stop("survey_bound: no '", src, "' entry for key '", key, "'") + val <- if (is.list(src_entry)) src_entry[[bound]] else NULL + if (is.null(val)) stop("survey_bound: no '", bound, "' for key '", key, "' source '", src, "'") + val +} diff --git a/R/create-descriptive-tables.R b/R/create-descriptive-tables.R new file mode 100644 index 0000000..497a119 --- /dev/null +++ b/R/create-descriptive-tables.R @@ -0,0 +1,482 @@ +# create-descriptive-tables.R +# Format descriptive statistics into publication-ready gt tables. +# Ported from DemPoRT-V2-dev (origin/dev). + +NA_c_label <- "Missing from survey" + +categorical_predictor_footnote <- paste0( + "For categorical variables the values are displayed as N (percent). ", + "Percents may not sum to 100 due to missingness." +) +continuous_predictor_footnote <- paste0( + "For continuous predictors, the values are displayed as min - max, median (IQR)." +) + +# ---- Formatting helpers ----------------------------------------------------- + +format_cat_descriptive_data <- function(descriptive_data_row) { + if (is.na(descriptive_data_row[1, "n"]) || descriptive_data_row[1, "n"] == 0) { + return("No data") + } + formatted_n <- format(descriptive_data_row[1, "n"], big.mark = ",") + paste0(formatted_n, "\n (", round(descriptive_data_row[1, "percent"] * 100, 1), ")") +} + +format_cont_descriptive_data <- function(descriptive_data_row) { + if (descriptive_data_row[1, "n"] == 0) return("No data") + paste0( + descriptive_data_row[1, "min"], " - ", descriptive_data_row[1, "max"], ",\n", + descriptive_data_row[1, "median"], + " (", descriptive_data_row[1, "percentile25"], + " - ", descriptive_data_row[1, "percentile75"], ")" + ) +} + +.format_cont_type <- function(variables_sheet_row) { + stopifnot(is_continuous_variable(variables_sheet_row)) + units <- variables_sheet_row$units + units_suffix <- ifelse(units != "N/A", paste0("(in ", units, ")"), "") + paste(variables_sheet_row$variableType, units_suffix) +} + +# ---- Row builders ----------------------------------------------------------- + +create_descriptive_table_row <- function( + variable, type, stratifier_details_rows, get_stratifier_value +) { + stratifier_cols <- purrr::map( + seq_len(nrow(stratifier_details_rows)), + function(i) { + row <- stratifier_details_rows[i, ] + data.frame(setNames( + list(get_stratifier_value(row)), + row$catLabel + )) + } + ) |> purrr::list_cbind() + cbind(data.frame(variable = variable, type = type), stratifier_cols) +} + +create_descriptive_table_missing_rows <- function( + variable, variable_details_sheet, stratifier_rows, data_for_variable +) { + missing_cats <- get_unique_rec_end_rows( + variable_details_sheet, variable, TRUE + ) |> dplyr::filter(recEnd %in% c("NA::a", "NA::b")) + + missing_rows <- purrr::map( + seq_len(nrow(missing_cats)), + function(i) { + mc <- missing_cats[i, ] + create_descriptive_table_row( + mc$catLabel, "", stratifier_rows, + function(sr) { + d <- data_for_variable |> + dplyr::filter( + groupBy_1 == sr$variable & + groupByValue_1 == sr$recEnd & + cat == mc$recEnd + ) + format_cat_descriptive_data(d[1, ]) + } + ) + } + ) |> purrr::list_rbind() + + na_c_row <- create_descriptive_table_row( + NA_c_label, "", stratifier_rows, + function(sr) { + d <- data_for_variable |> + dplyr::filter( + groupBy_1 == sr$variable & + groupByValue_1 == sr$recEnd & + cat == "NA::c" + ) + format_cat_descriptive_data(d[1, ]) + } + ) + rbind(missing_rows, na_c_row) +} + +# ---- Core table builder ----------------------------------------------------- + +.build_descriptive_table_data <- function( + descriptive_data, + variables_sheet, + variable_details_sheet, + variables, + column_stratifier = NULL, + row_stratifiers = list(), + sections_order = NULL, + include_na = TRUE +) { + stratify_config <- row_stratifiers + if (!is.null(column_stratifier)) { + stratify_config[["all"]] <- c(column_stratifier) + } + + unrounded <- descriptive_data + formatted <- descriptive_data |> + dplyr::mutate(dplyr::across(where(is.numeric) & !c(n), ~ signif(.x, 4))) + + # Determine sections + sections_in_table <- c() + for (v in variables) { + s <- variables_sheet[variables_sheet$variable == v, ]$section[1] + if (!s %in% sections_in_table) sections_in_table <- c(sections_in_table, s) + } + if (!is.null(sections_order)) sections_in_table <- sections_order + + stratifier_rows <- get_unique_rec_end_rows(variable_details_sheet, column_stratifier) + table_variables <- c() + table_type <- c() + table_row_types <- c() + stratify_by_stats <- list() + for (i in seq_len(nrow(stratifier_rows))) { + stratify_by_stats[[stratifier_rows[i, "catLabel"]]] <- c() + } + + merge_stats <- function(stats) { + table_variables <<- c(table_variables, stats$variable) + table_type <<- c(table_type, stats$type) + for (i in seq_len(nrow(stratifier_rows))) { + cat_label <- stratifier_rows[i, "catLabel"] + stratify_by_stats[[cat_label]] <<- c( + stratify_by_stats[[cat_label]], stats[[cat_label]] + ) + } + } + + for (section in sections_in_table) { + table_variables <- c(table_variables, section) + table_type <- c(table_type, "") + table_row_types <- c(table_row_types, "section") + for (i in seq_len(nrow(stratifier_rows))) { + cat_label <- stratifier_rows[i, "catLabel"] + stratify_by_stats[[cat_label]] <- c(stratify_by_stats[[cat_label]], "") + } + + for (variable in variables) { + vrow <- get_row_for_variable(variable, variables_sheet) + if (vrow[1, ]$section != section) next + if (!is.null(row_stratifiers[[variable]])) next + + data_for_var <- formatted[formatted$variable == variable, ] + + if (vrow[1, ]$variableType == "Categorical") { + table_variables <- c(table_variables, vrow[1, "label"]) + table_type <- c(table_type, "Categorical") + table_row_types <- c(table_row_types, "variable") + for (i in seq_len(nrow(stratifier_rows))) { + stratify_by_stats[[stratifier_rows[i, "catLabel"]]] <- c( + stratify_by_stats[[stratifier_rows[i, "catLabel"]]], "" + ) + } + + categories <- get_unique_rec_end_rows( + variable_details_sheet, variable, include_na + ) + # Append NA(c) row + na_row <- categories[1, , drop = FALSE] + for (col in colnames(na_row)) { + if (is.character(na_row[[col]])) na_row[[col]][1] <- "" + else na_row[[col]][1] <- NA + } + na_row$variable[1] <- variable + na_row$recEnd[1] <- "NA::c" + na_row$catLabel[1] <- NA_c_label + na_row$typeEnd[1] <- "cat" + na_row$units[1] <- "N/A" + categories <- rbind(categories, na_row) + + for (ci in seq_len(nrow(categories))) { + table_variables <- c(table_variables, categories[ci, "catLabel"]) + table_type <- c(table_type, "") + table_row_types <- c(table_row_types, "category") + for (i in seq_len(nrow(stratifier_rows))) { + sr <- stratifier_rows[i, ] + d <- data_for_var[ + data_for_var$cat == categories[ci, ]$recEnd & + data_for_var$groupBy_1 == column_stratifier & + data_for_var$groupByValue_1 == sr$recEnd, ] + stratify_by_stats[[sr$catLabel]] <- c( + stratify_by_stats[[sr$catLabel]], + format_cat_descriptive_data(d) + ) + } + } + } else { + # Continuous + first_row <- create_descriptive_table_row( + vrow[1, ]$label, .format_cont_type(vrow), stratifier_rows, + function(sr) { + ixs <- which( + is.na(data_for_var$cat) & + data_for_var$groupBy_1 == column_stratifier & + data_for_var$groupByValue_1 == sr$recEnd + ) + if (length(ixs) != 1) stop(paste( + "Expected 1 continuous row for", variable, + "stratifier", sr$recEnd, "- found", length(ixs) + )) + format_cont_descriptive_data(data_for_var[ixs, ]) + } + ) + merge_stats(first_row) + table_row_types <- c(table_row_types, "variable") + + missing_rows <- create_descriptive_table_missing_rows( + variable, variable_details_sheet, stratifier_rows, data_for_var + ) + for (i in seq_len(nrow(missing_rows))) { + merge_stats(missing_rows[i, ]) + table_row_types <- c(table_row_types, "category") + } + } + } + } + + descriptive_table <- data.frame( + variable = table_variables, + type = table_type, + row_type = table_row_types + ) + for (i in seq_len(nrow(stratifier_rows))) { + cat_label <- stratifier_rows[i, "catLabel"] + descriptive_table[[cat_label]] <- stratify_by_stats[[cat_label]] + } + + attr(descriptive_table, "unrounded_data") <- unrounded + attr(descriptive_table, "stratifier_rows") <- stratifier_rows + attr(descriptive_table, "column_stratifier") <- column_stratifier + + descriptive_table +} + +# ---- gt display ------------------------------------------------------------- + +create_descriptive_table_display <- function(descriptive_table_data) { + descriptive_table_data$section_group <- NA_character_ + current_section <- NA_character_ + for (i in seq_len(nrow(descriptive_table_data))) { + if (descriptive_table_data$row_type[i] == "section") { + current_section <- descriptive_table_data$variable[i] + } + descriptive_table_data$section_group[i] <- current_section + } + + data_filtered <- descriptive_table_data[ + descriptive_table_data$row_type != "section", ] + + gt_table <- data_filtered |> + dplyr::select(-row_type) |> + gt::gt(rowname_col = "variable", groupname_col = "section_group") |> + gt::tab_style( + style = gt::cell_text(weight = "bold"), + locations = gt::cells_row_groups() + ) |> + gt::tab_options(table.font.size = gt::px(10)) |> + gt::opt_table_lines(extent = "default") + + if (any(data_filtered$row_type == "variable")) { + variable_labels <- data_filtered$variable[data_filtered$row_type == "variable"] + gt_table <- gt_table |> + gt::tab_style( + style = list( + gt::cell_text(weight = "bold"), + gt::cell_text(indent = gt::px(10)) + ), + locations = gt::cells_stub(rows = variable_labels) + ) + } + if (any(data_filtered$row_type == "category")) { + cat_labels <- data_filtered$variable[data_filtered$row_type == "category"] + gt_table <- gt_table |> + gt::tab_style( + style = gt::cell_text(indent = gt::px(20)), + locations = gt::cells_stub(rows = cat_labels) + ) + } + + gt_table +} + +# ---- Public functions ------------------------------------------------------- + +#' Create sex-stratified (+ Overall) descriptive table +#' +#' @param descriptive_data Output of get_descriptive_data() +#' @param variables_sheet Variables worksheet data frame +#' @param variable_details_sheet Variable details worksheet data frame +#' @param variables Character vector of variables to include +#' @param column_stratifier Variable name for column stratification (from config) +#' @param sections_order Optional character vector to order sections +#' @param include_na Whether to show missing categories +#' @return A gt table object +create_descriptive_table <- function( + descriptive_data, + variables_sheet, + variable_details_sheet, + variables, + column_stratifier = NULL, + sections_order = NULL, + include_na = TRUE +) { + descriptive_table <- .build_descriptive_table_data( + descriptive_data, variables_sheet, variable_details_sheet, + variables, column_stratifier, list(), sections_order, include_na + ) + + unrounded <- attr(descriptive_table, "unrounded_data") + stratifier_rows <- attr(descriptive_table, "stratifier_rows") + + header_labels <- list(variable = "Variable", type = "Type") + for (i in seq_len(nrow(stratifier_rows))) { + d <- unrounded[ + !is.na(unrounded$groupBy_1) & + unrounded$groupBy_1 == column_stratifier & + !is.na(unrounded$groupByValue_1) & + unrounded$groupByValue_1 == stratifier_rows[i, "recEnd"], ] + valid <- d[!is.na(d$percent) & d$percent > 0, ] + total_n <- if (nrow(valid) > 0 && valid[1, "percent"] > 0) { + round(valid[1, "n"] / valid[1, "percent"]) + } else { + sum(d$n, na.rm = TRUE) + } + header_labels[[stratifier_rows[i, "catLabel"]]] <- gt::html(paste0( + stratifier_rows[i, "catLabel"], + " (N = ", format(total_n, big.mark = ","), ")a" + )) + } + + create_descriptive_table_display(descriptive_table) |> + gt::cols_label(.list = header_labels) |> + gt::tab_style( + style = gt::cell_text(weight = "bold"), + locations = gt::cells_column_labels() + ) |> + gt::tab_header(title = "Sex-stratified population characteristics") |> + gt::cols_width(type ~ gt::px(144)) |> + gt::tab_footnote(footnote = gt::html(paste0( + "a ", categorical_predictor_footnote, " ", + continuous_predictor_footnote + ))) |> + gt::tab_footnote( + footnote = "Abbreviations: IQR, interquartile range; N, number" + ) +} + +#' Create cycle-stratified appendix table (sex within each cycle) +#' +#' @param study_data Study data frame +#' @param variables_sheet Variables worksheet data frame +#' @param variable_details_sheet Variable details worksheet data frame +#' @param variables Character vector of variables to include +#' @param cycle_col Name of the survey cycle column (from config) +#' @param cycle_labels Named vector mapping integer cycle codes to display labels +#' @param column_stratifier Variable for column stratification (from config) +#' @param sections_order Optional character vector to order sections +#' @param include_na Whether to show missing categories +#' @return A gt table object +create_cycle_specific_descriptive_table <- function( + study_data, + variables_sheet, + variable_details_sheet, + variables, + cycle_col, + cycle_labels, + column_stratifier = NULL, + sections_order = NULL, + include_na = TRUE +) { + cycles <- sort(unique(as.integer(as.character(study_data[[cycle_col]])))) + cycles <- cycles[!is.na(cycles)] + if (length(cycles) == 0) stop("No valid cycle values found in study_data[[\"", cycle_col, "\"]]") + + stratify_config <- list() + if (!is.null(column_stratifier)) { + stratify_config[["all"]] <- list(column_stratifier) + } + + cycle_tables <- list() + cycle_data_list <- list() + + for (cycle in cycles) { + cycle_data <- study_data[ + as.integer(as.character(study_data[[cycle_col]])) == cycle, ] + key <- paste0("Cycle_", cycle) + cycle_data_list[[key]] <- cycle_data + + cycle_desc <- get_descriptive_data( + cycle_data, variables_sheet, variable_details_sheet, + variables, stratify_config + ) + cycle_tables[[key]] <- .build_descriptive_table_data( + cycle_desc, variables_sheet, variable_details_sheet, + variables, column_stratifier, list(), sections_order, include_na + ) + } + + # Combine tables side by side + combined <- data.frame( + variable = cycle_tables[[1]]$variable, + type = cycle_tables[[1]]$type, + row_type = cycle_tables[[1]]$row_type + ) + for (cycle in cycles) { + key <- paste0("Cycle_", cycle) + ct <- cycle_tables[[key]] + # Use the catLabel column names from the first cycle's stratifier_rows + strat_rows <- attr(ct, "stratifier_rows") + for (i in seq_len(nrow(strat_rows))) { + cat_label <- strat_rows[i, "catLabel"] + combined[[paste0("Cycle", cycle, "_", cat_label)]] <- ct[[cat_label]] + } + } + + strat_rows_ref <- attr(cycle_tables[[1]], "stratifier_rows") + cat_labels_ref <- strat_rows_ref$catLabel + + gt_table <- create_descriptive_table_display(combined) + + col_labels <- list(type = "Type") + for (cycle in cycles) { + key <- paste0("Cycle_", cycle) + cycle_data <- cycle_data_list[[key]] + cycle_lbl <- cycle_labels[as.character(cycle)] + + span_cols <- c() + for (cat_label in cat_labels_ref) { + col_name <- paste0("Cycle", cycle, "_", cat_label) + strat_val <- strat_rows_ref$recEnd[strat_rows_ref$catLabel == cat_label] + n_val <- nrow(cycle_data[ + !is.na(cycle_data[[column_stratifier]]) & + cycle_data[[column_stratifier]] == strat_val, ]) + col_labels[[col_name]] <- gt::html(paste0( + cat_label, " (N = ", format(n_val, big.mark = ","), ")a" + )) + span_cols <- c(span_cols, col_name) + } + + gt_table <- gt_table |> + gt::tab_spanner(label = cycle_lbl, columns = dplyr::all_of(span_cols)) + } + + gt_table |> + gt::cols_label(.list = col_labels) |> + gt::tab_style( + style = gt::cell_text(weight = "bold"), + locations = gt::cells_column_labels() + ) |> + gt::tab_header( + title = "Sex and cycle-stratified population characteristics" + ) |> + gt::cols_width(type ~ gt::px(108)) |> + gt::tab_footnote(footnote = gt::html(paste0( + "a ", categorical_predictor_footnote, " ", + continuous_predictor_footnote + ))) |> + gt::tab_footnote( + footnote = "Abbreviations: IQR, interquartile range; N, number" + ) +} diff --git a/R/data-cleaning.R b/R/data-cleaning.R new file mode 100644 index 0000000..a2a3f06 --- /dev/null +++ b/R/data-cleaning.R @@ -0,0 +1,131 @@ +# data-cleaning.R +# Age restriction, distribution checks, and out-of-range truncation. +# Pipeline target: cleaned_data + +#' Clean study data +#' +#' Applies age restriction (excludes youngest age group per cfg), checks +#' skewness of continuous predictors, and truncates at the 99th percentile +#' for any with |skewness| >= 1. Tagged NAs (NA(a)/NA(b)/NA(c)) are preserved +#' throughout. +#' +#' @param study_data Output of load_study_data() +#' @param variables_sheet Variables worksheet data frame +#' @param cfg Config object from config::get() +#' @return Cleaned data frame +clean_study_data <- function(study_data, variables_sheet, cfg) { + # Step 1: Age restriction — exclude respondents below the study floor + # (cfg$age_exclusion_min, typically 18: drops the 12-17 age groups) + age_col <- survey_var(cfg, "age") + if (!is.null(cfg$age_exclusion_min) && age_col %in% colnames(study_data)) { + n_before <- nrow(study_data) + study_data <- study_data[ + is.na(study_data[[age_col]]) | + study_data[[age_col]] >= cfg$age_exclusion_min, + ] + message( + "Age restriction: excluded ", n_before - nrow(study_data), + " respondents younger than ", cfg$age_exclusion_min, + " (", nrow(study_data), " remaining)" + ) + } + + # Step 2: Identify continuous predictor variables for skewness check + # Roles are comma-separated; select_vars_by_role() handles multi-role rows + continuous_predictors <- intersect( + variables_sheet$variable[variables_sheet$variableType == "Continuous"], + unique(c( + select_vars_by_role("predictor", variables_sheet), + select_vars_by_role("model-stratifier", variables_sheet) + )) + ) + continuous_predictors <- intersect(continuous_predictors, colnames(study_data)) + + # Step 3: Check skewness and truncate where |skewness| >= cfg$skewness_threshold + skewness_summary <- check_skewness( + study_data, continuous_predictors, cfg$skewness_threshold + ) + + message("\nSkewness check for continuous predictors:") + print(skewness_summary$summary) + + if (length(skewness_summary$vars_to_truncate) > 0) { + message( + "\nTruncating at ", cfg$truncate_percentile, "th percentile: ", + paste(skewness_summary$vars_to_truncate, collapse = ", ") + ) + study_data <- truncate_continuous( + study_data, skewness_summary$vars_to_truncate, cfg$truncate_percentile + ) + } else { + message("\nNo truncation needed.") + } + + study_data +} + +#' Check skewness of continuous variables +#' +#' @param data Data frame +#' @param vars Character vector of continuous variable names to check +#' @param threshold Absolute skewness threshold (default 1) +#' @return List with `vars_to_truncate` (character) and `summary` (data frame) +check_skewness <- function(data, vars, threshold) { + rows <- lapply(vars, function(var) { + x <- data[[var]] + # Exclude tagged NAs — use only non-NA values for skewness calculation + x_valid <- x[!is.na(x)] + if (length(x_valid) < 3) return(NULL) + + # Pearson's moment coefficient of skewness (type 2 = unbiased, matches SAS) + n <- length(x_valid) + m <- mean(x_valid) + s <- sd(x_valid) + if (s == 0) return(NULL) + skew <- (sum((x_valid - m)^3) / n) / (s^3) * sqrt(n * (n - 1)) / (n - 2) + + data.frame( + variable = var, + n_valid = n, + skewness = round(skew, 3), + abs_skewness = round(abs(skew), 3), + action = if (abs(skew) >= threshold) "truncate" else "keep", + stringsAsFactors = FALSE + ) + }) + + rows <- do.call(rbind, rows[!sapply(rows, is.null)]) + + vars_to_truncate <- if (!is.null(rows)) { + rows$variable[rows$action == "truncate"] + } else { + character(0) + } + + list(vars_to_truncate = vars_to_truncate, summary = rows) +} + +#' Truncate continuous variables at a given percentile +#' +#' Values above the truncation percentile are capped at that value. +#' Tagged NAs (haven::tagged_na) are preserved — not capped or coerced. +#' +#' @param data Data frame +#' @param vars Character vector of variable names to truncate +#' @param percentile Percentile to truncate at (0-100) +#' @return Data frame with truncated values +truncate_continuous <- function(data, vars, percentile) { + stopifnot(percentile >= 0, percentile <= 100) + for (var in vars) { + x <- data[[var]] + cap <- quantile(x, percentile / 100, na.rm = TRUE) + # Preserve tagged NAs: only cap non-NA values that exceed the cap + data[[var]] <- dplyr::if_else( + !is.na(x) & x > cap, + cap, + x, + missing = x # tagged NAs pass through unchanged + ) + } + data +} diff --git a/R/descriptive-data.R b/R/descriptive-data.R new file mode 100644 index 0000000..e299307 --- /dev/null +++ b/R/descriptive-data.R @@ -0,0 +1,37 @@ +# descriptive-data.R +# CSHM-specific wrapper for calculating descriptive statistics. +# Pipeline targets: table_1a_data, table_1b_data + +#' Calculate descriptive statistics for the CSHM study population +#' +#' Computes statistics for all predictor variables stratified by model-stratifier. +#' No row stratification is applied in the base table. +#' +#' @param data Cleaned or imputed study data frame +#' @param variables_sheet Variables worksheet data frame +#' @param variable_details_sheet Variable details worksheet data frame +#' @return Data frame of descriptive statistics (input to create_descriptive_table) +get_cshm_desc_data <- function(data, variables_sheet, variable_details_sheet) { + predictor_vars <- select_vars_by_role("predictor", variables_sheet) + sex_stratifier <- select_vars_by_role("model-stratifier", variables_sheet)[1] + + # Only describe variables that were actually harmonized into data + # (some variables in the sheet may be absent if no variable_details rows matched) + available <- intersect(predictor_vars, colnames(data)) + absent <- setdiff(predictor_vars, colnames(data)) + if (length(absent) > 0) { + message("Descriptive table: skipping ", length(absent), + " variables not in data: ", paste(absent, collapse = ", ")) + } + + stratify_config <- list() + stratify_config[["all"]] <- list(sex_stratifier) + + get_descriptive_data( + data = data, + variables_sheet = variables_sheet, + variables_details_sheet = variable_details_sheet, + variables = available, + stratify_config = stratify_config + ) +} diff --git a/R/get-descriptive-data.R b/R/get-descriptive-data.R new file mode 100644 index 0000000..b17e512 --- /dev/null +++ b/R/get-descriptive-data.R @@ -0,0 +1,218 @@ +# get-descriptive-data.R +# Calculate descriptive statistics for the study population. +# Ported from DemPoRT-V2-dev (origin/dev). + +get_descriptive_data <- function( + data, + variables_sheet, + variables_details_sheet, + variables, + stratify_config +) { + descriptive_data <- data.frame( + variable = c(), + cat = c(), + median = c(), + percentile25 = c(), + percentile75 = c(), + min = c(), + max = c(), + n = c(), + percent = c() + ) + + largest_num_stratifiers <- 0 + for (variable in names(stratify_config)) { + for (stratify_config_for_variable_index in seq_len(length(stratify_config[[variable]]))) { + current_num_stratifiers <- length( + stratify_config[[variable]][[stratify_config_for_variable_index]] + ) + if (!is.null(stratify_config[["all"]])) { + current_num_stratifiers <- current_num_stratifiers + + length(stratify_config[["all"]]) + } + if (largest_num_stratifiers < current_num_stratifiers) { + largest_num_stratifiers <- current_num_stratifiers + } + } + } + + for (variable in variables) { + variable_sheet_row <- variables_sheet[variables_sheet$variable == variable, ] + + if (is_continuous_variable(variable_sheet_row)) { + map_stratifier_data( + data, variables_sheet, variables_details_sheet, variable, stratify_config, + function(current_stratifier_info) { + new_row <- data.frame( + variable = variable, cat = NA, + median = NA, percentile25 = NA, percentile75 = NA, + min = NA, max = NA, n = NA, percent = NA + ) + for (si in seq_len(largest_num_stratifiers)) { + new_row[[paste0("groupBy_", si)]] <- NA + new_row[[paste0("groupByValue_", si)]] <- NA + } + for (si in seq_len(length(current_stratifier_info$stratifiers))) { + strat <- current_stratifier_info$stratifiers[[si]] + new_row[[paste0("groupBy_", si)]] <- strat + new_row[[paste0("groupByValue_", si)]] <- + current_stratifier_info$stratifier_combination[[strat]][1] + } + vals <- current_stratifier_info$data[[variable]] + vals <- vals[!is.na(vals)] + s <- summary(vals) + new_row$median <- s[[3]] + new_row$percentile25 <- s[[2]] + new_row$percentile75 <- s[[5]] + new_row$min <- s[[1]] + new_row$max <- s[[6]] + new_row$n <- length(vals) + descriptive_data <<- rbind(descriptive_data, new_row) + } + ) + } + + for (na_type in c("NA::a", "NA::b", "NA::c")) { + tagged_na_type <- switch(na_type, "NA::a" = "a", "NA::b" = "b", "NA::c" = "c") + map_stratifier_data( + data, variables_sheet, variables_details_sheet, variable, stratify_config, + function(current_stratifier_info) { + new_row <- data.frame( + variable = variable, cat = na_type, + median = NA, percentile25 = NA, percentile75 = NA, min = NA, max = NA + ) + for (si in seq_len(largest_num_stratifiers)) { + new_row[[paste0("groupBy_", si)]] <- NA + new_row[[paste0("groupByValue_", si)]] <- NA + } + for (si in seq_len(length(current_stratifier_info$stratifiers))) { + strat <- current_stratifier_info$stratifiers[[si]] + new_row[[paste0("groupBy_", si)]] <- strat + new_row[[paste0("groupByValue_", si)]] <- + current_stratifier_info$stratifier_combination[[strat]][1] + } + filtered <- dplyr::filter( + current_stratifier_info$data, + haven::is_tagged_na(.data[[variable]], tagged_na_type) | + .data[[variable]] == paste0("NA(", tagged_na_type, ")") + ) + new_row$n <- nrow(filtered) + new_row$percent <- new_row$n / nrow(current_stratifier_info$data) + descriptive_data <<- rbind(descriptive_data, new_row) + } + ) + } + + if (is_categorical_variable(variable_sheet_row)) { + variable_detail_rows <- get_unique_rec_end_rows( + variables_details_sheet, variable, FALSE + ) + for (vdi in seq_len(nrow(variable_detail_rows))) { + current_rec_end <- variable_detail_rows[vdi, "recEnd"] + map_stratifier_data( + data, variables_sheet, variables_details_sheet, variable, stratify_config, + function(current_stratifier_info) { + new_row <- data.frame( + variable = variable, + median = NA, percentile25 = NA, percentile75 = NA, + min = NA, max = NA, + cat = variable_detail_rows[vdi, "recEnd"] + ) + for (si in seq_len(largest_num_stratifiers)) { + new_row[[paste0("groupBy_", si)]] <- NA + new_row[[paste0("groupByValue_", si)]] <- NA + } + for (si in seq_len(length(current_stratifier_info$stratifiers))) { + strat <- current_stratifier_info$stratifiers[[si]] + new_row[[paste0("groupBy_", si)]] <- strat + new_row[[paste0("groupByValue_", si)]] <- + current_stratifier_info$stratifier_combination[[strat]][1] + } + filtered <- dplyr::filter( + current_stratifier_info$data, + .data[[variable]] == current_rec_end + ) + new_row$n <- nrow(filtered) + new_row$percent <- new_row$n / nrow(current_stratifier_info$data) + descriptive_data <<- rbind(descriptive_data, new_row) + } + ) + } + } + } + + return(descriptive_data) +} + +map_stratifier_data <- function( + data, variables_sheet, variables_details_sheet, + variable, stratify_config, iterator +) { + stratifier_config_for_variable <- NA + if (!is.null(stratify_config[[variable]])) { + stratifier_config_for_variable <- stratify_config[[variable]] + } + if (!is.null(stratify_config[["all"]])) { + if (length(stratifier_config_for_variable) == 1 && + is.na(stratifier_config_for_variable)) { + stratifier_config_for_variable <- list(stratify_config[["all"]]) + } else { + for (si in seq_len(length(stratifier_config_for_variable))) { + stratifier_config_for_variable[[si]] <- append( + stratifier_config_for_variable[[si]], + stratify_config[["all"]], 0 + ) + } + } + } + + if (length(stratifier_config_for_variable) == 1 && + is.na(stratifier_config_for_variable)) { + return(iterator(list( + data = data, + stratifiers = list(), + stratifier_combination = data.frame() + ))) + } + + for (stratifiers in stratifier_config_for_variable) { + expand_grid_args <- list() + for (strat in stratifiers) { + strat_row <- get_row_for_variable(strat, variables_sheet) + if (is_continuous_variable(strat_row)) { + stop(paste("Stratifier", strat, "for variable", variable, + "is continuous — not supported")) + } + expand_grid_args[[strat]] <- c( + get_unique_rec_end_rows(variables_details_sheet, strat, TRUE)$recEnd, + "NA::c" + ) + } + all_combos <- do.call(tidyr::expand_grid, expand_grid_args) + + for (ci in seq_len(nrow(all_combos))) { + data_for_combo <- data + combo <- all_combos[ci, ] + for (si in seq_len(length(stratifiers))) { + strat <- stratifiers[[si]] + strat_cat <- combo[1, ][[strat]] + formatted_cat <- dplyr::case_when( + strat_cat == "NA::a" ~ "NA(a)", + strat_cat == "NA::b" ~ "NA(b)", + strat_cat == "NA::c" ~ "NA(c)", + TRUE ~ strat_cat + ) + data_for_combo <- dplyr::filter( + data_for_combo, + !!as.symbol(strat) == formatted_cat + ) + } + iterator(list( + data = data_for_combo, + stratifiers = stratifiers, + stratifier_combination = combo + )) + } + } +} diff --git a/R/imputation.R b/R/imputation.R new file mode 100644 index 0000000..8096a57 --- /dev/null +++ b/R/imputation.R @@ -0,0 +1,106 @@ +# imputation.R +# Multiple imputation via MICE for missing smoking history variables. +# Pipeline target: analysis_data + +#' Impute missing values via MICE +#' +#' Applies multiple imputation to predictor variables with random missingness +#' (NA(b) = don't know/refused). Structural missingness — NA(a) (not +#' applicable) and NA(c) (not asked this cycle) — is preserved and not imputed. +#' +#' Number of imputations and iterations are controlled by cfg$imputation_m and +#' cfg$imputation_maxit. Use m=1, maxit=1 in draft/dev for fast iteration. +#' +#' @param cleaned_data Output of clean_study_data() +#' @param variables_sheet Variables worksheet data frame +#' @param cfg Config object from config::get() +#' @return Data frame with NA(b) values imputed (first completed dataset) +impute_data <- function(cleaned_data, variables_sheet, cfg) { + # Identify variables for the MICE predictor matrix + # "imputation-predictor" role covers all variables that should inform imputation + impute_vars <- select_vars_by_role("imputation-predictor", variables_sheet) + impute_vars <- intersect(impute_vars, colnames(cleaned_data)) + + # Check which variables actually have NA(b) — only those need imputation + has_na_b <- vapply(impute_vars, function(var) { + x <- cleaned_data[[var]] + if (is.factor(x)) { + "NA(b)" %in% as.character(x) + } else { + any(haven::is_tagged_na(x, "b")) + } + }, logical(1)) + + vars_to_impute <- impute_vars[has_na_b] + + message( + "Imputation: ", length(vars_to_impute), + " variables with NA(b) missingness:\n ", + paste(vars_to_impute, collapse = ", ") + ) + + if (length(vars_to_impute) == 0) { + message("No NA(b) values found — returning cleaned data unchanged.") + return(cleaned_data) + } + + # Prepare data for MICE: pass all impute_vars so auxiliary predictors (those + # without NA(b)) are included in the predictor matrix, improving imputation + # quality. Only vars_to_impute will actually have NAs for MICE to fill. + mice_input <- prepare_for_mice(cleaned_data, impute_vars) + + # Run MICE + message( + "Running MICE: m=", cfg$imputation_m, + ", maxit=", cfg$imputation_maxit + ) + mice_result <- mice::mice( + mice_input, + m = cfg$imputation_m, + maxit = cfg$imputation_maxit, + printFlag = FALSE + ) + + # Complete: use first imputation dataset + completed <- mice::complete(mice_result, action = 1) + + # Write imputed values back; all other columns are unchanged + result <- cleaned_data + for (var in vars_to_impute) { + result[[var]] <- completed[[var]] + } + + message("Imputation complete.") + result +} + +#' Prepare variables for MICE by converting NA(b) to regular NA +#' +#' Only NA(b) (random missing) is converted to regular NA for MICE to impute. +#' NA(a) (not applicable) and NA(c) (not asked this cycle) are left as-is, +#' which prevents MICE from imputing structural missingness. +#' +#' @param data Data frame +#' @param vars Character vector of variable names to pass to MICE +#' @return Data frame subset with only `vars`, NA(b) converted to regular NA +prepare_for_mice <- function(data, vars) { + out <- data[, vars, drop = FALSE] + + for (var in vars) { + x <- out[[var]] + + if (is.factor(x)) { + # Replace "NA(b)" level with regular NA; keep "NA(a)" and "NA(c)" as levels + char_x <- as.character(x) + char_x[char_x == "NA(b)"] <- NA_character_ + out[[var]] <- factor(char_x, levels = setdiff(levels(x), "NA(b)")) + + } else if (is.numeric(x)) { + # Replace tagged NA(b) with regular NA; tagged NA(a) and NA(c) pass through + x[haven::is_tagged_na(x, "b")] <- NA_real_ + out[[var]] <- x + } + } + + out +} diff --git a/R/legacy/process_smoking_initiation.R b/R/legacy/process_smoking_initiation.R new file mode 100644 index 0000000..85cb83a --- /dev/null +++ b/R/legacy/process_smoking_initiation.R @@ -0,0 +1,248 @@ +#' Process Smoking Initiation Data for Age-Period-Cohort Modeling +#' +#' @title Process Smoking Initiation Data +#' +#' @description +#' This function processes data for smoking initiation based on the Canadian Community Health Survey (CCHS) +#' data that has been harmonized with the cchsflow package. It identifies individuals who have initiated +#' smoking and creates a dataset with key variables needed for age-period-cohort (APC) modeling of smoking +#' initiation rates. +#' +#' This function implements part of the Canadian Smoking Histories Model in R, specifically +#' replicating the data preparation step from line 120 in the original SAS code (Modeling2013.sas). +#' +#' @param dataset A data frame containing harmonized CCHS smoking history data (from cchsflow). +#' The dataset must contain the following variables: +#' \itemize{ +#' \item \code{sex} - Sex of the respondent ("M" or "F") +#' \item \code{SMK_01A} - Whether respondent has smoked 100+ cigarettes in lifetime (1=Yes, 2=No) +#' \item \code{agefirst} - Age when respondent first smoked a whole cigarette +#' \item \code{cchsbdate} - CCHS survey date as a Date object +#' } +#' @param sex Character string indicating sex ("M" or "F") for filtering the data +#' +#' @return A data frame with the variables needed for smoking initiation APC modeling: +#' \describe{ +#' \item{ont_id}{Ontario resident identifier - unique ID for each respondent} +#' \item{weighting}{Survey weighting factor - sampling weight assigned to each respondent} +#' \item{age}{Age of smoking initiation - age when respondent first smoked} +#' \item{cohort}{Birth cohort (calendar year) - year of birth} +#' \item{period}{Period (calendar year) when smoking was initiated - calculated as cohort + age} +#' \item{init}{Binary indicator of smoking initiation (1=initiated smoking)} +#' } +#' +#' The returned data frame contains ONLY respondents who have initiated smoking (smoked at least +#' 100 cigarettes in their lifetime) and were at least 8 years old when they started. Never-smokers +#' are excluded from the final dataset. Only birth cohorts from 1920 onwards are included. +#' +#' This dataset serves as the numerator for calculating age-period-cohort rates of smoking initiation. +#' +#' @details +#' This function replicates the SAS code used in the Canadian History Smoking Generator Model. +#' It filters data by sex, processes the harmonized smoking status variables, and creates a dataset +#' that serves as the numerator for age-period-cohort rates in smoking initiation modeling. +#' +#' The function uses the following workflow: +#' 1. Filters dataset by sex +#' 2. Identifies never-smokers (who have not smoked 100+ cigarettes) +#' 3. Sets initialization status (init=1 for smokers, init=0 for never-smokers) +#' 4. Calculates smoking initiation date +#' 5. Filters to include only those born in 1920 or later +#' 6. Creates a subset containing only those who initiated smoking +#' 7. Applies age filter (age >= 8) +#' 8. Calculates period (year of initiation) as cohort + age +#' 9. Returns final dataset sorted by age, period, and cohort +#' +#' The function uses harmonized variable names from the cchsflow package which standardizes variables +#' across different CCHS cycles. +#' +#' For age-period-cohort modeling, this dataset should be paired with a denominator dataset that includes +#' the entire population at risk for smoking initiation at each age, period, and cohort combination. +#' +#' @examples +#' \dontrun{ +#' # Assuming 'cchs_data' is your harmonized CCHS dataset from cchsflow +#' inits_male <- process_smoking_initiation(cchs_data, sex = "M") +#' inits_female <- process_smoking_initiation(cchs_data, sex = "F") +#' +#' # Check the structure of the output +#' str(inits_male) +#' +#' # View the first few rows +#' head(inits_male) +#' +#' # Get summary statistics +#' summary(inits_male) +#' } +#' +#' @section Test Data: +#' Here's a small example dataset to test the function: +#' +#' ```r +#' # Create test data +#' test_data <- data.frame( +#' ont_id = c(1001, 1002, 1003, 1004, 1005), +#' sex = c("M", "F", "M", "F", "M"), +#' SMK_01A = c(1, 2, 1, 1, 1), # 1=Yes, 2=No to 100+ cigarettes +#' agefirst = c(16, NA, 12, 21, 7), +#' cchsbdate = as.Date(c("2001-06-15", "2001-07-20", "2001-08-10", +#' "2001-09-05", "2001-10-25")), +#' weighting = c(150, 200, 175, 225, 190) +#' ) +#' +#' # Process the test data for males +#' result <- process_smoking_initiation(test_data, sex = "M") +#' print(result) +#' # Expected output: A dataset with 2 rows (ont_id 1001 and 1003) +#' # ont_id 1005 is excluded because age < 8 +#' ``` +#' +#' @seealso +#' \code{\link[cchsflow]{cchsflow}} for information on the CCHS data harmonization +#' +#' @references +#' Manuel, D.G. et al. (2013) "Canadian Smoking Histories Model" +#' +#' @export +process_smoking_initiation <- function(dataset, sex = "M") { + # Validate inputs + if (!is.data.frame(dataset)) { + stop("dataset must be a data frame") + } + + if (!(sex %in% c("M", "F"))) { + stop("sex must be either 'M' or 'F'") + } + + required_vars <- c("sex", "SMK_01A", "agefirst", "cchsbdate", "ont_id", "weighting") + missing_vars <- required_vars[!required_vars %in% names(dataset)] + if (length(missing_vars) > 0) { + stop("Missing required variables in dataset: ", paste(missing_vars, collapse = ", ")) + } + + # Filter dataset by sex + filtered_data <- dataset[dataset$sex == sex, ] + + # Process smoking initiation data + # Set initialization variables for non-smokers (never smoked 100+ cigarettes) + # Using harmonized variable SMK_01A: "In lifetime, smoked 100 or more cigarettes" + # Value 1 = "Yes", Value 2 = "No" + filtered_data$agefirst <- ifelse( + filtered_data$SMK_01A == 2, # Value 2 = "No" to smoking 100+ cigarettes + 101, filtered_data$agefirst # 101 is used as a flag for never-smokers + ) + + # Define initialization status + # init = 1: Has initiated smoking (smoked 100+ cigarettes) + # init = 0: Never initiated smoking (has not smoked 100+ cigarettes) + filtered_data$init <- ifelse(filtered_data$agefirst == 101, 0, 1) + + # Create initialization date (using randomization within the year as in original SAS code) + # This adds random days within the year of reported age to avoid artificial clumping + filtered_data$init_date <- as.Date( + ifelse( + filtered_data$agefirst != 101, + filtered_data$cchsbdate + + filtered_data$agefirst * 365 + + floor(runif(nrow(filtered_data)) * 365), + NA + ), + origin = "1970-01-01" + ) + + # Determine cohort (year of birth) from survey date + filtered_data$cohort <- as.numeric(format(filtered_data$cchsbdate, "%Y")) + + # Filter for cohorts from 1920 onwards (as in original SAS code) + filtered_data <- subset(filtered_data, cohort >= 1920) + + # For those who initiated smoking, extract relevant variables + # This step EXCLUDES never-smokers (init=0) from the final dataset + inits <- subset(filtered_data, init == 1) + + # Set age to age of first cigarette + # In the harmonized dataset, this corresponds to SMKG01C_cont + inits$age <- inits$agefirst + + # Filter for ages 8 and above (as in original SAS code) + # This removes unlikely very early smoking initiation ages + inits <- subset(inits, age >= 8) + + # Calculate period (calendar year when smoking was initiated) + # Period = birth cohort + age at initiation + inits$period <- inits$cohort + inits$age + + # Select only the required variables for APC modeling + result <- inits[, c("ont_id", "weighting", "age", "cohort", "period", "init")] + + # Sort the data by age, period, cohort (as in original SAS code) + result <- result[order(result$age, result$period, result$cohort), ] + + return(result) +} + +#' Create Test Data for Smoking Initiation Processing +#' +#' @title Create Test CCHS Smoking Data +#' +#' @description +#' Creates a sample dataset mimicking harmonized CCHS data for testing the +#' smoking initiation processing function. +#' +#' @param n Number of observations to generate +#' @param seed Random seed for reproducibility +#' +#' @return A data frame with simulated CCHS data +#' +#' @examples +#' test_data <- create_smoking_test_data(10) +#' head(test_data) +#' +#' @export +create_smoking_test_data <- function(n = 5, seed = 123) { + set.seed(seed) + + # Generate random IDs + ids <- 1000 + 1:n + + # Generate random sex + sexes <- sample(c("M", "F"), n, replace = TRUE) + + # Generate smoking status (1=Yes, 2=No to 100+ cigarettes) + # About 70% smokers, 30% non-smokers + smk_status <- sample(c(1, 2), n, replace = TRUE, prob = c(0.7, 0.3)) + + # Generate age of first cigarette (NA for non-smokers) + age_first <- numeric(n) + for (i in 1:n) { + if (smk_status[i] == 1) { + # Smokers get age between 8 and 30, with higher probability for teenage years + age_first[i] <- sample(c(8:14, 15:19, 20:30), 1, + prob = c(rep(0.05, 7), rep(0.1, 5), rep(0.03, 11))) + } else { + # Non-smokers get NA + age_first[i] <- NA + } + } + + # Generate survey dates between 2000 and 2018 + survey_years <- sample(2000:2018, n, replace = TRUE) + survey_months <- sample(1:12, n, replace = TRUE) + survey_days <- sample(1:28, n, replace = TRUE) + survey_dates <- as.Date(paste(survey_years, survey_months, survey_days, sep = "-")) + + # Generate survey weights between 50 and 300 + weights <- round(runif(n, 50, 300), 1) + + # Create the data frame + test_data <- data.frame( + ont_id = ids, + sex = sexes, + SMK_01A = smk_status, + agefirst = age_first, + cchsbdate = survey_dates, + weighting = weights + ) + + return(test_data) +} \ No newline at end of file diff --git a/R/legacy/smoking.R b/R/legacy/smoking.R new file mode 100644 index 0000000..ba25692 --- /dev/null +++ b/R/legacy/smoking.R @@ -0,0 +1,1117 @@ +#' @title Time since quit smoking +#' +#' @description This function creates a derived variable (time_quit_smoking_der) +#' that calculates the approximate time a former smoker has quit smoking based +#' on various CCHS smoking variables. This variable is for CCHS respondents in +#' CCHS surveys 2003-2014. +#' +#' @param SMK_09A_B number of years since quitting smoking. Variable asked to +#' former daily smokers who quit <3 years ago. +#' +#' @param SMKG09C number of years since quitting smoking. Variable asked to +#' former daily smokers who quit >=3 years ago. +#' +#' @return value for time since quit smoking in time_quit_smoking_der. +#' +#' @examples +#' # Using time_quit_smoking_fun() to create pack-years values across CCHS +#' # cycles. +#' # time_quit_smoking_fun() is specified in variable_details.csv along with the +#' # CCHS variables and cycles included. +#' +#' # To transform time_quit_smoking across cycles, use rec_with_table() for each +#' # CCHS cycle and specify time_quit_smoking, along with each smoking variable. +#' # Then by using merge_rec_data(), you can combine time_quit_smoking across +#' # cycles. +#' +#' library(cchsflow) +#' +#' time_quit2009_2010 <- rec_with_table( +#' cchs2009_2010_p, c( +#' "SMK_09A_B", "SMKG09C", "time_quit_smoking" +#' ) +#' ) +#' +#' head(time_quit2009_2010) +#' +#' time_quit2011_2012 <- rec_with_table( +#' cchs2011_2012_p, c( +#' "SMK_09A_B", "SMKG09C", "time_quit_smoking" +#' ) +#' ) +#' +#' tail(time_quit2011_2012) +#' +#' combined_time_quit <- suppressWarnings(merge_rec_data(time_quit2009_2010, +#' time_quit2011_2012)) +#' +#' head(combined_time_quit) +#' tail(combined_time_quit) +#' +#' # Using time_quit_smoking_fun() to generate a pack-years value with user +#' # inputted number of years since quitting smoking for both former daily +#' # smokers who quit <3 and >=3 years ago. time_quit_smoking_fun() can also +#' # generate a pack-years value if you input a value for both number of years +#' # since quitting smoking. Let's say you quit smoking <3 years ago and stopped +#' # smoking daily 2 to <3 years ago and it's been 3 to 5 years since you stopped +#' # smoking daily, your time since quitting smoking can be calculated as follows: +#' +#' library(cchsflow) +#' time_quit_smoking <- time_quit_smoking_fun(3,1) +#' print(time_quit_smoking) +#' +#' # Additional examples of time since quitting smoking calculations produced +#' # using time_quit_smoking_fun() can be found below. Multiple instances exist +#' # where an NA output may be produced such as a negative entry and or +#' # missing SMKG09C values. +#' +#' library(cchsflow) +#' SMK_09A_B <- c(3, 4, 1, 4) +#' SMKG09C <- c(1, 2, NA, -2) +#' time_quit_smoking_data <- data.frame(SMK_09A_B, SMKG09C) +#' print(time_quit_smoking_data) +#' time_quit_smoking_data$time_quit_smoking <- +#' time_quit_smoking_fun(time_quit_smoking_data$SMK_09A_B, time_quit_smoking_data$SMKG09C) +#' print(time_quit_smoking_data) +#' @export + +time_quit_smoking_fun <- function(SMK_09A_B, SMKG09C) { + SMKG09C_cont <- + if_else2( + SMKG09C == 1, 4, + if_else2( + SMKG09C == 2, 8, + if_else2(SMKG09C == 3, 12, + if_else2(SMKG09C == "NA(a)", tagged_na("a"), tagged_na("b") + ) + ) + ) + ) + tsq_ds <- + if_else2( + SMK_09A_B == 1, 0.5, + if_else2( + SMK_09A_B == 2, 1.5, + if_else2( + SMK_09A_B == 3, 2.5, + if_else2(SMK_09A_B == 4, SMKG09C_cont, + if_else2(SMK_09A_B == "NA(a)", tagged_na("a"), tagged_na("b") + ) + ) + ) + ) + ) + return(tsq_ds) +} + +#' # Updating the original function time_quit_smoking_fun_A() generates a +#' # pack-years value with user inputted number of years since quitting smoking +#' # for both former daily smokers who quit <3 and >=3 years ago. This function +#' # version utilizes a continuous version of SMKG09C that is available within +#' # the shared files. time_quit_smoking_fun_A() can also generate a pack-years +#' # value if you input a value for both number of years since quitting smoking. +#' # Let's say you quit smoking <3 years ago and stopped smoking daily 2 to <3 +#' # years ago and it's been 2 years since you stopped smoking daily, your +#' # time since quitting smoking can be calculated as follows: +#' +#' library(cchsflow) +#' time_quit_smoking <- time_quit_smoking_fun_A(3,2) +#' print(time_quit_smoking) +#' +#' # Additional examples of time since quitting smoking calculations produced +#' # using time_quit_smoking_fun() can be found below. Multiple instances exist +#' # where an NA output may be produced such as a negative entry and or +#' # missing SMKG09C values. +#' +#' library(cchsflow) +#' SMK_09A_B <- c(3, 4, 4, 4, 4, 4) +#' SMKG09C_cont <- c(1, 62, NA, -2, 2, 85) +#' time_quit_smoking_data <- data.frame(SMK_09A_B, SMKG09C_cont) +#' print(time_quit_smoking_data) +#' time_quit_smoking_data$time_quit_smoking <- +#' time_quit_smoking_fun_A(time_quit_smoking_data$SMK_09A_B, time_quit_smoking_data$SMKG09C) +#' print(time_quit_smoking_data) +#' @export + +time_quit_smoking_fun_A <- function(SMK_09A_B, SMKG09C_cont, + min_SMKG09C_cont=3, max_SMKG09C_cont=82) { + tsq_ds <- + if_else2( + SMK_09A_B == 1, 0.5, + if_else2( + SMK_09A_B == 2, 1.5, + if_else2( + SMK_09A_B == 3, 2.5, + #if stopped smoking 3 or more years than use SMKG09C_cont value (only + #for positive values falling within given min and max values) + if_else2(SMK_09A_B == 4 & SMKG09C_cont > 0 & + SMKG09C_cont > min_SMKG09C_cont & + SMKG09C_cont < max_SMKG09C_cont, SMKG09C_cont, + if_else2(SMK_09A_B == "NA(a)", tagged_na("a"), tagged_na("b") + ) + ) + ) + ) + ) + return(tsq_ds) +} + +#' @title Simple smoking status +#' +#' @description This function creates a derived smoking variable (smoke_simple) +#' with four categories: +#' +#' \itemize{ +#' \item non-smoker (never smoked) +#' \item current smoker (daily and occasional?) +#' \item former daily smoker quit =<5 years or former occasional smoker +#' \item former daily smoker quit >5 years +#' } +#' +#' @param SMKDSTY_cat5 derived variable that classifies an individual's smoking +#' status. This variable captures cycles 2001-2018. +#' +#' @param time_quit_smoking derived variable that calculates the approximate +#' time a former smoker has quit smoking. +#' See \code{\link{time_quit_smoking_fun}} for documentation on how variable +#' was derived. +#' +#' @examples +#' # Using the 'smoke_simple_fun' function to create the derived smoking +#' # variable across CCHS cycles. +#' # smoke_simple_fun() is specified in the variable_details.csv +#' +#' # To create a harmonized smoke_simple variable across CCHS cycles, use +#' # rec_with_table() for each CCHS cycle and specify smoke_simple_fun and +#' # the required base variables. Since time_quit_smoking_der is also a derived +#' # variable, you will have to specify the variables that are derived from it. +#' # Using merge_rec_data(), you can combine smoke_simple across cycles. +#' +#' library(cchsflow) +#' +#' smoke_simple2009_2010 <- rec_with_table( +#' cchs2009_2010_p, c( +#' "SMKDSTY", "SMK_09A_B", "SMKG09C", "time_quit_smoking", +#' "smoke_simple" +#' ) +#' ) +#' +#' head(smoke_simple2009_2010) +#' +#' smoke_simple2011_2012 <- rec_with_table( +#' cchs2011_2012_p,c( +#' "SMKDSTY", "SMK_09A_B", "SMKG09C", "time_quit_smoking", +#' "smoke_simple" +#' ) +#' ) +#' +#' tail(smoke_simple2011_2012) +#' +#' combined_smoke_simple <- +#' suppressWarnings(merge_rec_data(smoke_simple2009_2010,smoke_simple2011_2012)) +#' +#' head(combined_smoke_simple) +#' tail(combined_smoke_simple) +#' +#' # Using smoke_simple_fun() to generate a derived smoking variable across CCHS +#' # cycles with user inputted smoking status and approximate time a former smoker +#' # has quit smoking. smoke_simple_fun() can also generate derived smoking variable +#' # value if you input a value for both number of smoking status and approximate +#' # time a former smoker has quit smoking. Let's say your smoking status is former +#' # daily (3) and your approximate time of quit smoking is 6 to 10 years (2), +#' # your derived smoking variable can be calculated as follows: +#' +#' library(cchsflow) +#' time_quit_smoking <- time_quit_smoking_fun(3,2) +#' print(time_quit_smoking) +#' +#' smoke_simple <- smoke_simple_fun(3,3) +#' print(smoke_simple) +#' +#' # Additional examples of derived smoking variable using smoke_simple_fun() can +#' # be found below. Multiple instances exist where an NA output may be produced +#' # such as a negative entry or missing SMKG09C values. +#' +#' library(cchsflow) +#' library(cchsflow) +#' SMKDSTY_cat5 <- c(1, 3, 2, 3) +#' SMKG09C <- c(1, 2, 5, NA) +#' smoke_simple_data <- data.frame(SMKDSTY_cat5, SMKG09C) +#' print(smoke_simple_data) +#' smoke_simple_data$smoke_simple <- +#' smoke_simple_fun(smoke_simple_data$SMKDSTY_cat5, smoke_simple_data$SMKG09C) +#' print(smoke_simple_data) +#' @export +smoke_simple_fun <- + function(SMKDSTY_cat5, time_quit_smoking) { + + # Nested function: current smoker status + derive_current_smoker <- function(SMKDSTY_cat5) { + smoker <- + ifelse(SMKDSTY_cat5 %in% c(1, 2), 1, + ifelse(SMKDSTY_cat5 %in% c(3, 4, 5), 0, + ifelse(SMKDSTY_cat5 == "NA(a)", "NA(a)", "NA(b)"))) + return(smoker) + } + smoker <- derive_current_smoker(SMKDSTY_cat5) + + # Nested function: ever smoker status + derive_ever_smoker <- function(SMKDSTY_cat5) { + eversmoker <- + ifelse(SMKDSTY_cat5 %in% c(1, 2, 3, 4), 1, + ifelse(SMKDSTY_cat5 == 5, 0, + ifelse(SMKDSTY_cat5 == "NA(a)", "NA(a)", "NA(b)"))) + return(eversmoker) + } + eversmoker <- derive_ever_smoker(SMKDSTY_cat5) + + # smoke_simple 0 = non-smoker + smoke_simple <- + ifelse(smoker == 0 & eversmoker == 0, 0, + # smoke_simple 1 = current smoker + ifelse(smoker == 1 & eversmoker == 1, 1, + # smoke_simple 2 = former daily smoker quit =<5 years or former occasional + # smoker + ifelse(smoker == 0 & eversmoker == 1 & time_quit_smoking <= 5 | + SMKDSTY_cat5 == 4, 2, + # smoke_simple 3 = former daily smoker quit > 5 years + ifelse(smoker == 0 & eversmoker == 1 & time_quit_smoking > 5, + 3, + ifelse(smoker == "NA(a)" & eversmoker == "NA(a)" & + time_quit_smoking == "NA(a)", "NA(a)", "NA(b)"))))) + return(smoke_simple) + } + +#' # Updating the original function smoke_simple_fun_A() generates a +#' # derived smoking variable across CCHS cycles with user inputted smoking +#' # status and approximate time a former smoker has quit smoking. This function +#' # version utilizes a continuous version of SMKG09C that is available within +#' # the shared files. smoke_simple_fun() can also generate derived smoking variable +#' # value if you input a value for both number of smoking status and approximate +#' # time a former smoker has quit smoking. Let's say your smoking status is former +#' # daily (3) and your approximate time of quit smoking is 6 to 10 years (2), +#' # your derived smoking variable can be calculated as follows: +#' +#' library(cchsflow) +#' time_quit_smoking <- time_quit_smoking_fun_A(4,20) +#' print(time_quit_smoking) +#' +#' smoke_simple <- smoke_simple_fun_A(3,20) +#' print(smoke_simple) +#' +#' # Additional examples of time since quitting smoking calculations produced +#' # using time_quit_smoking_fun() can be found below. Multiple instances exist +#' # where an NA output may be produced such as a negative entry and or +#' # missing SMKG09C values. +#' +#' library(cchsflow) +#' SMKDSTY_cat5 <- c(3, 2, 3, 3) +#' SMKG09C <- c(2, 1, NA, -2) +#' smoke_simple_data <- data.frame(SMKDSTY_cat5, SMKG09C) +#' print(smoke_simple_data) +#' smoke_simple_data$smoke_simple <- +#' smoke_simple_fun(smoke_simple_data$SMKDSTY_cat5, smoke_simple_data$SMKG09C) +#' print(smoke_simple_data) +#' @export +smoke_simple_fun_A <- + function(SMKDSTY_cat5, time_quit_smoking, + min_time_quit_smoking=0.5, max_time_quit_smoking=82) { + + # Nested function: current smoker status + derive_current_smoker <- function(SMKDSTY_cat5) { + smoker <- + ifelse(SMKDSTY_cat5 %in% c(1, 2), 1, + ifelse(SMKDSTY_cat5 %in% c(3, 4, 5), 0, + ifelse(SMKDSTY_cat5 == "NA(a)", "NA(a)", "NA(b)"))) + return(smoker) + } + smoker <- derive_current_smoker(SMKDSTY_cat5) + + # Nested function: ever smoker status + derive_ever_smoker <- function(SMKDSTY_cat5) { + eversmoker <- + ifelse(SMKDSTY_cat5 %in% c(1, 2, 3, 4), 1, + ifelse(SMKDSTY_cat5 == 5, 0, + ifelse(SMKDSTY_cat5 == "NA(a)", "NA(a)", "NA(b)"))) + return(eversmoker) + } + eversmoker <- derive_ever_smoker(SMKDSTY_cat5) + + # smoke_simple 0 = non-smoker + smoke_simple <- + ifelse(smoker == 0 & eversmoker == 0, 0, + # smoke_simple 1 = current smoker + ifelse(smoker == 1 & eversmoker == 1, 1, + # smoke_simple 2 = former daily smoker quit =<5 years or former occasional + # smoker + ifelse(smoker == 0 & eversmoker == 1 & time_quit_smoking <= 5 & + time_quit_smoking >= min_time_quit_smoking & + time_quit_smoking <= max_time_quit_smoking | + SMKDSTY_cat5 == 4, 2, + # smoke_simple 3 = former daily smoker quit > 5 years + ifelse(smoker == 0 & eversmoker == 1 & time_quit_smoking > 5 & + time_quit_smoking >= min_time_quit_smoking & + time_quit_smoking <= max_time_quit_smoking, + 3, + ifelse(smoker == "NA(a)" & eversmoker == "NA(a)" & + time_quit_smoking == "NA(a)", "NA(a)", "NA(b)"))))) +return(smoke_simple) + } + +#' @title Smoking pack-years +#' +#' @description This function creates a derived variable (pack_years_der) that +#' measures an individual's smoking pack-years based on various CCHS smoking +#' variables. This is a popular variable used by researchers to quantify +#' lifetime exposure to cigarette use. +#' +#' @details pack-years is calculated by multiplying the number of cigarette +#' packs per day (20 cigarettes per pack) by the number of years. Example 1: +#' a respondent who is a current smoker who smokes 1 package of cigarettes for +#' the last 10 years has smoked 10 pack-years. Pack-years is also calculated +#' for former smokers. Example 2: a respondent who started smoking at age +#' 20 years and smoked half a pack of cigarettes until age 40 years smoked for +#' 10 pack-years. +#' +#' @param SMKDSTY_A variable used in CCHS cycles 2001-2014 that classifies an +#' individual's smoking status. +#' +#' @param DHHGAGE_cont continuous age variable. +#' +#' @param time_quit_smoking derived variable that calculates the approximate +#' time a former smoker has quit smoking. +#' See \code{\link{time_quit_smoking_fun}} for documentation on how variable +#' was derived +#' +#' @param SMKG203_cont age started smoking daily. Variable asked to daily +#' smokers. +#' +#' @param SMKG207_cont age started smoking daily. Variable asked to former +#' daily smokers. +#' +#' @param SMK_204 number of cigarettes smoked per day. Variable asked to +#' daily smokers. +#' +#' @param SMK_05B number of cigarettes smoked per day. Variable asked to +#' occasional smokers +#' +#' @param SMK_208 number of cigarettes smoked per day. Variable asked to former +#' daily smokers +#' +#' @param SMK_05C number of days smoked at least one cigarette +#' +#' @param SMK_01A smoked 100 cigarettes in lifetime (y/n) +#' +#' @param SMKG01C_cont age smoked first cigarette +#' +#' @return value for smoking pack-years in the pack_years_der variable +#' +#' @examples +#' # Using pack_years_fun() to create pack-years values across CCHS cycles +#' # pack_years_fun() is specified in variable_details.csv along with the CCHS +#' # variables and cycles included. +#' +#' # To transform pack_years_der across cycles, use rec_with_table() for each +#' # CCHS cycle and specify pack_years_der, along with each smoking variable. +#' # Since time_quit_smoking_der is also a derived +#' # variable, you will have to specify the variables that are derived from it. +#' # Then by using merge_rec_data(), you can combine pack_years_der across +#' # cycles +#' +#' library(cchsflow) +#' +#' pack_years2009_2010 <- rec_with_table( +#' cchs2009_2010_p, c( +#' "SMKDSTY_A", "DHHGAGE_cont", "SMK_09A_B", "SMKG09C", "time_quit_smoking", +#' "SMKG203_cont", "SMKG207_cont", "SMK_204", "SMK_05B", "SMK_208", +#' "SMK_05C", "SMK_01A", "SMKG01C_cont", "pack_years_der" +#' ) +#' ) +#' +#' head(pack_years2009_2010) +#' +#' pack_years2011_2012 <- rec_with_table( +#' cchs2011_2012_p,c( +#' "SMKDSTY_A", "DHHGAGE_cont", "SMK_09A_B", "SMKG09C", "time_quit_smoking", +#' "SMKG203_cont", "SMKG207_cont", "SMK_204", "SMK_05B", "SMK_208", +#' "SMK_05C", "SMK_01A", "SMKG01C_cont", "pack_years_der" +#' ) +#' ) +#' +#' tail(pack_years2011_2012) +#' +#' combined_pack_years <- suppressWarnings(merge_rec_data(pack_years2009_2010, +#' pack_years2011_2012)) +#' +#' head(combined_pack_years) +#' tail(combined_pack_years) +#' @export +pack_years_fun <- + function(SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, + SMKG207_cont, SMK_204, SMK_05B, + SMK_208, SMK_05C, SMKG01C_cont, SMK_01A) { + # Age verification + if (is.na(DHHGAGE_cont)) { + return(tagged_na("b")) + } else if (DHHGAGE_cont < 0) { + return(tagged_na("b")) + } + + # PackYears for Daily Smoker + pack_years <- + if_else2( + SMKDSTY_A == 1, pmax(((DHHGAGE_cont - SMKG203_cont) * + (SMK_204 / 20)), 0.0137), + # PackYears for Occasional Smoker (former daily) + if_else2( + SMKDSTY_A == 2, pmax(((DHHGAGE_cont - SMKG207_cont - + time_quit_smoking) * (SMK_208 / 20)), 0.0137) + + (pmax((SMK_05B * SMK_05C / 30), 1) *time_quit_smoking), + # PackYears for Occasional Smoker (never daily) + if_else2( + SMKDSTY_A == 3, (pmax((SMK_05B * SMK_05C / 30), 1) / 20) * + (DHHGAGE_cont - SMKG01C_cont), + # PackYears for former daily smoker (non-smoker now) + if_else2( + SMKDSTY_A == 4, pmax(((DHHGAGE_cont - SMKG207_cont - + time_quit_smoking) * + (SMK_208 / 20)), 0.0137), + # PackYears for former occasional smoker (non-smoker now) who + # smoked at least 100 cigarettes lifetime + if_else2( + SMKDSTY_A == 5 & SMK_01A == 1, 0.0137, + # PackYears for former occasional smoker (non-smoker now) who + # have not smoked at least 100 cigarettes lifetime + if_else2( + SMKDSTY_A == 5 & SMK_01A == 2, 0.007, + # Non-smoker + if_else2(SMKDSTY_A == 6, 0, + # Account for NA(a) + if_else2(SMKDSTY_A == "NA(a)", tagged_na("a"), + tagged_na("b")) + ) + ) + ) + ) + ) + ) + ) + return(pack_years) + } + +#' # Updating the original function pack_years_fun_A() generates pack-years values +#' # across CCHS cycles. Updated pack_years_fun_A() incorporates minimum and maximum +#' # values of all inputted variables. Note that while minimum and maximum values are +#' # preset, they can be altered to researcher-specific values if needed. +#' +#' # Additional examples of pack years calculations produced +#' # using pack_years_fun_A() can be found below. Multiple instances exist +#' # where an NA output may be produced such as a negative/missing entry or an +#' # entry existing outside of the allowed variable minimum and maximum values. +#' +#' # Examples demonstrating output when preset min/max values are exceeded within data +#' SMKDSTY_A <- c(1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5) +#' DHHGAGE_cont <- c(50, 50, 10, 105, 50, 50, 50, 50, 50, 50, +#' 50, 50, 50, 50, 50, 50, 50, 50, 50) +#' time_quit_smoking <- c(0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.5, 0, 85, +#' 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5) +#' SMKG203_cont <- c(15, 15, 15, 15, 15, 3, 90, 15, 15, +#' 15, 15, 15, 15, 15, 15, 15,15, 15, 15) +#' SMKG207_cont <- c(NA, NA, NA, NA, NA, NA, NA, 35, 35, +#' 35, 35, 3, 86, 35, 35, 35, 35, 35, 35) +#' SMK_204 <- c(25, 25, 25, 25, 25, 25, 25, 25, 25, +#' 25, 25, 25, 25, 25, 25, 25, 25, 25, 25) +#' SMK_05B <- c(NA, NA, NA, NA, NA, NA, NA, 10, 10, +#' 10, 10, 10, 10, 10, 10, 10, 10, 10, 10) +#' SMK_208 <- c(NA, NA, NA, NA, NA, NA, NA, 10, 10, +#' 10, 10, 10, 10, 10, 0, 150, 10, 10, 10) +#' SMK_05C <- c(12, 12, 12, 12, 12, 12, 12, 12, 12, +#' 12, 12, 12, 12, 12, 12, 12, 12, 12, 12) +#' SMKG01C_cont <- c(18, 18, 18, 18, 18, 18, 18, 18, 18, +#' 18, 18, 18, 18, 18, 18, 18, 18, 18, 18) +#' SMK_01A <- c(NA, NA, NA, NA, NA, NA, NA, NA, NA, +#' NA, NA, NA, NA, NA, NA, NA, 1, 2, 3) +#' +#' pack_years_data <- data.frame(SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, +#' SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, +#' SMK_208, SMK_05C, SMKG01C_cont, SMK_01A) +#' print(pack_years_data) +#' pack_years_data$pack_years <- +#' pack_years_fun_A(pack_years_data$SMKDSTY_A, +#' pack_years_data$DHHGAGE_cont, +#' pack_years_data$time_quit_smoking, +#' pack_years_data$SMKG203_cont, +#' pack_years_data$SMKG207_cont, +#' pack_years_data$SMK_204, +#' pack_years_data$SMK_05B, +#' pack_years_data$SMK_208, +#' pack_years_data$SMK_05C, +#' pack_years_data$SMKG01C_cont, +#' pack_years_data$SMK_01A) +#' print(pack_years_data) +#' +#' # Examples demonstrating output when min/max values set by user are exceeded +#' SMKDSTY_A <- c(1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5) +#' DHHGAGE_cont <- c(50, 50, 10, 105, 50, 50, 50, 50, 50, 50, +#' 50, 50, 50, 50, 50, 50, 50, 50, 50) +#' time_quit_smoking <- c(0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.5, 0, 85, +#' 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5) +#' SMKG203_cont <- c(15, 15, 15, 15, 15, 3, 90, 15, 15, +#' 15, 15, 15, 15, 15, 15, 15,15, 15, 15) +#' SMKG207_cont <- c(NA, NA, NA, NA, NA, NA, NA, 35, 35, +#' 35, 35, 3, 86, 35, 35, 35, 35, 35, 35) +#' SMK_204 <- c(25, 25, 25, 25, 25, 25, 25, 25, 25, +#' 25, 25, 25, 25, 25, 25, 25, 25, 25, 25) +#' SMK_05B <- c(NA, NA, NA, NA, NA, NA, NA, 10, 10, +#' 10, 10, 10, 10, 10, 10, 10, 10, 10, 10) +#' SMK_208 <- c(NA, NA, NA, NA, NA, NA, NA, 10, 10, +#' 10, 10, 10, 10, 10, 0, 150, 10, 10, 10) +#' SMK_05C <- c(12, 12, 12, 12, 12, 12, 12, 12, 12, +#' 12, 12, 12, 12, 12, 12, 12, 12, 12, 12) +#' SMKG01C_cont <- c(18, 18, 18, 18, 18, 18, 18, 18, 18, +#' 18, 18, 18, 18, 18, 18, 18, 18, 18, 18) +#' SMK_01A <- c(NA, NA, NA, NA, NA, NA, NA, NA, NA, +#' NA, NA, NA, NA, NA, NA, NA, 1, 2, 3) +#' +#' pack_years_data <- data.frame(SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, +#' SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, +#' SMK_208, SMK_05C, SMKG01C_cont, SMK_01A, +#' min_DHHGAGE_cont = 11 , max_DHHGAGE_cont = 103, +#' min_time_quit_smoking = 1.0, max_time_quit_smoking = 84, +#' min_SMKG203_cont = 4, max_SMKG203_cont = 88, +#' min_SMKG207_cont = 4, max_SMKG207_cont = 85, +#' min_SMK_204 = 0, max_SMK_204 = 100, min_SMK_05B = 0, max_SMK_05B = 100, +#' min_SMK_208 = 0, max_SMK_208 = 100, min_SMK_05C = 0, max_SMK_05C = 31, +#' min_SMKG01C_cont = 5, max_SMKG01C_cont = 80) +#' print(pack_years_data) +#' pack_years_data$pack_years <- +#' pack_years_fun_A(pack_years_data$SMKDSTY_A, +#' pack_years_data$DHHGAGE_cont, +#' pack_years_data$time_quit_smoking, +#' pack_years_data$SMKG203_cont, +#' pack_years_data$SMKG207_cont, +#' pack_years_data$SMK_204, +#' pack_years_data$SMK_05B, +#' pack_years_data$SMK_208, +#' pack_years_data$SMK_05C, +#' pack_years_data$SMKG01C_cont, +#' pack_years_data$SMK_01A) +#' print(pack_years_data) +#' @export +pack_years_fun_A <- + function(SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, + SMKG207_cont, SMK_204, SMK_05B, + SMK_208, SMK_05C, SMKG01C_cont, SMK_01A, + min_DHHGAGE_cont = 12 , max_DHHGAGE_cont = 102, + min_time_quit_smoking = 0.5, max_time_quit_smoking = 82, + min_SMKG203_cont = 5, max_SMKG203_cont = 84, + min_SMKG207_cont = 5, max_SMKG207_cont = 80, + min_SMK_204 = 1, max_SMK_204 = 99, min_SMK_05B = 1, max_SMK_05B = 99, + min_SMK_208 = 1, max_SMK_208 = 99, min_SMK_05C = 0, max_SMK_05C = 31, + min_SMKG01C_cont = 5, max_SMKG01C_cont = 80) { + # Age verification + DHHGAGE_cont<- + if_else2(is.na(DHHGAGE_cont), tagged_na("b"), + if_else2(DHHGAGE_cont < 0, tagged_na("b"), + if_else2(DHHGAGE_cont < min_DHHGAGE_cont, tagged_na("b"), + if_else2(DHHGAGE_cont > max_DHHGAGE_cont, tagged_na("b"),DHHGAGE_cont)))) + + # PackYears for Daily Smoker + pack_years <- + if_else2( + SMKDSTY_A == 1 & SMKG203_cont > min_SMKG203_cont & SMKG203_cont < max_SMKG203_cont + & SMK_204 > min_SMK_204 & SMK_204 < max_SMK_204, pmax(((DHHGAGE_cont - SMKG203_cont) * + (SMK_204 / 20)), 0.0137), + # PackYears for Occasional Smoker (former daily) + if_else2( + SMKDSTY_A == 2 & SMKG207_cont > min_SMKG207_cont & SMKG207_cont < max_SMKG207_cont + & time_quit_smoking > min_time_quit_smoking & time_quit_smoking < max_time_quit_smoking + & SMK_05B > min_SMK_05B & SMK_05B < max_SMK_05B + & SMK_208 > min_SMK_208 & SMK_208 < max_SMK_208, pmax(((DHHGAGE_cont - SMKG207_cont - + time_quit_smoking) * (SMK_208 / 20)), 0.0137) + + (pmax((SMK_05B * SMK_05C / 30), 1) *time_quit_smoking), + # PackYears for Occasional Smoker (never daily) + if_else2( + SMKDSTY_A == 3 & SMK_05C > min_SMK_05C & SMK_05C < max_SMK_05C + & SMKG207_cont > min_SMKG207_cont & SMKG207_cont < max_SMKG207_cont, + (pmax((SMK_05B * SMK_05C / 30), 1) / 20) * (DHHGAGE_cont - SMKG01C_cont), + # PackYears for former daily smoker (non-smoker now) + if_else2( + SMKDSTY_A == 4 & SMKG207_cont > min_SMKG207_cont & SMKG207_cont < max_SMKG207_cont + & time_quit_smoking > min_time_quit_smoking & time_quit_smoking < max_time_quit_smoking + & SMK_208 > min_SMK_208 & SMK_208 < max_SMK_208, pmax(((DHHGAGE_cont - SMKG207_cont - + time_quit_smoking) * + (SMK_208 / 20)), 0.0137), + # PackYears for former occasional smoker (non-smoker now) who + # smoked at least 100 cigarettes lifetime + if_else2( + SMKDSTY_A == 5 & SMK_01A == 1, 0.0137, + # PackYears for former occasional smoker (non-smoker now) who + # have not smoked at least 100 cigarettes lifetime + if_else2( + SMKDSTY_A == 5 & SMK_01A == 2, 0.007, + # Non-smoker + if_else2(SMKDSTY_A == 6, 0, + # Account for NA(a) + if_else2(SMKDSTY_A == "NA(a)", tagged_na("a"), + tagged_na("b")) + ) + ) + ) + ) + ) + ) + ) + return(pack_years) + } + +#' @title Age started smoking daily - daily/former daily smokers +#' +#' @description This function creates a continuous derived variable +#' (SMKG040_fun) that calculates the approximate age that a daily or former +#' daily smoker began smoking daily. +#' +#' @details SMKG203 (daily smoker) and SMKG207 (former daily) are present in +#' CCHS 2001-2014, and are separate variables. For CCHS 2015 and onward, SMKG040 +#' (daily/former daily) combines the two previous variables. SMKG040_fun takes +#' the continuous functions (SMKG203_cont and SMKG207_cont) to create SMKG040 +#' for 2001-2014. +#' +#' @note In previous cycles, both SMKG203 and SMKG207 included respondents who +#' did not state their smoking status. From CCHS 2015 and onward, SMKG040 only +#' included respondents who specified daily smoker or former daily smoker. As +#' a result, SMKG040 has a large number of missing respondents for CCHS 2015 +#' survey cycles and onward. +#' +#' @param SMKG203_cont age started smoking daily. Variable asked to daily +#' smokers. +#' +#' @param SMKG207_cont age started smoking daily. Variable asked to former +#' daily smokers. +#' +#' @return value for age started smoking daily for daily/former daily smokers in +#' the SMKG040_cont variable +#' +#' @examples +#' # Using SMKG040_fun() to create age values across CCHS cycles +#' # SMKG040_fun() is specified in variable_details.csv under SMKG040_cont. +#' +#' # To create a continuous harmonized variable for SMKG040, use rec_with_table() +#' # for each CCHS cycle and specify SMKG040_cont. +#' +#' library(cchsflow) +#' +#' age_smoke_dfd_2009_2010 <- rec_with_table( +#' cchs2009_2010_p, c( +#' "SMKG203_cont", "SMKG207_cont","SMKG040_cont" +#' ) +#' ) +#' +#' head(age_smoke_dfd_2009_2010) +#' +#' age_smoke_dfd_2011_2012 <- rec_with_table( +#' cchs2011_2012_p,c( +#' "SMKG203_cont", "SMKG207_cont","SMKG040_cont" +#' ) +#' ) +#' +#' tail(age_smoke_dfd_2011_2012) +#' +#' combined_age_smoke_dfd <- suppressWarnings(merge_rec_data +#' (age_smoke_dfd_2009_2010,age_smoke_dfd_2011_2012)) +#' +#' head(combined_age_smoke_dfd) +#' tail(combined_age_smoke_dfd) +#' +#' SMKG203_cont <- c(30, NA, NA) +#' SMKG207_cont <- c(NA, 42, NA) +#' SMKG040_data <- data.frame(SMKG203_cont, SMKG207_cont) +#' SMKG040_data$SMKG040 <- SMKG040_fun(SMKG040_data$SMKG203_cont, SMKG040_data$SMKG207_cont) +#' print(SMKG040_data) +#' @export + +SMKG040_fun <- function(SMKG203_cont, SMKG207_cont){ + SMKG040_cont <- + if_else2((SMKG203_cont == tagged_na("a") & SMKG207_cont == tagged_na("a")), + tagged_na("a"), + if_else2((SMKG203_cont == tagged_na("b") & + SMKG207_cont == tagged_na("b")), tagged_na("b"), + if_else2(!is.na(SMKG203_cont), SMKG203_cont, + if_else2(!is.na(SMKG207_cont), SMKG207_cont, + tagged_na("b"))))) + return(SMKG040_cont) +} + +#' # Additional examples of SMKG040_cont calculations produced +#' # using SMKG040_fun_A() can be found below. Multiple instances exist +#' # where an NA output may be produced such as a negative/missing entry or an +#' # entry existing outside of the allowed variable minimum and maximum values. +#' +#' SMKG203_cont <- c(30, NA, -2, 95, NA, NA, NA) +#' SMKG207_cont <- c(NA, 42, NA, NA, -3, 86, NA) +#' SMKG040_data <- data.frame(SMKG203_cont, SMKG207_cont) +#' SMKG040_data$SMKG040 <- SMKG040_fun_A(SMKG040_data$SMKG203_cont, SMKG040_data$SMKG207_cont) +#' print(SMKG040_data) +#' @export + +SMKG040_fun_A <- function(SMKG203_cont, SMKG207_cont, + min_SMKG203_cont = 5, max_SMKG203_cont = 84, + min_SMKG207_cont = 5, max_SMKG207_cont = 80){ + SMKG040_cont <- + if_else2((SMKG203_cont == tagged_na("a") & SMKG207_cont == tagged_na("a")), + tagged_na("a"), + if_else2((SMKG203_cont == tagged_na("b") & + SMKG207_cont == tagged_na("b")), tagged_na("b"), + if_else2(!is.na(SMKG203_cont) & SMKG203_cont > min_SMKG203_cont + & SMKG203_cont < max_SMKG203_cont, SMKG203_cont, + if_else2(!is.na(SMKG207_cont) & SMKG207_cont > min_SMKG207_cont + & SMKG207_cont < max_SMKG207_cont, SMKG207_cont, + tagged_na("b"))))) + return(SMKG040_cont) +} + +#' @title Categorical smoking pack-years +#' +#' @description This function creates a categorical derived variable +#' (pack_years_cat) that categorizes smoking pack-years (pack_years_der). +#' +#' @details pack-years is calculated by multiplying the number of cigarette +#' packs per day (20 cigarettes per pack) by the number of years.The categories +#' were based on the Cardiovascular Disease Population Risk Tool +#' (Douglas Manuel et al. 2018). +#' +#' pack_years_cat uses the derived variable pack_years_der. Pack_years_der uses +#' age and various smoking variables that have been transformed by cchsflow (see +#' documentation on pack_year_der). In order to categorize pack years across CCHS +#' cycles, age and smoking variables must be transformed and harmonized. +#' +#' @param pack_years_der derived variable that calculates smoking pack-years +#' See \code{\link{pack_years_fun}} for documentation on how variable +#' was derived. +#' +#' @return value for pack year categories in the pack_years_cat variable. +#' +#' @examples +#' # Using pack_years_fun_cat() to categorize pack year values across CCHS cycles +#' # pack_years_fun_cat() is specified in variable_details.csv along with the +#' # CCHS variables and cycles included. +#' +#' # To transform pack_years_cat across cycles, use rec_with_table() for each +#' # CCHS cycle and specify pack_years_cat. +#' # Since pack_year_der is also also derived variable, you will have to specify +#' # the variables that are derived from it. +#' # Since time_quit_smoking_der is also a derived variable in pack_year_der, +#' # you will have to specify the variables that are derived from it. +#' # Then by using merge_rec_data(), you can combine pack_years_cat across +#' # cycles. +#' +#' library(cchsflow) +#' +#' pack_years_cat_2009_2010 <- rec_with_table( +#' cchs2009_2010_p, c( +#' "SMKDSTY_A", "DHHGAGE_cont", "SMK_09A_B", "SMKG09C", "time_quit_smoking", +#' "SMKG203_cont", "SMKG207_cont", "SMK_204", "SMK_05B", "SMK_208", +#' "SMK_05C", "SMK_01A", "SMKG01C_cont", "pack_years_der", "pack_years_cat" +#' ) +#' ) +#' +#' head(pack_years_cat_2009_2010) +#' +#' pack_years_cat_2011_2012 <- rec_with_table( +#' cchs2011_2012_p,c( +#' "SMKDSTY_A", "DHHGAGE_cont", "SMK_09A_B", "SMKG09C", "time_quit_smoking", +#' "SMKG203_cont", "SMKG207_cont", "SMK_204", "SMK_05B", "SMK_208", +#' "SMK_05C", "SMK_01A", "SMKG01C_cont", "pack_years_der", "pack_years_cat" +#' ) +#' ) +#' +#' tail(pack_years_cat_2011_2012) +#' +#' combined_pack_years_cat <- suppressWarnings(merge_rec_data +#' (pack_years_cat_2009_2010,pack_years_cat_2011_2012)) +#' +#' head(combined_pack_years_cat) +#' tail(combined_pack_years_cat) +#' @export +#' +pack_years_fun_cat <- function(pack_years_der){ + pack_years_cat <- + if_else2(pack_years_der == 0, 1, + if_else2(pack_years_der > 0 & pack_years_der <= 0.01, 2, + if_else2(pack_years_der > 0.01 & pack_years_der <= 3.0, 3, + if_else2(pack_years_der > 3.0 & pack_years_der <= 9.0, 4, + if_else2(pack_years_der > 9.0 & pack_years_der <= 16.2, 5, + if_else2(pack_years_der > 16.2 & pack_years_der <= 25.7, 6, + if_else2(pack_years_der > 25.7 & pack_years_der <= 40.0, 7, + if_else2(pack_years_der > 40.0, 8, + if_else2(haven::is_tagged_na(pack_years_der, "a"), "NA(a)", "NA(b)"))))))))) + + return(pack_years_cat) +} + +#' @title Type of smokers +#' +#' @description This function creates a derived variable (SMKDSTY_A) for +#' smoker type with 5 categories: +#' +#' \itemize{ +#' \item daily smoker +#' \item current occasional smoker (former daily) +#' \item current occasional smoker (never daily) +#' \item current nonsmoker (former daily) +#' \item current nonsmoker (never daily) +#' \item nonsmoker +#' } +#' +#' @details For CCHS 2001-2014, smoker type is derived from smoking more than +#' 100 cigarettes in lifetime, type of smoker at present time, and ever smoked +#' daily. For CCHS 2015-2018, smoker type was derived differently with different +#' variables and categories. A function was created for a consistent smoker +#' status across all cycles. +#' +#' @param SMK_005 type of smoker presently +#' +#' @param SMK_030 smoked daily - lifetime (occasional/former smoker) +#' +#' @param SMK_01A smoked 100 or more cigarettes in lifetime +#' +#' @return value for smoker type in the SMKDSTY_A variable +#' +#' @examples +#' # Using SMKDSTY_fun() to derive smoke type values across CCHS cycles +#' # SMKDSTY_fun() is specified in variable_details.csv along with the +#' # CCHS variables and cycles included. +#' +#' # To transform SMKDSTY_A across cycles, use rec_with_table() for each +#' # CCHS cycle and specify SMKDSTY_A. +#' # For CCHS 2001-2014, only specify SMKDSTY_A for smoker type. +#' # For CCHS 2015-2018, specify the parameters and SMKDSTY_A for smoker type. +#' +#' library(cchsflow) +#' +#' smoker_type_2009_2010 <- rec_with_table( +#' cchs2009_2010_p, "SMKDSTY_A") +#' +#' head(smoker_type_2009_2010) +#' +#' smoker_type_2017_2018 <- rec_with_table( +#' cchs2017_2018_p,c( +#' "SMK_01A", "SMK_005","SMK_030","SMKDSTY_A" +#' ) +#' ) +#' +#' tail(smoker_type_2017_2018) +#' +#' combined_smoker_type <- suppressWarnings(merge_rec_data +#' (smoker_type_2009_2010,smoker_type_2017_2018)) +#' +#' head(combined_smoker_type) +#' tail(combined_smoker_type) +#' +#' @export + +SMKDSTY_fun<-function(SMK_005, SMK_030, SMK_01A){ + if_else2(SMK_005 == 1, 1, # Daily smoker + if_else2(SMK_005 == 2 & SMK_030 == 1, 2, # Occasional smoker (former daily) + if_else2(SMK_005 == 2 & (SMK_030 == 2|SMK_030 == "NA(a)"|SMK_030 == "NA(b)"), + 3, # Occasional Smoker (never daily) + if_else2(SMK_005 == 3 & SMK_030 == 1 , 4, # Former daily + if_else2(SMK_005 == 3 & SMK_030 == 2 & SMK_01A == 1, 5, # Former occasional + if_else2(SMK_005 == 3 & SMK_01A == 2, 6, # Never smoked + if_else2(SMK_005 == "NA(a)", tagged_na("a"), tagged_na("b")))))))) +} + +#' @title Age started to smoke daily - daily smoker +#' +#' @description This function creates a continuous derived variable +#' (SMKG203_cont) for age started to smoke daily for daily smokers. +#' +#' @details For CCHS 2015-2018, age started to smoke daily was combined for daily +#' and former daily smokers.Previous cycles had separate variables for age +#' started to smoke daily. Type of smoker presently is used to define daily +#' smoker. +#' +#' @param SMK_005 type of smoker presently +#' +#' @param SMKG040 age started to smoke daily - daily/former daily smoker +#' +#' @return value for continuous age started to smoke daily for daily smokers +#' in the SMKG203_cont variable +#' +#' @examples +#' # Using SMKG203_fun() to derive age started to smoke daily values across +#' # CCHS cycles. +#' # SMKG203_fun() is specified in variable_details.csv along with the +#' # CCHS variables and cycles included. +#' +#' # To transform SMKG203_A across cycles, use rec_with_table() for each +#' # CCHS cycle and specify SMKG203_A. +#' # For CCHS 2001-2014, only specify SMKG203_A. +#' # For CCHS 2015-2018, specify the parameters and SMKG203_A for daily smoker +#' # age. +#' +#' library(cchsflow) +#' +#' agecigd_2009_2010 <- rec_with_table( +#' cchs2009_2010_p, "SMKG203_A") +#' +#' head(agecigd_2009_2010) +#' +#' agecigd_2017_2018 <- rec_with_table( +#' cchs2017_2018_p,c( +#' "SMK_005","SMKG040","SMKG203_A" +#' ) +#' ) +#' +#' tail(agecigd_2017_2018) +#' +#' combined_agecigd <- suppressWarnings(merge_rec_data +#' (agecigd_2009_2010,agecigd_2017_2018)) +#' +#' head(combined_agecigd) +#' tail(combined_agecigd) +#' +#' @export + +SMKG203_fun <- function(SMK_005, SMKG040){ + SMKG203 <- if_else2( + SMK_005 == 1, SMKG040, + if_else2( + SMK_005 == "NA(a)"|SMKG040 == "NA(a)", tagged_na("a"), tagged_na("b"))) + SMKG203_cont <- if_else2( + SMKG203 == 1, 8, + if_else2( + SMKG203 == 2, 13, + if_else2( + SMKG203 == 3, 16, + if_else2( + SMKG203 == 4, 18.5, + if_else2( + SMKG203 == 5, 22, + if_else2( + SMKG203 == 6, 27, + if_else2( + SMKG203 == 7, 32, + if_else2( + SMKG203 == 8, 37, + if_else2( + SMKG203 == 9, 42, + if_else2( + SMKG203 == 10, 47, + if_else2( + SMKG203 == 11, 55, + if_else2(SMKG203 == "NA(a)", + tagged_na("a"), tagged_na("b") + ) + ) + ) + ) + ) + ) + ) + ) + ) + ) + ) + ) + + return(SMKG203_cont) +} + +#' @title Age started to smoke daily - former daily smoker +#' +#' @description This function creates a continuous derived variable +#' (SMKG207_cont) for age started to smoke daily for former daily smokers. +#' +#' @details For CCHS 2015-2018, age started to smoke daily was combined for daily +#' and former daily smokers.Previous cycles had separate variables for age +#' started to smoke daily. Smoked daily in lifetime is used to define former +#' daily smoker. +#' +#' @param SMK_030 smoked daily - lifetime (occasional/former smoker) +#' +#' @param SMKG040 age started to smoke daily - daily/former daily smoker +#' +#' @return value for continuous age started to smoke daily for former daily +#' smokers in the SMKG207_cont variable +#' +#' @examples +#' # Using SMKG207_fun() to derive age started to smoke daily values across +#' # CCHS cycles. +#' # SMKG207_fun() is specified in variable_details.csv along with the +#' # CCHS variables and cycles included. +#' +#' # To transform SMKG207_A across cycles, use rec_with_table() for each +#' # CCHS cycle and specify SMKG207_A. +#' # For CCHS 2001-2014, only specify SMKG207_A. +#' # For CCHS 2015-2018, specify the parameters and SMKG207_A for former daily +#' # smoker age. +#' +#' library(cchsflow) +#' +#' agecigfd_2009_2010 <- rec_with_table( +#' cchs2009_2010_p, "SMKG207_A") +#' +#' head(agecigfd_2009_2010) +#' +#' agecigfd_2017_2018 <- rec_with_table( +#' cchs2017_2018_p,c( +#' "SMK_030","SMKG040","SMKG207_A" +#' ) +#' ) +#' +#' tail(agecigfd_2017_2018) +#' +#' combined_agecigfd <- suppressWarnings(merge_rec_data +#' (agecigfd_2009_2010,agecigfd_2017_2018)) +#' +#' head(combined_agecigfd) +#' tail(combined_agecigfd) +#' +#' @export +#' @export +SMKG207_fun <- function(SMK_030, SMKG040){ + SMKG207 <- if_else2( + SMK_030 == 1, SMKG040, + if_else2( + SMK_030 == "NA(a)"|SMKG040 == "NA(a)", tagged_na("a"), tagged_na("b"))) + SMKG207_cont <- if_else2( + SMKG207 == 1, 8, + if_else2( + SMKG207 == 2, 13, + if_else2( + SMKG207 == 3, 16, + if_else2( + SMKG207 == 4, 18.5, + if_else2( + SMKG207 == 5, 22, + if_else2( + SMKG207 == 6, 27, + if_else2( + SMKG207 == 7, 32, + if_else2( + SMKG207 == 8, 37, + if_else2( + SMKG207 == 9, 42, + if_else2( + SMKG207 == 10, 47, + if_else2( + SMKG207 == 11, 55, + if_else2(SMKG207 == "NA(a)", + tagged_na("a"), tagged_na("b") + ) + ) + ) + ) + ) + ) + ) + ) + ) + ) + ) + ) + + return(SMKG207_cont) + +} \ No newline at end of file diff --git a/R/smoking-histories.R b/R/smoking-histories.R new file mode 100644 index 0000000..2ce36d9 --- /dev/null +++ b/R/smoking-histories.R @@ -0,0 +1,20 @@ +# smoking-histories.R +# Generate initiation/cessation rate tables from fitted APC models (Stage 9) +# for the shg-rcpp simulation (Stage 10, separate repo). +# Pipeline target: rate_tables + +#' Generate Canadian rate tables for shg-rcpp +#' +#' Extracts initiation and cessation probability tables from fitted APC models, +#' formatted to match the CISNET shg-rcpp input specification. PUMF-derived +#' tables can be shared internationally under the Statistics Canada Open Licence. +#' +#' @param apc_models List of fitted APC models (initiation + cessation, by sex) +#' @param cfg Config object from config::get() +#' @return List of rate tables (initiation_men, initiation_women, cessation) +generate_rate_tables <- function(apc_models, cfg) { + # TODO: implement + # Output format: shg-rcpp input specification + # See: https://github.com/NCI-CISNET/shg-rcpp + stop("Not yet implemented") +} diff --git a/R/study-data.R b/R/study-data.R new file mode 100644 index 0000000..7116b8c --- /dev/null +++ b/R/study-data.R @@ -0,0 +1,116 @@ +# study-data.R +# Load and harmonize CCHS cycles via cchsflow. +# Pipeline target: study_data + +#' Survey cycle numeric code from dataset name +#' +#' @param data_name cchsflow dataset name (e.g. "cchs2001_p") +#' @return Integer cycle code (1 = 2001, ..., 11 = 2022) +survey_cycle_code <- function(data_name) { + codes <- c( + cchs2001_p = 1L, + cchs2003_p = 2L, + cchs2005_p = 3L, + cchs2007_2008_p = 4L, + cchs2009_2010_p = 5L, + cchs2011_2012_p = 6L, + cchs2013_2014_p = 7L, + cchs2015_2016_p = 8L, + cchs2017_2018_p = 9L, + cchs2019_2020_p = 10L, + cchs2022_p = 11L + ) + if (!data_name %in% names(codes)) { + stop("Unknown CCHS dataset name: ", data_name) + } + codes[[data_name]] +} + +#' Load and harmonize CCHS PUMF cycles +#' +#' Reads all configured CCHS cycles from raw_data_dir, harmonizes variables +#' using cchsflow worksheets, adds SurveyCycle, and combines into a single +#' data frame. +#' +#' @param cfg Config object from config::get() +#' @param variables_sheet variables worksheet (data frame) +#' @param variable_details_sheet variable_details worksheet (data frame) +#' @return Combined harmonized data frame (all cycles, study variables only) +load_study_data <- function(cfg, variables_sheet, variable_details_sheet, + coverage_check = NULL) { + # Filter to variables for this data source (pumf/master/both) + # The cycle variable (survey_var(cfg, "cycle")) is derived manually — rec_with_table cannot derive it + study_vars <- variables_sheet[ + variables_sheet$variable != survey_var(cfg, "cycle") & + variables_sheet$source %in% c(cfg$data_source, "both"), + ] + + harmonized <- NULL + data_env <- new.env() + + for (cycle in cfg$cchs_cycles) { + # Support raw_data_file_map (cchsflow-data naming) or default cchs*_p.RData naming + filename <- if (!is.null(cfg$raw_data_file_map[[cycle]])) { + cfg$raw_data_file_map[[cycle]] + } else { + paste0(cycle, ".RData") + } + rdata_path <- file.path(cfg$raw_data_dir, filename) + + if (!file.exists(rdata_path)) { + warning("Cycle file not found, skipping: ", rdata_path) + next + } + + message("Harmonizing ", cycle) + loaded_name <- load(rdata_path, envir = data_env) + + # cchsflow-data release files use `table` as the internal object name + obj_name <- if ("table" %in% loaded_name) "table" else loaded_name[1] + raw_data <- get(obj_name, envir = data_env) + + if (cfg$sample_proportion < 1) { + n_sample <- round(nrow(raw_data) * cfg$sample_proportion) + raw_data <- raw_data[sample(nrow(raw_data), n_sample), ] + } + + # rec_with_table (cchsflow v3) requires a plain data.frame, not a tibble. + # When data is a tibble, data[logi_idx, "col"] returns a 1-column tibble + # (a list), which breaks the copy recEnd assignment with a range recStart. + raw_data <- as.data.frame(raw_data) + + cycle_data <- cchsflow::rec_with_table( + data = raw_data, + variables = study_vars, + database_name = cycle, + variable_details = variable_details_sheet, + notes = FALSE + ) + + cycle_data[[survey_var(cfg, "cycle")]] <- survey_cycle_code(cycle) + + if (is.null(harmonized)) { + harmonized <- cycle_data + } else { + harmonized <- dplyr::bind_rows(harmonized, cycle_data) + } + + rm(list = obj_name, envir = data_env) + message(" Done: ", cycle, " (", nrow(cycle_data), " rows)") + } + + if (is.null(harmonized)) stop("No CCHS cycles loaded — check cfg$raw_data_dir") + + # Convert types per variables worksheet + for (var in colnames(harmonized)) { + row <- variables_sheet[variables_sheet$variable == var, ] + if (nrow(row) == 0) next + if (row$variableType[1] == "Categorical") { + harmonized[[var]] <- as.factor(harmonized[[var]]) + } else if (row$variableType[1] == "Continuous") { + harmonized[[var]] <- as.numeric(harmonized[[var]]) + } + } + + harmonized +} diff --git a/R/validate-coverage.R b/R/validate-coverage.R new file mode 100644 index 0000000..c93bd0b --- /dev/null +++ b/R/validate-coverage.R @@ -0,0 +1,152 @@ +# validate-coverage.R — Pre-flight validation of variable coverage +# +# Checks that every variable declared in cshm-variables.csv has matching +# rows in the combined variable_details for each cycle it claims. +# This is the CCHS-specific validation layer (the "spur"): it verifies +# that config.yml variable mappings resolve correctly against cchsflow's +# variable_details before the pipeline runs. +# +# Two checks: +# 1. Declared coverage: does variable_details deliver what cshm-variables.csv +# claims in its databaseStart column? +# 2. Critical coverage: do variables with pipeline-critical roles +# (design, model-stratifier, apc-numerator, apc-denominator) have +# complete coverage across all pipeline cycles? + +#' Validate variable coverage against variable_details +#' +#' @param variables_sheet Data frame from cshm-variables.csv +#' @param variable_details_sheet Data frame: rbind of cchsflow base + +#' CSHM extension variable_details +#' @param cfg Config list (needs cfg$cchs_cycles, cfg$data_source) +#' @param strict If TRUE, stop on any critical coverage gap. +#' If FALSE (default), warn and return results. +#' @return Invisibly, a list with two data frames: +#' \describe{ +#' \item{declared}{Gaps where cshm-variables.csv claims a cycle but +#' variable_details cannot deliver it.} +#' \item{critical}{Pipeline cycles missing for critical-role variables.} +#' } +validate_cycle_coverage <- function(variables_sheet, + variable_details_sheet, + cfg, + strict = FALSE) { + data_source <- cfg$data_source %||% "pumf" + + # Filter variables sheet to active data source + source_col <- variables_sheet$source + active_vars <- variables_sheet[ + !is.na(source_col) & (source_col == data_source | source_col == "both"), + ] + + # Pipeline cycles (e.g. cchs2001_p ... cchs2022_p) + pipeline_cycles <- cfg$cchs_cycles + if (is.null(pipeline_cycles)) { + warning("validate_cycle_coverage: cfg$cchs_cycles is NULL; skipping") + return(invisible(list(declared = data.frame(), critical = data.frame()))) + } + + # Build lookup: for each variable in variable_details, which cycles are covered? + vd_coverage <- split(variable_details_sheet$databaseStart, + variable_details_sheet$variable) + vd_coverage <- lapply(vd_coverage, function(db_strings) { + unique(trimws(unlist(strsplit(db_strings, ",")))) + }) + + # Roles that must have complete pipeline coverage + critical_roles <- c("design", "model-stratifier", "apc-numerator", "apc-denominator") + + declared_gaps <- data.frame( + variable = character(0), cycle = character(0), role = character(0), + stringsAsFactors = FALSE + ) + critical_gaps <- data.frame( + variable = character(0), cycle = character(0), role = character(0), + stringsAsFactors = FALSE + ) + + for (i in seq_len(nrow(active_vars))) { + var_name <- active_vars$variable[i] + var_start <- active_vars$variableStart[i] + var_role <- active_vars$role[i] + + # Skip DerivedVar-only variables (e.g. SurveyCycle) + if (!is.na(var_start) && grepl("^DerivedVar::", var_start)) next + # Skip variables with empty variableStart (resolved internally by cchsflow) + if (is.na(var_start) || var_start == "") next + + covered_cycles <- vd_coverage[[var_name]] + if (is.null(covered_cycles)) covered_cycles <- character(0) + + # --- Check 1: Declared coverage --- + # Which pipeline cycles does cshm-variables.csv claim? + declared_db <- trimws(unlist(strsplit(active_vars$databaseStart[i], ","))) + declared_pipeline <- intersect(declared_db, pipeline_cycles) + + for (cycle in declared_pipeline) { + if (!(cycle %in% covered_cycles)) { + declared_gaps <- rbind(declared_gaps, data.frame( + variable = var_name, cycle = cycle, role = var_role, + stringsAsFactors = FALSE + )) + } + } + + # --- Check 2: Critical coverage --- + roles <- trimws(unlist(strsplit(var_role, ","))) + is_critical <- any(roles %in% critical_roles) + + if (is_critical) { + for (cycle in pipeline_cycles) { + if (!(cycle %in% covered_cycles)) { + critical_gaps <- rbind(critical_gaps, data.frame( + variable = var_name, cycle = cycle, role = var_role, + stringsAsFactors = FALSE + )) + } + } + } + } + + # --- Report declared gaps --- + if (nrow(declared_gaps) > 0) { + gap_summary <- tapply(declared_gaps$cycle, declared_gaps$variable, function(cycles) { + paste(cycles, collapse = ", ") + }) + msg_lines <- vapply(names(gap_summary), function(v) { + sprintf(" %s: missing %s", v, gap_summary[[v]]) + }, character(1)) + warning( + "Declared coverage gaps (cshm-variables.csv claims cycle but variable_details lacks it):\n", + paste(msg_lines, collapse = "\n"), + call. = FALSE + ) + } + + # --- Report critical gaps --- + if (nrow(critical_gaps) > 0) { + gap_summary <- tapply(critical_gaps$cycle, critical_gaps$variable, function(cycles) { + paste(cycles, collapse = ", ") + }) + msg_lines <- vapply(names(gap_summary), function(v) { + sprintf(" %s [%s]: missing %s", v, + critical_gaps$role[critical_gaps$variable == v][1], + gap_summary[[v]]) + }, character(1)) + msg <- paste0( + "Critical coverage gaps (pipeline-essential variables missing for some cycles):\n", + paste(msg_lines, collapse = "\n") + ) + if (strict) { + stop(msg, call. = FALSE) + } else { + warning(msg, call. = FALSE) + } + } + + if (nrow(declared_gaps) == 0 && nrow(critical_gaps) == 0) { + message("All variables pass coverage validation.") + } + + invisible(list(declared = declared_gaps, critical = critical_gaps)) +} diff --git a/R/validation.R b/R/validation.R new file mode 100644 index 0000000..42b6abf --- /dev/null +++ b/R/validation.R @@ -0,0 +1,16 @@ +# validation.R +# Compare modelled smoking prevalence against independent historic surveys. +# Pipeline target: validation_results + +#' Validate modelled prevalence against historic estimates +#' +#' Compares CSHM-modelled smoking prevalence by sex, age group, and year +#' against observed CCHS estimates and other independent data sources. +#' +#' @param smoking_histories Output of generate_rate_tables() +#' @param cfg Config object from config::get() +#' @return Data frame of validation metrics (bias, RMSE by subgroup) +validate_model <- function(smoking_histories, cfg) { + # TODO: implement + stop("Not yet implemented") +} diff --git a/R/variable-details-sheet-utils.R b/R/variable-details-sheet-utils.R new file mode 100644 index 0000000..115c215 --- /dev/null +++ b/R/variable-details-sheet-utils.R @@ -0,0 +1,41 @@ +# variable-details-sheet-utils.R +# Utility functions for working with the variable_details worksheet. +# Ported from DemPoRT-V2-dev (origin/dev). + +#' Return unique recEnd rows for a variable +#' +#' @param variable_details_sheet Variable details worksheet data frame +#' @param for_variable Variable name to look up +#' @param include_NA Whether to include NA:: rows (default FALSE) +#' @return Data frame of unique recEnd rows +get_unique_rec_end_rows <- function( + variable_details_sheet, + for_variable, + include_NA = FALSE +) { + all_unique <- variable_details_sheet |> + dplyr::filter(variable == for_variable) |> + dplyr::distinct(recEnd, .keep_all = TRUE) |> + dplyr::filter(!grepl("Func::", recEnd)) + + if (include_NA) { + return(all_unique) + } + + all_unique |> + dplyr::filter(recEnd != "NA::a" & recEnd != "NA::b") +} + +is_categorical <- function(variable, variable_details_sheet) { + "cat" %in% variable_details_sheet[ + variable_details_sheet$variable == variable, "typeEnd" + ] +} + +get_variable_type <- function(variable, variable_details_sheet) { + get_variable_rows(variable, variable_details_sheet)[1, "typeEnd"] +} + +get_variable_rows <- function(variable, variable_details_sheet) { + variable_details_sheet[variable_details_sheet$variable == variable, ] +} diff --git a/R/variables-sheet-utils.R b/R/variables-sheet-utils.R new file mode 100644 index 0000000..caae324 --- /dev/null +++ b/R/variables-sheet-utils.R @@ -0,0 +1,37 @@ +# variables-sheet-utils.R +# Utility functions for working with the variables worksheet. +# Ported from DemPoRT-V2-dev (origin/dev). + +get_row_for_variable <- function(variable, variables_sheet) { + variables_sheet[variables_sheet$variable == variable, ] +} + +is_continuous_variable <- function(variables_sheet_row) { + variables_sheet_row[1, "variableType"] == "Continuous" +} + +is_categorical_variable <- function(variables_sheet_row) { + variables_sheet_row[1, "variableType"] == "Categorical" +} + +is_value_na <- function(value) { + value == "N/A" +} + +#' Return variable names with a given role +#' +#' Roles are comma-separated in the worksheet, so a variable can carry +#' multiple roles (e.g. "predictor, table1, apc-numerator"). +#' This function matches any variable whose role field contains `role`. +#' +#' @param role Character role value (e.g. "predictor", "table1", "apc-numerator") +#' @param variables_sheet Variables worksheet data frame +#' @return Character vector of matching variable names +select_vars_by_role <- function(role, variables_sheet) { + has_role <- !is.na(variables_sheet$role) & vapply( + strsplit(variables_sheet$role, ","), + function(parts) role %in% trimws(parts), + logical(1) + ) + variables_sheet$variable[has_role] +} diff --git a/README.md b/README.md index 71c4310..ac6754a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,195 @@ -# CHSGM-dev -Canadian History Smoking Generator Model +# Canadian Smoking Histories Model (CSHM) + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) + +## Overview + +CSHM is an R implementation of an Age-Period-Cohort (APC) model that generates Canadian smoking histories from Canadian Community Health Survey (CCHS) data. It modernizes and extends the Ontario SHGM study (Manuel et al. 2020), updating the CCHS cycles, extending coverage from Ontario to all of Canada, and reimplementing the analysis in R from the original SAS code. + +**Key reference:** + +> Manuel DG, Wilton AS, Bennett C, Dass R, Laporte A, Holford TR. Smoking patterns based on birth-cohort-specific histories from 1965 to 2013, with projections to 2041. *Health Reports*. 2020;31(11):16–31. doi:[10.25318/82-003-x202001100002-eng](https://doi.org/10.25318/82-003-x202001100002-eng) + +## How it works + +The model has two stages: + +**Stage 1 — Estimate rates from CCHS data.** Two separate APC logistic regression models are fit using harmonized CCHS survey cycles: +- **Initiation model** — probability of transitioning from never smoker to current smoker at age *a*, conditional on being a never smoker at *a*−1 (zero before age 8) +- **Cessation model** — conditional probability of a current smoker quitting at age *a* (zero before age 15) + +Both models use constrained cubic splines with the same knot structure as Holford et al. (2014). The fundamental APC identity is `cohort = period − age`. + +**Stage 2 — Simulate smoking histories.** Estimated initiation and cessation rates are used to simulate individual-level smoking histories for synthetic Canadian populations. + +### APC model constraints + +Period effects are held constant beyond the observed data range: + +| Model | Constraint | +|-------|-----------| +| Initiation — men | Constant from 1999 forward | +| Initiation — women | Constant from 2003 forward | +| Cessation | Constant from 2013 forward | +| Cohort (initiation) | Constant prior to 1920 | +| Cohort (cessation) | Constant from 1985 forward | + +### Mortality adjustment + +Ever-smokers have lower survival to survey date than never-smokers. Survival bias is corrected using MPoRT weights adjusted for age, smoking status, years since quitting, immigration, and sex. A sensitivity analysis uses the Peto constant mortality risk ratio, consistent with the original Holford et al. (2014) US implementation. + +### Smoking status definitions + +| Status | Definition | +|--------|-----------| +| Never smoker | <100 lifetime cigarettes AND never smoked a whole cigarette | +| Current smoker | ≥100 lifetime cigarettes AND currently smokes daily or occasionally | +| Former smoker | ≥100 lifetime cigarettes AND not currently smoking | + +## Data + +### Two computing environments + +| Environment | Data | Notes | +|-------------|------|-------| +| Development | CCHS PUMF `.RData` files | Open licence; used for model development and validation | +| Production | CCHS Master files | Statistics Canada RDC; exact continuous variables; final model run | + +PUMF files use midpoint-estimated pseudo-continuous variables (e.g., `SMKG01C_cont`, `SMKG040_cont`). Master files provide exact continuous values (`SMK_01C`, `SMK_040`). PUMF-derived results are the shareable international artifact; Master data produces the definitive estimates. + +**CCHS cycles used:** 2001, 2003, 2005, 2007–08, 2009–10, 2011–12, 2013–14, 2015–16, 2017–18, 2019–20, 2022 (PUMF); 2001–2023 (Master). + +### CCHS harmonization + +Variables are harmonized across CCHS cycles using the [cchsflow](https://github.com/Big-Life-Lab/cchsflow) R package. The active development version (v3, PR #163) introduces unified smoking variables that route automatically to the appropriate source depending on file type: + +- `age_first_cigarette` — age first smoked whole cigarette (Master: exact; PUMF: midpoint estimate) +- `age_start_smoking` — age started smoking daily (Master: exact; PUMF: midpoint ±3 years) +- `time_quit_smoking` — years since quit smoking + +## Pipeline + +The analysis uses a [`{targets}`](https://docs.ropensci.org/targets/) pipeline with environment-specific configuration via `config.yml`. This pattern follows the [DemPoRT v2](https://github.com/Big-Life-Lab/DemPoRT-V2-dev) project. + +| Stage | Target | Status | +|-------|--------|--------| +| 1 | `variables_sheet`, `variable_details_sheet` | ✅ Active | +| 2 | `study_data` | ✅ Active | +| 3 | `cleaned_data` | ✅ Active | +| 4 | `table_1a_data` | ✅ Active | +| 5 | `analysis_data` (MICE imputation) | ✅ Active | +| 6 | `table_1b_data` | ✅ Active | +| 7 | `apc_data` | ✅ Active | +| 8 | `apc_model_initiation_men/women`, `apc_model_cessation_men/women` | ✅ Active | +| 9 | `rate_tables` | 🔲 Stub | +| 10 | `validation_results` | 🔲 Stub | + +## Project layout + +A guide for new collaborators. + +### Configuration (`config.yml`) + +`config.yml` controls all environment-specific settings. Set the active profile before running: + +```r +Sys.setenv(R_CONFIG_ACTIVE = "dev") # 10% sample, debug logging +Sys.setenv(R_CONFIG_ACTIVE = "draft") # 5% sample from cchsflow-data release +Sys.setenv(R_CONFIG_ACTIVE = "prod") # Full PUMF sample +# statscan: delegates to config/statscan.yml (gitignored) for RDC paths +``` + +Key sections in `config.yml`: +- **`cchs_cycles`** — 11 PUMF cycles (2001–2022); statscan profile adds 2023 +- **`apc:`** — spline knots, period/cohort constraints, mortality method, projection horizon +- **`sensitivity:`** — documents all prespecified sensitivity analyses with protocol rationale +- **`survey:`** — maps conceptual variable roles to actual CCHS variable names; change these (and the variable worksheets) to adapt the pipeline to a different survey + +### Schemas (`schemas/`) + +LinkML YAML schemas define the data contracts for key pipeline inputs and outputs: + +| Schema | Describes | +|--------|-----------| +| `cshm-variables.yaml` | Study variable dictionary (extends cchsflow `variables.csv`) | +| `cshm-rate-tables.yaml` | APC model output — initiation/cessation probability tables | +| `cshm-cohort.yaml` | Synthetic population used in Stage 9 simulation | + +Schemas are documentation and validation specs, not runtime code. The `role`, `source`, and `purpose` fields in `cshm-variables.yaml` are the CSHM additions to the cchsflow variable convention. + +### Variable worksheets (`worksheets/`) + +Two CSVs define which CCHS variables are loaded at each pipeline stage: + +| File | Purpose | +|------|---------| +| `worksheets/cshm-variables.csv` | Study variable list: `variable`, `role`, `source`, `purpose` | +| `worksheets/cshm-variable-details.csv` | CSHM extension rows for 2019–20 and 2022 cycles not yet in cchsflow v3 | + +The `role` column is comma-separated and controls pipeline behaviour — e.g., `apc-numerator` variables define the event indicator in Stage 7; `imputation-predictor` variables go into MICE. See `schemas/cshm-variables.yaml` for the full role vocabulary. + +`cchsflow`'s `variable_details.csv` (the recoding rules) is loaded separately from `~/github/cchsflow/inst/extdata/` and combined with the CSHM extension rows at pipeline start. + +### R functions (`R/`) + +| File | Stage | Entry point | +|------|-------|-------------| +| `study-data.R` | 2 | `load_study_data()` | +| `data-cleaning.R` | 3 | `clean_study_data()` | +| `descriptive-data.R` | 4, 6 | `get_cshm_desc_data()` | +| `imputation.R` | 5 | `impute_data()` | +| `apc-model.R` | 7–8 | `prepare_apc_data()`, `fit_apc_model()` | +| `variables-sheet-utils.R` | — | Variable role helpers | +| `variable-details-sheet-utils.R` | — | Variable details helpers | + +### `{targets}` workflow + +```r +targets::tar_make() # Run full pipeline +targets::tar_make(apc_data) # Run through a specific target +targets::tar_read(apc_data) # Inspect a target's output +targets::tar_outdated() # See what needs rerunning +targets::tar_visnetwork() # Visualise pipeline DAG +``` + +Changing `config.yml` invalidates all downstream targets. Changing an R function invalidates only targets that call it. + +## Relationship to CISNET shg-rcpp + +The [CISNET Smoking History Generator](https://github.com/NCI-CISNET/shg-rcpp) (`SmokingHistoryGenerator` R package) implements the same APC methodology for the US population. CSHM is the Canadian adaptation. + +CSHM generates individual-level smoking histories directly from the estimated rate tables (Stage 9), following the approach of Manuel et al. (2020) and Holford et al. (2014). Because CCHS PUMF data have an open Statistics Canada licence, PUMF-derived Canadian rate tables can be shared internationally. + +## Setup + +```r +# Restore R environment +renv::restore() + +# Run the pipeline +targets::tar_make() +``` + +See `CONTRIBUTING.md` for the development workflow. Full documentation is in the `docs/` directory and rendered at [GitHub Pages](https://big-life-lab.github.io/cshm-dev/). + +## Licence + +The code in this repository is licensed under the [MIT License](LICENSE). + +## Statistics Canada attribution + +CCHS data used in this project is accessed and adapted in accordance with the +[Statistics Canada Open Licence](https://www.statcan.gc.ca/eng/reference/licence). + +Source: Statistics Canada, Canadian Community Health Survey 2001 to 2022 PUMF, accessed 2025. +Reproduced and distributed on an "as is" basis with the permission of Statistics Canada. + +Adapted from Statistics Canada, Canadian Community Health Surveys 2001 to 2022 PUMF, accessed 2025. +This does not constitute an endorsement by Statistics Canada of this product. + +## Acknowledgements + +- Dr. Ted Holford for the foundational APC methodology +- Statistics Canada for the CCHS data +- The CISNET Lung Working Group for the foundational US Smoking History Generator +- All contributors to the CSHM Consortium diff --git a/_docstyle/field-codes.json b/_docstyle/field-codes.json new file mode 100644 index 0000000..65e2941 --- /dev/null +++ b/_docstyle/field-codes.json @@ -0,0 +1,496 @@ +{ + "documentProperties": { + "custom": [] + }, + "citations": { + "HealthCanada_SmokingMortality_2024": { + "itemData": { + "id": 80521, + "type": "document", + "citation-key": "HealthCanada_SmokingMortality_2024", + "language": "en", + "title": "Smoking and mortality", + "URL": "https://www.canada.ca/en/health-canada/services/health-concerns/tobacco/legislation/tobacco-product-labelling/smoking-mortality.html", + "author": [ + { + "literal": "Health Canada" + } + ], + "issued": { + "date-parts": [["2024"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/BIVEE78X" + ] + }, + "CSUCH_2023": { + "itemData": { + "id": 80520, + "type": "report", + "citation-key": "CanadianSubstanceUseCostsandHarmsScientificWorkingGroup_CanadianSubstanceUse_2023", + "language": "en", + "publisher": "Canadian Institute for Substance Use Research and Canadian Centre on Substance Use and Addiction", + "publisher-place": "Victoria, BC", + "title": "Canadian substance use costs and harms 2007-2020", + "URL": "https://csuch.ca/publications/csuch-report/", + "author": [ + { + "literal": "Canadian Substance Use Costs and Harms Scientific Working Group" + } + ], + "issued": { + "date-parts": [["2023"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/JERACS4C" + ] + }, + "mitra2015": { + "itemData": { + "id": 99901, + "type": "article-journal", + "citation-key": "mitra2015", + "container-title": "Health Reports", + "DOI": "10.25318/82-003-x201500614195-eng", + "ISSN": "0840-6529", + "issue": "6", + "page": "12-20", + "title": "Social determinants of lung cancer incidence in Canada: A 13-year prospective study", + "volume": "26", + "author": [ + {"family": "Mitra", "given": "Dipjyoti"}, + {"family": "Shaw", "given": "Amanda"}, + {"family": "Tjepkema", "given": "Michael"}, + {"family": "Peters", "given": "Paul"} + ], + "issued": { + "date-parts": [["2015", "6"]] + } + } + }, + "hennessy2015": { + "itemData": { + "id": 4042, + "type": "article-journal", + "citation-key": "hennessy2015", + "container-title": "Population Health Metrics", + "DOI": "10.1186/s12963-015-0057-x", + "ISSN": "1478-7954", + "issue": "1", + "page": "24", + "title": "The Population Health Model (POHEM): an overview of rationale, methods and applications", + "volume": "13", + "author": [ + {"family": "Hennessy", "given": "Deirdre A."}, + {"family": "Flanagan", "given": "William M."}, + {"family": "Tanuseputro", "given": "Peter"}, + {"family": "Bennett", "given": "Carol"}, + {"family": "Tuna", "given": "Meltem"}, + {"family": "Kopec", "given": "Jacek"}, + {"family": "Wolfson", "given": "Michael C."}, + {"family": "Manuel", "given": "Douglas G."} + ], + "issued": { + "date-parts": [["2015"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/PVTTRS4W" + ] + }, + "gauvreau2017": { + "itemData": { + "id": 3626, + "type": "article-journal", + "citation-key": "gauvreauOncoSimModelDevelopment2017", + "container-title": "Current Oncology", + "issue": "6", + "page": "401", + "title": "The OncoSim model: development and use for better decision-making in Canadian cancer control", + "volume": "24", + "author": [ + {"family": "Gauvreau", "given": "C. L."}, + {"family": "Fitzgerald", "given": "N. R."}, + {"family": "Memon", "given": "S."}, + {"family": "Flanagan", "given": "W. M."}, + {"family": "Nadeau", "given": "C."}, + {"family": "Asakawa", "given": "K."}, + {"family": "Garner", "given": "R."}, + {"family": "Miller", "given": "A. B."}, + {"family": "Evans", "given": "W. K."}, + {"family": "Popadiuk", "given": "C. M."} + ], + "issued": { + "date-parts": [["2017"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/RHRBI9I6" + ] + }, + "chaiton2021": { + "itemData": { + "id": 80251, + "type": "article-journal", + "citation-key": "Chaiton_F_2021", + "container-title": "Forecasting", + "DOI": "10.3390/forecast3020017", + "ISSN": "2571-9394", + "issue": "2", + "page": "267-275", + "title": "Tobacco endgame simulation modelling: assessing the impact of policy changes on smoking prevalence in 2035", + "volume": "3", + "author": [ + {"family": "Chaiton", "given": "Michael"}, + {"family": "Dubray", "given": "Jolene"}, + {"family": "Guindon", "given": "G. Emmanuel"}, + {"family": "Schwartz", "given": "Robert"} + ], + "issued": { + "date-parts": [["2021", 4, 13]] + } + }, + "uris": [ + "http://zotero.org/groups/5363837/items/7HY84EER" + ] + }, + "beland2002": { + "itemData": { + "id": 7459, + "type": "article-journal", + "citation-key": "belandCanadianCommunityHealth2002", + "container-title": "Health Reports", + "issue": "2", + "page": "9-14", + "title": "Canadian Community Health Survey - Methodological overview", + "volume": "13", + "author": [ + {"family": "Beland", "given": "Y."} + ], + "issued": { + "date-parts": [["2002"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/AJA8XSK2" + ] + }, + "kopasker2023": { + "itemData": { + "id": 47313, + "type": "article-journal", + "citation-key": "Kopasker_TLRH-E_2023", + "container-title": "The Lancet Regional Health - Europe", + "DOI": "10.1016/j.lanepe.2023.100758", + "ISSN": "2666-7762", + "PMID": "37876527", + "PMCID": "PMC10590730", + "title": "Microsimulation as a flexible tool to evaluate policies and their impact on socioeconomic inequalities in health", + "volume": "34", + "author": [ + {"family": "Kopasker", "given": "Daniel"}, + {"family": "Katikireddi", "given": "Srinivasa Vittal"}, + {"family": "Santos", "given": "João Vasco"}, + {"family": "Richiardi", "given": "Matteo"}, + {"family": "Bronka", "given": "Patryk"}, + {"family": "Rostila", "given": "Mikael"}, + {"family": "Cecchini", "given": "Michele"}, + {"family": "Ali", "given": "Shehzad"}, + {"family": "Emmert-Fees", "given": "Karl"}, + {"family": "Bambra", "given": "Clare"}, + {"family": "Hoven", "given": "Hanno"}, + {"family": "Backhaus", "given": "Insa"}, + {"family": "Balaj", "given": "Mirza"}, + {"family": "Eikemo", "given": "Terje Andreas"} + ], + "issued": { + "date-parts": [["2023"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/UV6ASDG2" + ] + }, + "vasquezlavin2022": { + "itemData": { + "id": 80230, + "type": "article-journal", + "citation-key": "[@Vasquez-Lavin_AE_2022]", + "container-title": "Applied Economics", + "DOI": "10.1080/00036846.2021.2019186", + "issue": "34", + "page": "3972-3988", + "title": "Assessing the use of pseudo-panels to estimate the value of statistical life", + "volume": "54", + "author": [ + {"family": "Vasquez-Lavin", "given": "Felipe"}, + {"family": "Bratti", "given": "Luna"}, + {"family": "Orrego", "given": "Sergio"}, + {"family": "Barrientos", "given": "Manuel"} + ], + "issued": { + "date-parts": [["2022"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/IZGGUTPK" + ] + }, + "Holford_AJPM_2014": { + "itemData": { + "id": 2357, + "type": "article-journal", + "citation-key": "Holford_AJPM_2014", + "container-title": "American Journal of Preventive Medicine", + "DOI": "10.1016/j.amepre.2013.10.022", + "issue": "2", + "page": "e31-7", + "title": "Patterns of birth cohort-specific smoking histories, 1965-2009", + "volume": "46", + "author": [ + {"family": "Holford", "given": "T. R."}, + {"family": "Levy", "given": "D. T."}, + {"family": "McKay", "given": "L. A."}, + {"family": "Clarke", "given": "L."}, + {"family": "Racine", "given": "B."}, + {"family": "Meza", "given": "R."}, + {"family": "Land", "given": "S."}, + {"family": "Jeon", "given": "J."}, + {"family": "Feuer", "given": "E. J."} + ], + "issued": { + "date-parts": [["2014"]] + } + } + }, + "Manuel_HR_2020": { + "itemData": { + "id": 2358, + "type": "article-journal", + "citation-key": "Manuel_HR_2020", + "container-title": "Health Reports", + "DOI": "10.25318/82-003-x202001100002-eng", + "ISSN": "0840-6529", + "issue": "11", + "page": "16-31", + "title": "Smoking patterns based on birth-cohort-specific histories from 1965 to 2013, with projections to 2041", + "URL": "https://www150.statcan.gc.ca/n1/pub/82-003-x/2020011/article/00002-eng.htm", + "volume": "31", + "author": [ + {"family": "Manuel", "given": "Douglas G."}, + {"family": "Wilton", "given": "Andrew S."}, + {"family": "Bennett", "given": "Carol"}, + {"family": "Dass", "given": "Rohit"}, + {"family": "Laporte", "given": "Audrey"}, + {"family": "Holford", "given": "Theodore R."} + ], + "issued": { + "date-parts": [["2020"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/BIVEE78X" + ] + }, + "Tam_AJPM_2023": { + "itemData": { + "id": 80522, + "type": "article-journal", + "citation-key": "Tam_AJPM_2023", + "container-title": "American Journal of Preventive Medicine", + "DOI": "10.1016/j.amepre.2022.12.002", + "issue": "4", + "page": "S63-S71", + "title": "Patterns of birth cohort-specific smoking histories in Brazil", + "volume": "64", + "author": [ + {"family": "Tam", "given": "Jamie"}, + {"family": "Jaffri", "given": "Mohammed A."}, + {"family": "Mok", "given": "Yoonseo"}, + {"family": "Jeon", "given": "Jihyoun"}, + {"family": "Szklo", "given": "André S."}, + {"family": "Souza", "given": "Mirian C."}, + {"family": "Holford", "given": "Theodore R."}, + {"family": "Levy", "given": "David T."}, + {"family": "Cao", "given": "Pianpian"}, + {"family": "Sánchez-Romero", "given": "Luz M."}, + {"family": "Meza", "given": "Rafael"} + ], + "issued": { + "date-parts": [["2023"]] + } + } + }, + "gagne2017": { + "itemData": { + "id": 99903, + "type": "article-journal", + "citation-key": "gagne2017", + "container-title": "Canadian Journal of Public Health", + "DOI": "10.17269/CJPH.108.5895", + "ISSN": "0008-4263", + "PMID": "28910259", + "PMCID": "PMC6972049", + "issue": "3", + "page": "e331-e334", + "title": "Estimation of smoking prevalence in Canada: Implications of survey characteristics in the CCHS and CTUMS/CTADS", + "volume": "108", + "author": [ + {"family": "Gagné", "given": "Tara"} + ], + "issued": { + "date-parts": [["2017"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/FZNFHVCK" + ] + }, + "chen2020joinpoint": { + "itemData": { + "id": 99904, + "type": "article-journal", + "citation-key": "chen2020joinpoint", + "container-title": "Journal of Official Statistics", + "DOI": "10.2478/jos-2020-0003", + "PMCID": "PMC7380682", + "issue": "1", + "page": "49-62", + "title": "The Joinpoint-Jump and Joinpoint-Comparability Ratio Model for Trend Analysis with Applications to Coding Changes in Health Statistics", + "volume": "36", + "author": [ + {"family": "Chen", "given": "Huann-Sheng"}, + {"family": "Zeichner", "given": "Samantha"}, + {"family": "Anderson", "given": "Robert N."}, + {"family": "Espey", "given": "Donald K."}, + {"family": "Kim", "given": "Hyune-Ju"}, + {"family": "Feuer", "given": "Eric J."} + ], + "issued": { + "date-parts": [["2020"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/9QEJUJRX" + ] + }, + "opazobretton2022": { + "itemData": { + "id": 99905, + "type": "article-journal", + "citation-key": "opazobretton2022", + "container-title": "Addiction", + "DOI": "10.1111/add.15696", + "ISSN": "0965-2140", + "PMID": "34590368", + "issue": "5", + "page": "1392-1403", + "title": "Understanding long-term trends in smoking in England, 1972–2019: an age-period-cohort approach", + "volume": "117", + "author": [ + {"family": "Opazo Breton", "given": "Magdalena"}, + {"family": "Gillespie", "given": "Duncan"}, + {"family": "Pryce", "given": "Robert"}, + {"family": "Bogdanovica", "given": "Ilze"}, + {"family": "Angus", "given": "Colin"}, + {"family": "Brennan", "given": "Alan"}, + {"family": "Britton", "given": "John"} + ], + "issued": { + "date-parts": [["2022"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/TZ6UPAGW" + ] + }, + "wade2025": { + "itemData": { + "id": 99906, + "type": "article-journal", + "citation-key": "wade2025", + "container-title": "Statistical Methods in Medical Research", + "DOI": "10.1177/09622802241310326", + "ISSN": "0962-2802", + "PMCID": "PMC11951451", + "title": "Using Bayesian evidence synthesis to quantify uncertainty in population trends in smoking behaviour", + "author": [ + {"family": "Wade", "given": "Stephanie"}, + {"family": "Sarich", "given": "Patricia"}, + {"family": "Vaneckova", "given": "Petra"} + ], + "issued": { + "date-parts": [["2025"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/X73KCFT7" + ] + }, + "backinger2008": { + "itemData": { + "id": 99902, + "type": "article-journal", + "citation-key": "backinger2008", + "container-title": "Epidemiologic Perspectives & Innovations", + "DOI": "10.1186/1742-5573-5-8", + "ISSN": "1742-5573", + "PMID": "19055824", + "PMCID": "PMC2627846", + "page": "8", + "title": "Using the National Health Interview Survey to understand and address the impact of tobacco in the United States: past perspectives and future considerations", + "volume": "5", + "author": [ + {"family": "Backinger", "given": "Cathy L."}, + {"family": "Lawrence", "given": "Deirdre"}, + {"family": "Swan", "given": "Judith"}, + {"family": "Winn", "given": "Deborah M."}, + {"family": "Breen", "given": "Nancy"}, + {"family": "Hartman", "given": "Anne"}, + {"family": "Grana", "given": "Rachel"}, + {"family": "Tran", "given": "David"}, + {"family": "Farrell", "given": "Samantha"} + ], + "issued": { + "date-parts": [["2008"]] + } + }, + "uris": [ + "http://zotero.org/users/6858935/items/SKNEJQ5C" + ] + }, + "Meza_J_2021": { + "itemData": { + "id": 80523, + "type": "article-journal", + "citation-key": "Meza_J_2021", + "container-title": "JAMA", + "DOI": "10.1001/jama.2021.1077", + "issue": "10", + "page": "988", + "title": "Evaluation of the benefits and harms of lung cancer screening with low-dose computed tomography: modeling study for the US preventive services task force", + "volume": "325", + "author": [ + {"family": "Meza", "given": "Rafael"}, + {"family": "Jeon", "given": "Jihyoun"}, + {"family": "Toumazis", "given": "Iakovos"}, + {"family": "Ten Haaf", "given": "Kevin"}, + {"family": "Cao", "given": "Pianpian"}, + {"family": "Bastani", "given": "Mehrad"}, + {"family": "Han", "given": "Summer S."}, + {"family": "Blom", "given": "Erik F."}, + {"family": "Jonas", "given": "Daniel E."}, + {"family": "Feuer", "given": "Eric J."}, + {"family": "Plevritis", "given": "Sylvia K."}, + {"family": "De Koning", "given": "Harry J."}, + {"family": "Kong", "given": "Chung Yin"} + ], + "issued": { + "date-parts": [["2021"]] + } + } + } + } +} diff --git a/_docstyle/page-config.json b/_docstyle/page-config.json new file mode 100644 index 0000000..752e345 --- /dev/null +++ b/_docstyle/page-config.json @@ -0,0 +1,75 @@ +{ + "footer": { + "enabled": true, + "first_page": false, + "style": "footer", + "rPr_xml": "<\/w:rPr>", + "left": "DRAFT", + "center": "", + "right": "Page {page} of {pages}" + }, + "header": { + "enabled": true, + "first_page": false, + "style": "header", + "rPr_xml": "<\/w:rPr>", + "left": "CSHM Study Protocol", + "center": "", + "right": "" + }, + "table_styles": { + "table-formal": { + "borders": { + "top": { + "val": "single", + "sz": "8", + "color": "7F7F7F" + }, + "bottom": { + "val": "single", + "sz": "8", + "color": "7F7F7F" + } + }, + "header_shading": "D9D9D9", + "header_bold": false, + "font_size_half_pts": 22 + }, + "table-grid": { + "borders": { + "top": { + "val": "single", + "sz": "8", + "color": "000000" + }, + "bottom": { + "val": "single", + "sz": "8", + "color": "000000" + }, + "left": { + "val": "single", + "sz": "8", + "color": "000000" + }, + "right": { + "val": "single", + "sz": "8", + "color": "000000" + }, + "insideH": { + "val": "single", + "sz": "8", + "color": "000000" + }, + "insideV": { + "val": "single", + "sz": "8", + "color": "000000" + } + }, + "header_bold": true, + "font_size_half_pts": 22 + } + } +} diff --git a/_docstyle/reference.docx b/_docstyle/reference.docx new file mode 100644 index 0000000..49d00a6 Binary files /dev/null and b/_docstyle/reference.docx differ diff --git a/_docstyle/reference.docx.hash b/_docstyle/reference.docx.hash new file mode 100644 index 0000000..7347d0c --- /dev/null +++ b/_docstyle/reference.docx.hash @@ -0,0 +1 @@ +df16fcecdd10278402b00fd6628083a56c8eb6d3d63d2ea55398b08e95ea7787 diff --git a/_extensions/docstyle/_extension.yml b/_extensions/docstyle/_extension.yml new file mode 100644 index 0000000..7c85750 --- /dev/null +++ b/_extensions/docstyle/_extension.yml @@ -0,0 +1,28 @@ +title: docstyle +author: POPCORN Initiative +version: 0.1.0 +quarto-required: ">=1.4.0" +contributes: + formats: + docx: + # Reference document generated by pre-render hook from CSS configuration + reference-doc: _docstyle/reference.docx + # Suppress Quarto's default title block; author-plate.lua renders it instead + title-block-style: none + + # Lua filters applied in order + # page-section injects section breaks for named page styles (landscape, etc.) + # char-style runs at post-quarto to see expanded shortcodes + filters: + - page-section.lua + - toc-field.lua + - table-style.lua + - figure.lua + - list-style.lua + - version-history.lua + - author-plate.lua + - at: post-quarto + path: char-style.lua + - comment-inject.lua + - revisions-inject.lua + - zotero-inject.lua diff --git a/_extensions/docstyle/author-plate.lua b/_extensions/docstyle/author-plate.lua new file mode 100644 index 0000000..76df490 --- /dev/null +++ b/_extensions/docstyle/author-plate.lua @@ -0,0 +1,432 @@ +-- author-plate.lua +-- Pandoc Lua filter that generates a formatted author plate from YAML metadata +-- +-- Usage in QMD: +-- ::: author-plate +-- ::: +-- +-- Configuration in _quarto.yml (under docstyle.author-plate): +-- corresponding-marker: "*" # Symbol for corresponding author +-- equal-marker: "†" # Symbol for equal contributors +-- show-orcid: false # Show ORCID after author name +-- show-email: true # Show corresponding author email +-- affiliation-style: numbered # numbered (superscripts) or inline +-- +-- Author metadata in QMD YAML front matter (Quarto manuscript format): +-- author: +-- - name: +-- given: "First" +-- family: "Last" +-- orcid: "0000-0000-0000-0000" +-- email: "author@example.com" +-- corresponding: true +-- equal-contributor: true +-- affiliations: +-- - ref: inst1 +-- affiliations: +-- - id: inst1 +-- name: "Institution Name" +-- department: "Department" +-- city: "City" +-- region: "Province" +-- country: "Country" + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local FORMAT = "openxml" + +-- Store metadata +local authors = nil +local affiliations = nil +local config = { + corresponding_marker = "*", + equal_marker = "†", + show_orcid = false, + show_email = true, + affiliation_style = "numbered" +} + +-- Unicode superscript digits +local superscripts = { + ["0"] = "⁰", ["1"] = "¹", ["2"] = "²", ["3"] = "³", ["4"] = "⁴", + ["5"] = "⁵", ["6"] = "⁶", ["7"] = "⁷", ["8"] = "⁸", ["9"] = "⁹" +} + +-- Use shared xml_escape from field-code-utils +local xml_escape = fcu.xml_escape + +-- Convert number to superscript string +local function to_superscript(num) + local s = tostring(num) + local result = "" + for i = 1, #s do + local digit = s:sub(i, i) + result = result .. (superscripts[digit] or digit) + end + return result +end + +-- Get author display name from by-author entry +-- Quarto's by-author has: name.literal (Inlines), name.given, name.family +local function get_author_name(author) + -- Try name.literal first (Quarto's normalized format) + if author["name"] and author["name"]["literal"] then + return pandoc.utils.stringify(author["name"]["literal"]) + end + + -- Try given + family + if author["name"] then + local name = author["name"] + local given = name["given"] and pandoc.utils.stringify(name["given"]) or "" + local family = name["family"] and pandoc.utils.stringify(name["family"]) or "" + if given ~= "" and family ~= "" then + return given .. " " .. family + end + return family ~= "" and family or given + end + + -- Fallback: stringify the whole author object + local name_str = pandoc.utils.stringify(author) + if name_str and name_str ~= "" then + return name_str + end + + return "" +end + +-- Build affiliation lookup table from affiliations metadata +-- Works with both raw affiliations and Quarto's by-affiliation format +local function build_affiliation_map(affs) + local map = {} + local ordered = {} + + if not affs then return map, ordered end + + for i, aff in ipairs(affs) do + local id = nil + if aff["id"] then + id = pandoc.utils.stringify(aff["id"]) + end + + local display = "" + local parts = {} + + -- Build display string: Department, Name, City, Region, Country + if aff["department"] then + table.insert(parts, pandoc.utils.stringify(aff["department"])) + end + if aff["name"] then + table.insert(parts, pandoc.utils.stringify(aff["name"])) + end + if aff["city"] then + table.insert(parts, pandoc.utils.stringify(aff["city"])) + end + if aff["region"] then + table.insert(parts, pandoc.utils.stringify(aff["region"])) + end + if aff["country"] then + table.insert(parts, pandoc.utils.stringify(aff["country"])) + end + + display = table.concat(parts, ", ") + + local entry = { + id = id, + number = i, + display = display + } + + if id then + map[id] = entry + end + table.insert(ordered, entry) + end + + return map, ordered +end + +-- Get affiliation numbers for an author +-- In Quarto's by-author, affiliations are resolved objects with id, name, etc. +local function get_author_affiliations(author, aff_map) + local numbers = {} + + if not author["affiliations"] then return numbers end + + for _, aff in ipairs(author["affiliations"]) do + local aff_id = nil + + -- Quarto resolves affiliations, so we get full objects with id + if type(aff) == "table" and aff["id"] then + aff_id = pandoc.utils.stringify(aff["id"]) + elseif type(aff) == "table" and aff["ref"] then + aff_id = pandoc.utils.stringify(aff["ref"]) + end + + if aff_id and aff_map[aff_id] then + table.insert(numbers, aff_map[aff_id].number) + end + end + + return numbers +end + +-- Check if author has attribute (Quarto stores these in attributes sub-object) +local function has_attribute(author, attr) + -- Check in attributes sub-object first (Quarto's normalized location) + if author["attributes"] and author["attributes"][attr] then + local val = author["attributes"][attr] + if type(val) == "boolean" then return val end + local str_val = pandoc.utils.stringify(val) + return str_val == "true" or str_val == "1" + end + + -- Check top-level as fallback + if author[attr] then + local val = author[attr] + if type(val) == "boolean" then return val end + local str_val = pandoc.utils.stringify(val) + return str_val == "true" or str_val == "1" + end + + return false +end + +-- Read configuration from metadata +function Meta(meta) + -- Check whether author-plate is disabled before loading authors. + -- When disabled, docstyle.authors in _quarto.yml is the correct pattern + -- (it avoids Pandoc's native title block without triggering author-plate + -- rendering). Suppress the deprecation warning in that case. + local plate_enabled = true + if meta.docstyle and meta.docstyle["author-plate"] then + local ap = meta.docstyle["author-plate"] + if ap["enabled"] ~= nil then + local val = ap["enabled"] + plate_enabled = (type(val) == "boolean" and val) or + (pandoc.utils.stringify(val) == "true") + end + end + + -- Priority 1: docstyle.authors (avoids Pandoc's native title block) + -- Priority 2: by-author (Quarto's normalized format) + -- Priority 3: author (basic Pandoc format) + if meta.docstyle and meta.docstyle["authors"] then + authors = meta.docstyle["authors"] + if plate_enabled then + io.stderr:write("[author-plate] Warning: docstyle.authors is deprecated. " .. + "Use standard Quarto author: metadata instead. " .. + "See https://quarto.org/docs/journals/authors.html\n") + end + io.stderr:write("[author-plate] Found " .. #authors .. " authors (from docstyle.authors)\n") + elseif meta["by-author"] then + authors = meta["by-author"] + io.stderr:write("[author-plate] Found " .. #authors .. " authors (from by-author)\n") + elseif meta.author then + authors = meta.author + io.stderr:write("[author-plate] Found " .. #authors .. " authors (from author - basic)\n") + end + + -- Get affiliations - priority order mirrors authors + if meta.docstyle and meta.docstyle["affiliations"] then + affiliations = meta.docstyle["affiliations"] + if plate_enabled then + io.stderr:write("[author-plate] Warning: docstyle.affiliations is deprecated. " .. + "Use standard Quarto affiliations: metadata instead.\n") + end + io.stderr:write("[author-plate] Found " .. #affiliations .. " affiliations (from docstyle.affiliations)\n") + elseif meta["by-affiliation"] then + affiliations = meta["by-affiliation"] + io.stderr:write("[author-plate] Found " .. #affiliations .. " affiliations (from by-affiliation)\n") + elseif meta.affiliations then + affiliations = meta.affiliations + io.stderr:write("[author-plate] Found " .. #affiliations .. " affiliations\n") + end + + -- Get config from docstyle.author-plate + if meta.docstyle and meta.docstyle["author-plate"] then + local ap_config = meta.docstyle["author-plate"] + + if ap_config["corresponding-marker"] then + config.corresponding_marker = pandoc.utils.stringify(ap_config["corresponding-marker"]) + end + if ap_config["equal-marker"] then + config.equal_marker = pandoc.utils.stringify(ap_config["equal-marker"]) + end + if ap_config["show-orcid"] ~= nil then + local val = ap_config["show-orcid"] + config.show_orcid = (type(val) == "boolean" and val) or (pandoc.utils.stringify(val) == "true") + end + if ap_config["show-email"] ~= nil then + local val = ap_config["show-email"] + config.show_email = (type(val) == "boolean" and val) or (pandoc.utils.stringify(val) == "true") + end + if ap_config["affiliation-style"] then + config.affiliation_style = pandoc.utils.stringify(ap_config["affiliation-style"]) + end + end + + return nil +end + +-- Build the author plate XML +local function build_author_plate_xml() + if not authors or #authors == 0 then + return nil + end + + local aff_map, aff_ordered = build_affiliation_map(affiliations) + local blocks = {} + + -- Build author line with superscript affiliations + local author_runs = {} + local corresponding_email = nil + local has_equal_contributors = false + + for i, author in ipairs(authors) do + local name = get_author_name(author) + local aff_nums = get_author_affiliations(author, aff_map) + local is_corresponding = has_attribute(author, "corresponding") + local is_equal = has_attribute(author, "equal-contributor") + + if is_equal then has_equal_contributors = true end + + -- Get email for corresponding author + if is_corresponding and author.email then + corresponding_email = pandoc.utils.stringify(author.email) + end + + -- Build superscript string + local superscript_parts = {} + for _, num in ipairs(aff_nums) do + table.insert(superscript_parts, to_superscript(num)) + end + if is_corresponding then + table.insert(superscript_parts, config.corresponding_marker) + end + if is_equal then + table.insert(superscript_parts, config.equal_marker) + end + local superscript_str = table.concat(superscript_parts, ",") + + -- Add ORCID if configured + local orcid_str = "" + if config.show_orcid and author.orcid then + orcid_str = " " .. pandoc.utils.stringify(author.orcid) + end + + -- Build run XML for this author + local author_xml = '' .. xml_escape(name) .. '' + + -- Add superscript + if superscript_str ~= "" then + author_xml = author_xml .. + '' .. + '' .. xml_escape(superscript_str) .. '' + end + + -- Add ORCID + if orcid_str ~= "" then + author_xml = author_xml .. '' .. xml_escape(orcid_str) .. '' + end + + -- Add separator (comma) unless last author + if i < #authors then + author_xml = author_xml .. ', ' + end + + table.insert(author_runs, author_xml) + end + + -- Author paragraph (centered, Author style) + local author_para = '' .. + '' .. + table.concat(author_runs) .. + '' + table.insert(blocks, author_para) + + -- Empty paragraph for spacing + table.insert(blocks, '') + + -- Affiliation lines (using Affiliation style) + for _, aff in ipairs(aff_ordered) do + local aff_line = to_superscript(aff.number) .. " " .. aff.display + local aff_para = '' .. + '' .. + '' .. xml_escape(aff_line) .. '' .. + '' + table.insert(blocks, aff_para) + end + + -- Empty paragraph for spacing before footnotes + table.insert(blocks, '') + + -- Corresponding author line (using Affiliation style for consistency) + if config.show_email and corresponding_email then + local corr_line = config.corresponding_marker .. "Corresponding author: " .. corresponding_email + local corr_para = '' .. + '' .. + '' .. xml_escape(corr_line) .. '' .. + '' + table.insert(blocks, corr_para) + end + + -- Equal contributors line (using Affiliation style for consistency) + if has_equal_contributors then + local equal_line = config.equal_marker .. "These authors contributed equally to this work" + local equal_para = '' .. + '' .. + '' .. xml_escape(equal_line) .. '' .. + '' + table.insert(blocks, equal_para) + end + + return table.concat(blocks) +end + +-- Process Div elements looking for .author-plate class +function Div(div) + -- Check if this div has the "author-plate" class + if not div.classes:includes("author-plate") then + return nil + end + + -- Only process for docx output + if FORMAT ~= "openxml" then + io.stderr:write("[author-plate] Skipping (not docx output)\n") + return nil + end + + if not authors or #authors == 0 then + io.stderr:write("[author-plate] No author metadata found\n") + return {} -- Remove the div entirely + end + + io.stderr:write("[author-plate] Generating author plate with " .. #authors .. " authors\n") + + -- Build the author plate XML + local plate_xml = build_author_plate_xml() + if not plate_xml then + return {} + end + + -- Wrap in ADDIN DOCSTYLE field code (using shared utility) + return { + pandoc.RawBlock("openxml", fcu.build_div_field_start("author-plate")), + pandoc.RawBlock("openxml", plate_xml), + pandoc.RawBlock("openxml", fcu.build_block_field_end()) + } +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +return { + { Meta = Meta }, + { Div = Div } +} diff --git a/_extensions/docstyle/char-style.lua b/_extensions/docstyle/char-style.lua new file mode 100644 index 0000000..07c36a8 --- /dev/null +++ b/_extensions/docstyle/char-style.lua @@ -0,0 +1,172 @@ +-- char-style.lua +-- Pandoc Lua filter that converts spans with style classes to Word character styles +-- +-- Usage in QMD: +-- Date: [{{< meta version-summary.date >}}]{.date} -- Shortcode with styling +-- Date: []{.date} -- Auto-populated from metadata +-- Custom: [my text]{.date} -- Explicit content +-- +-- All three syntaxes work. Empty spans auto-populate from version-summary metadata. +-- Shortcode syntax is preferred as it's explicit and works with any metadata field. +-- +-- This applies w:rStyle to the run, creating a character-level style in Word. +-- The style must exist in reference.docx (generated from CSS via docstyle). +-- +-- Round-trip support: Each styled span is wrapped in an ADDIN DOCSTYLE field code +-- that carries the original QMD source as JSON metadata. During harvest, the field +-- code's instrText is parsed to restore the exact QMD source (e.g., shortcodes). +-- See development/spec-round-trip-mechanism.md for the full specification. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Metadata values for auto-population (set in Meta filter) +local meta_values = { + date = nil, + version = nil +} + +-- Get style ID for a class from schema, with fallback +local function get_style_id(class) + local class_def = fcu.get_char_class(class) + if class_def and class_def.word_style then + return class_def.word_style + end + -- Fallback for classes not in schema + local fallback = { + date = "Date", + version = "Version", + author = "Author", + affiliation = "Affiliation" + } + return fallback[class] +end + +-- List of supported style classes (for iteration) +local supported_classes = {"date", "version", "author", "affiliation"} + +-- Process Span elements with character style classes +function Span(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Check if this span has any of our style classes + local matched_class = nil + local style_id = nil + for _, class in ipairs(supported_classes) do + if el.classes:includes(class) then + matched_class = class + style_id = get_style_id(class) + break + end + end + + if not style_id then + return nil + end + + -- Get the text content + local text = fcu.inlines_to_text(el.content) + + -- Auto-populate empty spans from metadata + if text == "" or text == nil then + if matched_class and meta_values[matched_class] then + text = meta_values[matched_class] + debug("[char-style] Auto-populated '" .. style_id .. "' from metadata: " .. text .. "\n") + else + debug("[char-style] Warning: Empty span with style '" .. style_id .. "' and no metadata value\n") + return nil -- Return nil to keep span as-is if we can't populate it + end + else + debug("[char-style] Applying style '" .. style_id .. "' to: " .. text .. "\n") + end + + -- Build field code XML using shared utility + local field_xml = fcu.build_char_field_code(style_id, text, matched_class) + debug("[char-style] Emitting field code for '" .. matched_class .. "'\n") + + return pandoc.RawInline('openxml', field_xml) +end + +-- Process Div elements with .center class for paragraph alignment +function Div(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Check if this div has the center class + if not el.classes:includes('center') then + return nil + end + + debug("[char-style] Applying center alignment to div\n") + + -- For each paragraph in the div, add custom-style="Centered" attribute + -- This requires a "Centered" style in reference.docx with center alignment + -- Alternatively, we can directly inject the alignment via RawBlock + local result = {} + for _, block in ipairs(el.content) do + if block.t == "Para" then + -- Convert paragraph content to runs, wrapped in a centered paragraph + local runs = {} + for _, inline in ipairs(block.content) do + -- If it's already a RawInline openxml (from Span filter), keep it + if inline.t == "RawInline" and inline.format == "openxml" then + table.insert(runs, inline.text) + elseif inline.t == "Str" then + table.insert(runs, '' .. fcu.xml_escape(inline.text) .. '') + elseif inline.t == "Space" then + table.insert(runs, ' ') + end + end + + local para_xml = '' .. table.concat(runs) .. '' + table.insert(result, pandoc.RawBlock('openxml', para_xml)) + else + -- Keep other blocks as-is + table.insert(result, block) + end + end + + return result +end + +-- Extract metadata values for auto-population +function Meta(meta) + if FORMAT == "docx" or FORMAT == "openxml" then + debug("[char-style] Filter active for Word output\n") + end + + -- Extract version-summary.date and version-summary.version + if meta["version-summary"] then + local vs = meta["version-summary"] + if vs.date then + meta_values.date = pandoc.utils.stringify(vs.date) + debug("[char-style] Found version-summary.date: " .. meta_values.date .. "\n") + end + if vs.version then + meta_values.version = pandoc.utils.stringify(vs.version) + debug("[char-style] Found version-summary.version: " .. meta_values.version .. "\n") + end + end + + return nil +end + +-- Filter order: Meta first (to extract values), then Span (character styles), then Div (centering) +return { + { Meta = Meta }, + { Span = Span }, + { Div = Div } +} diff --git a/_extensions/docstyle/comment-inject.lua b/_extensions/docstyle/comment-inject.lua new file mode 100644 index 0000000..403770d --- /dev/null +++ b/_extensions/docstyle/comment-inject.lua @@ -0,0 +1,162 @@ +-- comment-inject.lua +-- Pandoc Lua filter that converts comment markers to OpenXML comment markers +-- +-- Supported formats (HTML comments only): +-- 1. Range comment: text +-- 2. Point comment: +-- +-- The HTML comment format is robust because it can span complex structures +-- like tracked changes, multiple paragraphs, and nested formatting without +-- breaking Pandoc's parsing. +-- +-- Fallback behavior: +-- - Start marker without end: Converts to point comment at document end +-- - End marker without start: Ignored (orphan end markers are harmless) +-- +-- After rendering, R post-processing (inject_comments) adds the actual +-- comments.xml file to the DOCX container. + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Load shared field code utilities +local fcu = require("field-code-utils") +local xml_escape = fcu.xml_escape +local parse_comment_marker = fcu.parse_comment_marker + +-- Track comment states for fallback handling: +-- "started" = saw start marker, waiting for end +-- "completed" = saw both start and end (proper range comment) +-- "point" = point comment (no range, just a marker) +local comment_states = {} + +-- Generate OpenXML for comment range start +local function comment_start_xml(id) + return '' +end + +-- Generate OpenXML for comment range end (includes the clickable reference marker) +local function comment_end_xml(id) + return '' .. + '' +end + +-- Generate OpenXML for point comment (start + end + reference together) +local function comment_point_xml(id) + return '' .. + '' .. + '' +end + +-- Process RawInline elements for HTML comment markers +function RawInline(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Only process HTML raw content (where our markers live) + if el.format ~= "html" then + return nil + end + + local id, marker_type = parse_comment_marker(el.text) + if not id then + return nil -- Not a comment marker, leave as-is + end + + if marker_type == "point" then + -- Simple point comment - emit complete marker + debug("[comment-inject] Found point comment id=" .. id .. "\n") + comment_states[id] = "point" + return pandoc.RawInline('openxml', comment_point_xml(id)) + + elseif marker_type == "start" then + debug("[comment-inject] Found comment start marker id=" .. id .. "\n") + comment_states[id] = "started" + -- Emit only the start marker; end will come later (or we'll close at doc end) + return pandoc.RawInline('openxml', comment_start_xml(id)) + + elseif marker_type == "end" then + if comment_states[id] == "started" then + -- Normal case: matching end for a start we saw + debug("[comment-inject] Found comment end marker id=" .. id .. "\n") + comment_states[id] = "completed" + return pandoc.RawInline('openxml', comment_end_xml(id)) + elseif comment_states[id] == "completed" then + -- Duplicate end marker - ignore + debug("[comment-inject] Warning: duplicate end marker id=" .. id .. " (ignoring)\n") + return pandoc.RawInline('openxml', '') -- Empty, effectively removes it + else + -- Orphan end marker (no matching start) - ignore + debug("[comment-inject] Warning: orphan end marker id=" .. id .. " (no matching start, ignoring)\n") + return pandoc.RawInline('openxml', '') -- Empty, effectively removes it + end + end + + return nil +end + +-- Handle orphan start markers at document end +function Pandoc(doc) + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + debug("[comment-inject] Filter active for Word output\n") + + -- Check for orphan start markers (started but never completed) + -- These need to be closed at the end of the document + local orphan_ids = {} + for id, state in pairs(comment_states) do + if state == "started" then + table.insert(orphan_ids, id) + end + end + + if #orphan_ids == 0 then + return nil -- No orphans, document unchanged + end + + -- We have orphan start markers - inject end markers at end of document + debug("[comment-inject] Warning: " .. #orphan_ids .. " orphan start marker(s) found, closing at document end\n") + for _, id in ipairs(orphan_ids) do + debug("[comment-inject] - Orphan comment id=" .. id .. "\n") + comment_states[id] = "point" + end + + -- Inject the end+reference markers at the very end of the document + if #doc.blocks > 0 then + local last_block = doc.blocks[#doc.blocks] + + -- Create the closing XML for all orphan comments + local closing_inlines = {} + for _, id in ipairs(orphan_ids) do + table.insert(closing_inlines, pandoc.RawInline('openxml', comment_end_xml(id))) + end + + -- Append to last block based on its type + if last_block.t == "Para" or last_block.t == "Plain" then + for _, inline in ipairs(closing_inlines) do + table.insert(last_block.content, inline) + end + else + -- For other block types, add a new Plain block with the closures + table.insert(doc.blocks, pandoc.Plain(closing_inlines)) + end + end + + return doc +end + +return { + -- First pass: process inline elements (populates comment_states) + { RawInline = RawInline }, + -- Second pass: handle orphan comments at document level + { Pandoc = Pandoc } +} diff --git a/_extensions/docstyle/default.css b/_extensions/docstyle/default.css new file mode 100644 index 0000000..320ba97 --- /dev/null +++ b/_extensions/docstyle/default.css @@ -0,0 +1,339 @@ +/* docstyle Default Styles + * CIHR-compliant formatting for Canadian health research documents + * + * Based on CIHR Application Formatting Requirements: + * https://cihr-irsc.gc.ca/e/29300.html + * + * Requirements: + * - Font: minimum 12pt Times New Roman, black (can be larger) + * - Margins: 2cm (0.79in) minimum, strictly enforced + * - Line spacing: single minimum + * - Page size: letter (8.5" x 11") + */ + +/* ========================================================================== + TYPOGRAPHY - CIHR Compliant + ========================================================================== */ + +/* Body text - 12pt Times New Roman, single spaced */ +p, body { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; + line-height: 1; +} + +/* Headings - Times New Roman, bold, same size hierarchy */ +h1 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +h2 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +h3 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + font-style: italic; + color: #000000; +} + +h4 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + font-style: italic; + color: #000000; +} + +h5 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + text-decoration: underline; + color: #000000; +} + +/* Links - blue for visibility */ +a { + color: #0000EE; +} + +/* ========================================================================== + DOCUMENT STRUCTURE + ========================================================================== */ + +/* Title - bold, slightly larger */ +.title { + font-family: "Times New Roman", "Times", serif; + font-size: 14pt; + font-weight: bold; + color: #000000; +} + +/* Subtitle */ +.subtitle { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; +} + +/* Author and affiliation blocks */ +.author { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + text-align: center; +} + +.affiliation { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-style: italic; + text-align: center; + color: #000000; +} + +/* Date and version display */ +.date { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + text-align: center; +} + +.version { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + text-align: center; +} + +/* Header and footer */ +.header { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + color: #000000; +} + +.footer { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + color: #000000; +} + +/* ========================================================================== + TABLE OF CONTENTS + ========================================================================== */ + +.toc-heading { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +.toc-1 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; + line-height: 1; +} + +.toc-2 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; + margin-left: 12pt; + line-height: 1; +} + +.toc-3 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; + margin-left: 24pt; + line-height: 1; +} + +/* ========================================================================== + BODY TEXT VARIANTS + Pandoc assigns content to BodyText/FirstParagraph/Compact — not Normal. + These styles inherit from Normal via basedOn chains in reference.docx. + Use these selectors only when you need to override the inherited values. + ========================================================================== */ + +/* .body-text — inherits from Normal; override only if body paragraphs + need different formatting than headings or other Normal-based styles */ +/* .body-text { } */ + +/* .first-paragraph — first paragraph after a heading (basedOn BodyText) */ +/* .first-paragraph { } */ + +/* .compact — tight list paragraphs (basedOn BodyText) */ +/* .compact { margin-bottom: 0; } */ + +/* blockquote — block quotations (basedOn BodyText) */ +/* blockquote { margin-left: 0.5in; margin-right: 0.5in; } */ + +/* ========================================================================== + CAPTIONS AND FIGURES + ========================================================================== */ + +caption, .caption { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + color: #000000; +} + +.table-caption { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-weight: bold; + color: #000000; +} + +.image-caption { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-style: italic; + color: #000000; +} + +/* .figure — image container paragraph */ +/* .figure { text-align: center; } */ + +/* .captioned-figure — image with caption, keeps image and caption together */ +/* .captioned-figure { text-align: center; } */ + +/* ========================================================================== + BIBLIOGRAPHY + ========================================================================== */ + +.bibliography { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + color: #000000; + text-indent: -0.5in; + padding-left: 0.5in; +} + +/* ========================================================================== + DEFINITION LISTS + ========================================================================== */ + +dt { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +dd { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + color: #000000; + margin-left: 0.25in; +} + +/* ========================================================================== + FOOTNOTES + ========================================================================== */ + +.footnote-text { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-weight: normal; + color: #000000; + line-height: 1; +} + +/* ========================================================================== + LISTS + ========================================================================== */ + +ol { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; +} + +ul { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; +} + +/* ========================================================================== + TABLES + ========================================================================== */ + +/* Formal table - top/bottom borders, shaded header */ +.table-formal { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + border-top: 1pt solid #000000; + border-bottom: 1pt solid #000000; + border-left: none; + border-right: none; +} + +.table-formal th { + background-color: #D9D9D9; + font-weight: bold; + padding: 4pt; +} + +.table-formal td { + padding: 4pt; +} + +/* Grid table - all borders */ +.table-grid { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + border: 1pt solid #000000; + border-collapse: collapse; +} + +.table-grid th, +.table-grid td { + border: 1pt solid #000000; + padding: 4pt; +} + +.table-grid th { + font-weight: bold; +} + +/* ========================================================================== + REVISION STYLES (Track Changes Preview) + ========================================================================== */ + +.del { + background-color: #ffebe9; + color: #6a737d; + text-decoration: line-through; +} + +.ins { + background-color: #e6ffec; + text-decoration: underline; +} + +/* ========================================================================== + COMMENT STYLES (Preview) + ========================================================================== */ + +.comment { + background-color: #fff3cd; + border-bottom: 2px solid #ffc107; +} diff --git a/_extensions/docstyle/field-code-utils.lua b/_extensions/docstyle/field-code-utils.lua new file mode 100644 index 0000000..48a131d --- /dev/null +++ b/_extensions/docstyle/field-code-utils.lua @@ -0,0 +1,682 @@ +-- field-code-utils.lua +-- Shared utilities for ADDIN DOCSTYLE field code generation +-- +-- This module provides: +-- 1. Schema loading from inst/schema/docstyle-field-codes.json +-- 2. XML and JSON escaping functions +-- 3. Field code XML builders for all types (char, div, list, section) +-- +-- All Lua filters should require this module instead of reimplementing +-- these functions locally. + +local M = {} + +-- Current schema version (must match R's DOCSTYLE_SCHEMA_VERSION) +-- v2: R-First Assembly - Lua emits text markers, R builds sectPr +M.SCHEMA_VERSION = 2 + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function log_debug(msg) + if DEBUG then + io.stderr:write("[field-code-utils] " .. msg .. "\n") + end +end + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Schema Loading +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Cached schema (loaded once per filter run) +local cached_schema = nil + +-- Find the schema file path relative to the extension directory +local function find_schema_path() + -- Try multiple locations: + -- 1. Installed R package: system.file("schema/docstyle-field-codes.json", package = "docstyle") + -- 2. Development: relative to _extensions/docstyle/ + -- 3. Quarto extension: QUARTO_PROJECT_DIR/_extensions/docstyle/../../inst/schema/ + + local paths_to_try = {} + + -- Get the directory of this Lua file + local source = debug.getinfo(1, "S").source + if source:sub(1, 1) == "@" then + local lua_dir = source:sub(2):match("(.*/)") + if lua_dir then + -- Development layout: _extensions/docstyle/ -> ../../inst/schema/ + table.insert(paths_to_try, lua_dir .. "../../inst/schema/docstyle-field-codes.json") + -- Installed extension layout (schema copied to extension dir) + table.insert(paths_to_try, lua_dir .. "docstyle-field-codes.json") + end + end + + -- Try QUARTO_PROJECT_DIR + local project_dir = os.getenv("QUARTO_PROJECT_DIR") + if project_dir then + table.insert(paths_to_try, project_dir .. "/_extensions/docstyle/docstyle-field-codes.json") + table.insert(paths_to_try, project_dir .. "/inst/schema/docstyle-field-codes.json") + end + + for _, path in ipairs(paths_to_try) do + local f = io.open(path, "r") + if f then + f:close() + log_debug("Found schema at: " .. path) + return path + end + end + + return nil +end + +-- Simple JSON parser for our schema (handles objects, arrays, strings, numbers, booleans) +-- This avoids requiring external JSON libraries in Pandoc Lua filters +local function parse_json(str) + local pos = 1 + local function skip_whitespace() + pos = str:match("^%s*()", pos) + end + + local function parse_value() + skip_whitespace() + local c = str:sub(pos, pos) + + if c == '"' then + -- String + local start = pos + 1 + pos = pos + 1 + while pos <= #str do + local ch = str:sub(pos, pos) + if ch == '"' then + local result = str:sub(start, pos - 1) + pos = pos + 1 + -- Unescape basic sequences + result = result:gsub("\\n", "\n"):gsub("\\t", "\t"):gsub('\\"', '"'):gsub("\\\\", "\\") + return result + elseif ch == "\\" then + pos = pos + 2 + else + pos = pos + 1 + end + end + elseif c == "{" then + -- Object + pos = pos + 1 + local obj = {} + skip_whitespace() + if str:sub(pos, pos) == "}" then + pos = pos + 1 + return obj + end + while true do + skip_whitespace() + local key = parse_value() + skip_whitespace() + pos = pos + 1 -- skip ':' + local value = parse_value() + obj[key] = value + skip_whitespace() + local sep = str:sub(pos, pos) + pos = pos + 1 + if sep == "}" then break end + end + return obj + elseif c == "[" then + -- Array + pos = pos + 1 + local arr = {} + skip_whitespace() + if str:sub(pos, pos) == "]" then + pos = pos + 1 + return arr + end + while true do + table.insert(arr, parse_value()) + skip_whitespace() + local sep = str:sub(pos, pos) + pos = pos + 1 + if sep == "]" then break end + end + return arr + elseif str:sub(pos, pos + 3) == "true" then + pos = pos + 4 + return true + elseif str:sub(pos, pos + 4) == "false" then + pos = pos + 5 + return false + elseif str:sub(pos, pos + 3) == "null" then + pos = pos + 4 + return nil + else + -- Number + local num_str = str:match("^-?%d+%.?%d*", pos) + if num_str then + pos = pos + #num_str + return tonumber(num_str) + end + end + error("JSON parse error at position " .. pos .. ": " .. str:sub(pos, pos + 20)) + end + + return parse_value() +end + +-- Load and cache the schema +function M.load_schema() + if cached_schema then + return cached_schema + end + + local schema_path = find_schema_path() + if not schema_path then + log_debug("Schema file not found, using built-in defaults") + -- Return minimal built-in schema as fallback + cached_schema = { + schema_version = M.SCHEMA_VERSION, + char_classes = {}, + div_types = {}, + list_classes = {} + } + return cached_schema + end + + local f = io.open(schema_path, "r") + if not f then + log_debug("Could not open schema file: " .. schema_path) + return nil + end + + local content = f:read("*a") + f:close() + + local ok, schema = pcall(parse_json, content) + if not ok then + log_debug("Failed to parse schema JSON: " .. tostring(schema)) + return nil + end + + cached_schema = schema + log_debug("Loaded schema version " .. (schema.schema_version or "unknown")) + return cached_schema +end + +-- Get char class definition from schema +function M.get_char_class(class) + local schema = M.load_schema() + if schema and schema.char_classes then + return schema.char_classes[class] + end + return nil +end + +-- Get div type definition from schema +function M.get_div_type(name) + local schema = M.load_schema() + if schema and schema.div_types then + return schema.div_types[name] + end + return nil +end + +-- Get list class definition from schema +function M.get_list_class(class) + local schema = M.load_schema() + if schema and schema.list_classes then + return schema.list_classes[class] + end + return nil +end + +-- Get table class definition from schema +function M.get_table_class(class) + local schema = M.load_schema() + if schema and schema.table_classes then + return schema.table_classes[class] + end + return nil +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Escaping Functions +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Escape XML special characters for use in OOXML content +function M.xml_escape(text) + if not text then return "" end + text = text:gsub("&", "&") + text = text:gsub("<", "<") + text = text:gsub(">", ">") + text = text:gsub('"', """) + text = text:gsub("'", "'") + return text +end + +-- Escape a string for use inside a JSON string value +-- Handles backslash and double-quote +function M.json_escape(text) + if not text then return "" end + text = text:gsub('\\', '\\\\') + text = text:gsub('"', '\\"') + return text +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Field Code Builders +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Build JSON payload for field code instrText +-- @param payload_type: "char", "div", "list", or "section" +-- @param fields: table of additional fields to include +-- @return JSON string (not XML-escaped) +function M.build_payload_json(payload_type, fields) + local parts = {} + table.insert(parts, '"type":"' .. M.json_escape(payload_type) .. '"') + table.insert(parts, '"version":' .. M.SCHEMA_VERSION) + + for key, value in pairs(fields) do + if type(value) == "string" then + table.insert(parts, '"' .. key .. '":"' .. M.json_escape(value) .. '"') + elseif type(value) == "number" then + table.insert(parts, '"' .. key .. '":' .. value) + elseif type(value) == "boolean" then + table.insert(parts, '"' .. key .. '":' .. (value and "true" or "false")) + end + end + + return "{" .. table.concat(parts, ",") .. "}" +end + +-- Build the QMD source string for a char class +-- Uses source_template from schema if available, otherwise builds explicit form +function M.build_char_source(class, text) + local class_def = M.get_char_class(class) + if class_def and class_def.source_template then + return class_def.source_template + else + return "[" .. text .. "]{." .. class .. "}" + end +end + +-- Build complete ADDIN DOCSTYLE field code XML for char type +-- @param style_id: Word style ID (e.g., "Date") +-- @param text: Display text +-- @param class: CSS class name (e.g., "date") +-- @return OOXML string +function M.build_char_field_code(style_id, text, class) + local source = M.build_char_source(class, text) + local json = M.build_payload_json("char", { + class = class, + source = source + }) + local json_xml = M.xml_escape(json) + + local display_run = '' .. + '' .. + '' .. M.xml_escape(text) .. '' .. + '' + + return '' .. + ' ADDIN DOCSTYLE ' .. json_xml .. ' ' .. + '' .. + display_run .. + '' +end + +-- Build field code start marker for block types (div, list, section) +-- @param payload_type: "div", "list", or "section" +-- @param fields: payload fields (e.g., {name = "toc"} or {class = "list-alpha"}) +-- @return OOXML paragraph string +function M.build_block_field_start(payload_type, fields) + local json = M.build_payload_json(payload_type, fields) + local json_xml = M.xml_escape(json) + + return '' .. + ' ADDIN DOCSTYLE ' .. json_xml .. ' ' .. + '' +end + +-- Build field code end marker for block types +-- @return OOXML paragraph string +function M.build_block_field_end() + return '' +end + +-- Convenience: Build div field code start +function M.build_div_field_start(name) + return M.build_block_field_start("div", {name = name}) +end + +-- Convenience: Build list field code start +function M.build_list_field_start(class, start_num) + local fields = {class = class} + if start_num and start_num > 1 then + fields.start = start_num + end + return M.build_block_field_start("list", fields) +end + +-- Convenience: Build table field code start +-- @param class: table class (e.g., "table-formal") +-- @param attrs: optional attributes table (widths, width, font-size, etc.) +function M.build_table_field_start(class, attrs) + local fields = {class = class} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + return M.build_block_field_start("table", fields) +end + +-- Convenience: Build figure field code start +-- @param id: QMD figure ID (e.g. "fig-consort-flow") +-- @param attrs: optional attributes table (docpr_id, width, align, wrap, original_path) +function M.build_figure_field_start(id, attrs) + local fields = {id = id} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + return M.build_block_field_start("figure", fields) +end + +-- Convenience: Build section field code start +function M.build_section_field_start(class, attrs) + local fields = {class = class} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + return M.build_block_field_start("section", fields) +end + +-- Build complete section field code in a SINGLE paragraph for R-First Assembly. +-- This prevents the 3-line gap by emitting BEGIN/instrText/SEPARATE/marker/END +-- all in one paragraph rather than three separate paragraphs. +-- @param class: section class (e.g., "section-body") +-- @param attrs: optional attributes table +-- @param marker_text: the DOCSTYLE_SECTION::... marker text +-- @return OOXML paragraph string +function M.build_section_marker_para(class, attrs, marker_text) + local fields = {class = class} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + local json = M.build_payload_json("section", fields) + local json_xml = M.xml_escape(json) + local marker_xml = M.xml_escape(marker_text) + + return '' .. + '' .. + ' ADDIN DOCSTYLE ' .. json_xml .. ' ' .. + '' .. + '' .. marker_xml .. '' .. + '' +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Helper Functions +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Convert inline content to plain text (recursively handles nested spans) +function M.inlines_to_text(inlines) + local text = "" + for _, inline in ipairs(inlines) do + if inline.t == "Str" then + text = text .. inline.text + elseif inline.t == "Space" then + text = text .. " " + elseif inline.t == "SoftBreak" then + text = text .. " " + elseif inline.t == "Span" then + text = text .. M.inlines_to_text(inline.content) + end + end + return text +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Page Config Loading (shared across filters) +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Cached page config (loaded once, shared by all filters in same render) +local cached_page_config = nil + +--- Load page-config.json from _docstyle/ directory. +-- Returns the parsed config table, or nil if not found. +-- Result is cached so multiple filters reading the same file pay I/O once. +function M.load_page_config() + if cached_page_config then return cached_page_config end + + local config_paths = { + "_docstyle/page-config.json", + "./_docstyle/page-config.json" + } + + for _, path in ipairs(config_paths) do + local file = io.open(path, "r") + if file then + local content = file:read("*a") + file:close() + local ok, config = pcall(function() + return pandoc.json.decode(content) + end) + if ok and config then + log_debug("Loaded page config from " .. path) + cached_page_config = config + return config + end + end + end + + log_debug("No page-config.json found") + return nil +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Inline Renderer: Pandoc AST → OOXML runs +-- ═══════════════════════════════════════════════════════════════════════════ +-- +-- Converts Pandoc inline elements to OOXML run XML strings. +-- Handles the pre-conversion AST forms present when table-style.lua runs +-- (before char-style.lua and comment-inject.lua in the filter chain). +-- +-- base_rPr_parts: array of XML fragments to include in every +-- e.g., {"", '', ''} + +-- Build ... from an array of parts, or "" if empty +local function build_rPr(parts) + if #parts == 0 then return "" end + return "" .. table.concat(parts) .. "" +end + +-- Build a single with given rPr parts and text +local function build_text_run(rPr_parts, text) + return "" .. build_rPr(rPr_parts) .. + '' .. M.xml_escape(text) .. "" +end + +-- Char-style class → Word style ID (via schema, with minimal fallback) +local char_style_fallback = { + date = "Date", version = "Version", author = "Author", + affiliation = "Affiliation", sc = "SmallCaps" +} +local function get_char_style_id(class) + local def = M.get_char_class(class) + if def and def.word_style then return def.word_style end + return char_style_fallback[class] +end + +-- Parse comment marker from HTML text +-- Returns id and type ("start", "end", "point"), or nil +-- Exported as M.parse_comment_marker for use by comment-inject.lua +local function parse_comment_marker(text) + if not text then return nil, nil end + local start_id = text:match('') + if start_id then return start_id, "start" end + local end_id = text:match('') + if end_id then return end_id, "end" end + local point_id = text:match('') + if point_id then return point_id, "point" end + return nil, nil +end + +-- Recurse into inline content with an extra rPr fragment appended +-- Returns array of XML strings +local function recurse_with_rPr(content, rPr_parts, extra_rPr) + local new_rPr = {} + for _, p in ipairs(rPr_parts) do table.insert(new_rPr, p) end + if type(extra_rPr) == "table" then + for _, e in ipairs(extra_rPr) do table.insert(new_rPr, e) end + else + table.insert(new_rPr, extra_rPr) + end + local results = {} + for _, child in ipairs(content) do + for _, xml in ipairs(render_inline(child, new_rPr)) do + table.insert(results, xml) + end + end + return results +end + +-- Render a single Pandoc inline element to OOXML run(s) +-- Returns array of XML strings +local function render_inline(inline, rPr_parts) + local results = {} + + if inline.t == "Str" then + table.insert(results, build_text_run(rPr_parts, inline.text)) + + elseif inline.t == "Space" or inline.t == "SoftBreak" then + table.insert(results, build_text_run(rPr_parts, " ")) + + elseif inline.t == "Strong" then + return recurse_with_rPr(inline.content, rPr_parts, "") + + elseif inline.t == "Emph" then + return recurse_with_rPr(inline.content, rPr_parts, "") + + elseif inline.t == "Strikeout" then + return recurse_with_rPr(inline.content, rPr_parts, "") + + elseif inline.t == "Superscript" then + return recurse_with_rPr(inline.content, rPr_parts, '') + + elseif inline.t == "Subscript" then + return recurse_with_rPr(inline.content, rPr_parts, '') + + elseif inline.t == "Span" then + -- Check for char-style class via schema lookup + local matched_class = nil + local matched_style_id = nil + for _, class in ipairs(inline.classes) do + local sid = get_char_style_id(class) + if sid then + matched_class = class + matched_style_id = sid + break + end + end + + if matched_class then + -- Emit char field code (replicates char-style.lua) + local text = M.inlines_to_text(inline.content) + if text ~= "" then + local field_xml = M.build_char_field_code( + matched_style_id, text, matched_class) + table.insert(results, field_xml) + end + else + -- Unknown span class — recurse into children with current rPr + for _, child in ipairs(inline.content) do + for _, xml in ipairs(render_inline(child, rPr_parts)) do + table.insert(results, xml) + end + end + end + + elseif inline.t == "Link" then + return recurse_with_rPr(inline.content, rPr_parts, + {'', ''}) + + elseif inline.t == "RawInline" then + if inline.format == "html" then + -- Check for comment markers (replicates comment-inject.lua) + local id, marker_type = parse_comment_marker(inline.text) + if id then + if marker_type == "start" then + table.insert(results, + '') + elseif marker_type == "end" then + table.insert(results, + '' .. + '') + elseif marker_type == "point" then + table.insert(results, + '' .. + '' .. + '') + end + end + -- Other HTML raw inlines are dropped (no meaningful OOXML equivalent) + elseif inline.format == "openxml" then + -- Already OOXML — pass through unchanged + table.insert(results, inline.text) + end + + elseif inline.t == "LineBreak" then + -- Line break within a paragraph + table.insert(results, "") + + elseif inline.t == "Code" then + table.insert(results, build_text_run(rPr_parts, inline.text)) + + -- Fallback: try to recurse into content, or stringify + elseif inline.content then + for _, child in ipairs(inline.content) do + for _, xml in ipairs(render_inline(child, rPr_parts)) do + table.insert(results, xml) + end + end + else + -- Leaf node we don't handle — stringify + local text = pandoc.utils.stringify(pandoc.Inlines({inline})) + if text ~= "" then + table.insert(results, build_text_run(rPr_parts, text)) + end + end + + return results +end + +--- Render an array of Pandoc Inlines to OOXML run XML. +-- @param inlines Array of Pandoc inline elements +-- @param base_rPr_parts Array of base run property XML fragments +-- @return Concatenated OOXML string (runs only, no paragraph wrapper) +function M.render_inlines(inlines, base_rPr_parts) + base_rPr_parts = base_rPr_parts or {} + local all_runs = {} + for _, inline in ipairs(inlines) do + for _, xml in ipairs(render_inline(inline, base_rPr_parts)) do + table.insert(all_runs, xml) + end + end + return table.concat(all_runs) +end + +-- Export parse_comment_marker for use by comment-inject.lua +M.parse_comment_marker = parse_comment_marker + + +return M diff --git a/_extensions/docstyle/figure.lua b/_extensions/docstyle/figure.lua new file mode 100644 index 0000000..79b9583 --- /dev/null +++ b/_extensions/docstyle/figure.lua @@ -0,0 +1,108 @@ +-- figure.lua +-- Pandoc Lua filter that wraps .figure divs in ADDIN DOCSTYLE field codes +-- for round-trip harvest fidelity. +-- +-- Usage in QMD: +-- ::: {#fig-consort-flow .figure width="80%" align="center"} +-- ![](images/flow.png) +-- +-- **Figure 1.** Caption text with [@citation]. +-- ::: +-- +-- The filter: +-- 1. Detects divs with class "figure" +-- 2. Emits opening ADDIN DOCSTYLE field code carrying id and attributes +-- 3. Passes through all inner blocks (image + caption paragraph) unchanged +-- 4. Emits closing field code +-- +-- On re-harvest, detect_docstyle_field_codes() finds these markers, +-- handle_docstyle_figure() reconstructs the div_open with the original id, +-- and the harvest loop emits the figure div with the correct QMD id. + +local fcu = require("field-code-utils") + +-- Normalise FORMAT: Quarto passes "docx" at runtime; shadow and re-map to "openxml" +-- so all checks use the canonical name (same pattern as table-style.lua, list-style.lua). +local FORMAT = "openxml" + +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write("[figure] " .. msg .. "\n") + end +end + +-- Div attributes excluded from the field code payload (Pandoc-internal) +local skip_attr_keys = { ["data-pos"] = true } + +-- Process Div elements with class "figure" +function Div(div) + if FORMAT ~= "openxml" then + return nil + end + + -- Only handle divs with the "figure" class + local is_figure = false + for _, class in ipairs(div.classes) do + if class == "figure" then + is_figure = true + break + end + end + if not is_figure then + return nil + end + + -- Collect the QMD id (from div.identifier) and attributes + local fig_id = div.identifier + if not fig_id or fig_id == "" then + fig_id = "fig-unknown" + end + + local attrs = {} + for key, val in pairs(div.attributes) do + if val and val ~= "" and not skip_attr_keys[key] then + attrs[key] = val + end + end + + -- Extract image path from the first Para containing an Image inside the div. + -- This becomes original_path in the field code payload for re-harvest path restoration. + local original_path = nil + for _, block in ipairs(div.content) do + if block.t == "Para" then + for _, inline in ipairs(block.content) do + if inline.t == "Image" then + original_path = inline.src + break + end + end + end + if original_path then break end + end + if original_path and original_path ~= "" then + attrs["original_path"] = original_path + end + + debug("Processing .figure div: id=" .. fig_id) + + local field_start = fcu.build_figure_field_start(fig_id, attrs) + local field_end = fcu.build_block_field_end() + + -- Wrap: field_start | inner blocks | field_end + local result = pandoc.Blocks({ pandoc.RawBlock("openxml", field_start) }) + for _, block in ipairs(div.content) do + result:insert(block) + end + result:insert(pandoc.RawBlock("openxml", field_end)) + + return result +end + +-- Normalise FORMAT at document level: Quarto passes "docx", canonicalise to "openxml". +function Pandoc(_) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end diff --git a/_extensions/docstyle/generate-reference.R b/_extensions/docstyle/generate-reference.R new file mode 100644 index 0000000..75d131d --- /dev/null +++ b/_extensions/docstyle/generate-reference.R @@ -0,0 +1,332 @@ +#!/usr/bin/env Rscript +# Pre-render hook: Generate reference.docx from CSS +# +# This script is called by Quarto before rendering to generate a reference.docx +# from the docstyle CSS configuration. Uses hash-based caching to avoid +# regeneration when nothing has changed. +# +# Usage in _quarto.yml: +# project: +# pre-render: _extensions/docstyle/generate-reference.R +# +# Behaviour: +# - If user explicitly sets reference-doc in YAML, skip generation (use theirs) +# - Otherwise, generate reference.docx from docstyle.css configuration +# - Cache by hash: only regenerate when CSS or docstyle config changes +# +# Output: +# - _docstyle/reference.docx (cached reference document) +# - _docstyle/reference.docx.hash (hash of inputs for cache validation) + +# Null coalesce helper (define early since used throughout) +`%||%` <- function(x, y) if (is.null(x)) y else x + +# Check if we're in a Quarto project context +project_dir <- Sys.getenv("QUARTO_PROJECT_DIR", "") +if (nchar(project_dir) == 0) { + # Not running as Quarto hook - check current directory + project_dir <- getwd() +} + +# Find _quarto.yml +quarto_yml <- file.path(project_dir, "_quarto.yml") +if (!file.exists(quarto_yml)) { + # Try looking for it in parent directory + quarto_yml <- file.path(dirname(project_dir), "_quarto.yml") + if (!file.exists(quarto_yml)) { + message("[generate-reference] No _quarto.yml found, skipping reference generation") + quit(save = "no", status = 0) + } + project_dir <- dirname(quarto_yml) +} + +# Parse _quarto.yml +config <- tryCatch({ + yaml::read_yaml(quarto_yml) +}, error = function(e) { + message("[generate-reference] Error reading _quarto.yml: ", e$message) + quit(save = "no", status = 0) +}) + +# Check if user explicitly set a custom reference-doc (not the generated one) +# If pointing to _docstyle/reference.docx, we still need to generate it +has_custom_reference_doc <- function(cfg, sidecar_dir) { + generated_path <- file.path(sidecar_dir, "reference.docx") + + check_path <- function(path) { + if (is.null(path)) return(FALSE) + # Normalize paths for comparison + norm_path <- normalizePath(path, mustWork = FALSE) + norm_generated <- normalizePath(generated_path, mustWork = FALSE) + # If it's the generated path, we should still generate + if (norm_path == norm_generated) return(FALSE) + # Also check relative path comparison + if (path == generated_path) return(FALSE) + if (basename(dirname(path)) == basename(sidecar_dir) && + basename(path) == "reference.docx") return(FALSE) + TRUE + } + + # Check format.docx.reference-doc + if (check_path(cfg$format$docx$`reference-doc`)) return(TRUE) + if (check_path(cfg$format$`docstyle-docx`$`reference-doc`)) return(TRUE) + # Check top-level reference-doc + if (check_path(cfg$`reference-doc`)) return(TRUE) + FALSE +} + +sidecar_dir_name <- config$docstyle$`sidecar-dir` %||% "_docstyle" +if (has_custom_reference_doc(config, sidecar_dir_name)) { + message("[generate-reference] User specified custom reference-doc, skipping CSS generation") + quit(save = "no", status = 0) +} + +# Check if docstyle configuration exists +if (is.null(config$docstyle)) { + message("[generate-reference] No docstyle: section found, skipping reference generation") + quit(save = "no", status = 0) +} + +# Resolve CSS path(s) - supports single path, array, or uses default +css_config <- config$docstyle$css + +if (is.null(css_config)) { + # No CSS specified - use default.css from extension + # Find the extension directory (where this script lives) + script_dir <- tryCatch({ + # When running as Rscript + script_path <- commandArgs(trailingOnly = FALSE) + file_arg <- grep("^--file=", script_path, value = TRUE) + if (length(file_arg) > 0) { + dirname(normalizePath(sub("^--file=", "", file_arg))) + } else { + # Fallback: look relative to project + file.path(project_dir, "_extensions", "docstyle") + } + }, error = function(e) { + file.path(project_dir, "_extensions", "docstyle") + }) + + default_css <- file.path(script_dir, "default.css") + if (file.exists(default_css)) { + css_paths <- default_css + message("[generate-reference] Using default CIHR-compliant CSS") + } else { + message("[generate-reference] No docstyle.css specified and default.css not found") + quit(save = "no", status = 0) + } +} else { + # User specified CSS - resolve paths + css_paths <- vapply(css_config, function(p) { + full_path <- file.path(project_dir, p) + if (file.exists(full_path)) full_path else p + }, character(1)) + + # Check all CSS files exist + missing_css <- css_paths[!file.exists(css_paths)] + if (length(missing_css) > 0) { + message("[generate-reference] CSS file(s) not found: ", paste(missing_css, collapse = ", ")) + quit(save = "no", status = 0) + } +} + +# Setup output paths +sidecar_dir <- config$docstyle$`sidecar-dir` %||% "_docstyle" +sidecar_path <- file.path(project_dir, sidecar_dir) +if (!dir.exists(sidecar_path)) { + dir.create(sidecar_path, recursive = TRUE) +} + +reference_path <- file.path(sidecar_path, "reference.docx") +hash_path <- file.path(sidecar_path, "reference.docx.hash") + +# Compute hash of inputs (CSS content + relevant docstyle config) +compute_input_hash <- function(css_paths, docstyle_config) { + # Read CSS content from all files + css_contents <- vapply(css_paths, function(p) { + paste(readLines(p, warn = FALSE), collapse = "\n") + }, character(1)) + css_content <- paste(css_contents, collapse = "\n---CSS-SEPARATOR---\n") + + # Extract config elements that affect reference.docx + # Note: page includes line-numbers sub-config + relevant_config <- list( + page = docstyle_config$page, + header = docstyle_config$header, + footer = docstyle_config$footer, + sections = docstyle_config$sections, + toc = docstyle_config$toc, + `base-doc` = docstyle_config$`base-doc` + ) + config_json <- jsonlite::toJSON(relevant_config, auto_unbox = TRUE) + + # Include template version so template changes trigger regeneration + template_version <- "" + if (requireNamespace("docstyle", quietly = TRUE)) { + template_version <- as.character(utils::packageVersion("docstyle")) + } + + # Combine and hash + combined <- paste0(css_content, "\n---\n", config_json, + "\n---TEMPLATE---\n", template_version) + digest::digest(combined, algo = "sha256") +} + +# Check if regeneration is needed +current_hash <- compute_input_hash(css_paths, config$docstyle) +cached_hash <- "" +if (file.exists(hash_path)) { + cached_hash <- trimws(readLines(hash_path, n = 1, warn = FALSE)) +} + +if (current_hash == cached_hash && file.exists(reference_path)) { + message("[generate-reference] Reference doc up to date (hash match)") + quit(save = "no", status = 0) +} + +message("[generate-reference] Generating reference.docx from CSS...") + +# Try to load docstyle +docstyle_loaded <- FALSE + +if (requireNamespace("docstyle", quietly = TRUE)) { + docstyle_loaded <- TRUE +} else { + # Try to find and load from development source + search_dirs <- c( + project_dir, + dirname(project_dir), + dirname(dirname(project_dir)), + dirname(dirname(dirname(project_dir))), + dirname(dirname(dirname(dirname(project_dir)))) + ) + + for (dir in search_dirs) { + desc_path <- file.path(dir, "DESCRIPTION") + if (file.exists(desc_path)) { + desc_content <- readLines(desc_path, n = 1, warn = FALSE) + if (grepl("Package:\\s*docstyle", desc_content)) { + if (requireNamespace("devtools", quietly = TRUE)) { + tryCatch({ + devtools::load_all(dir, quiet = TRUE) + docstyle_loaded <- TRUE + break + }, error = function(e) NULL) + } + } + } + } +} + +if (!docstyle_loaded) { + message("[generate-reference] docstyle package not found, skipping reference generation") + quit(save = "no", status = 0) +} + +# Generate reference.docx +tryCatch({ + docstyle::generate_reference_doc( + config_path = quarto_yml, + output_path = reference_path + ) + + # Write hash file + writeLines(current_hash, hash_path) + + message("[generate-reference] Generated: ", reference_path) + message("[generate-reference] Hash: ", substr(current_hash, 1, 12), "...") +}, error = function(e) { + message("[generate-reference] Error generating reference.docx: ", e$message) + quit(save = "no", status = 1) +}) + +# Generate page-config.json for Lua filters and R finisher +# Exports page layout, named sections, and header/footer config with pre-computed rPr_xml +tryCatch({ + page_config_path <- file.path(sidecar_path, "page-config.json") + + # Read CSS and extract page config + css_styles <- docstyle::read_css(css_paths) + page_config <- attr(css_styles, "page") + + if (is.null(page_config)) page_config <- list() + + # Helper: compute rPr_xml from a CSS style name + resolve_rPr <- function(style_name) { + if (is.null(style_name) || is.null(css_styles)) return("") + selector <- paste0(".", style_name) + if (!is.null(css_styles[[selector]])) { + rPr <- docstyle::css_to_rPr(css_styles[[selector]]) + return(docstyle::build_rPr_xml(rPr)) + } + "" + } + + # Export footer config with pre-computed rPr_xml and default text + ds <- config$docstyle + if (!is.null(ds$footer) && isTRUE(ds$footer$enabled)) { + page_config$footer <- list( + enabled = TRUE, + first_page = ds$footer$`first-page` %||% TRUE, + style = ds$footer$style %||% NULL, + rPr_xml = resolve_rPr(ds$footer$style), + left = ds$footer$left %||% "", + center = ds$footer$center %||% ds$footer$content %||% "", + right = ds$footer$right %||% "" + ) + } + + # Export header config with pre-computed rPr_xml and default text + if (!is.null(ds$header) && isTRUE(ds$header$enabled)) { + page_config$header <- list( + enabled = TRUE, + first_page = ds$header$`first-page` %||% TRUE, + style = ds$header$style %||% NULL, + rPr_xml = resolve_rPr(ds$header$style), + left = ds$header$left %||% "", + center = ds$header$center %||% ds$header$content %||% "", + right = ds$header$right %||% "" + ) + } + + # Export per-section style overrides with pre-computed rPr_xml + if (!is.null(ds$sections)) { + section_exports <- list() + for (sec_name in names(ds$sections)) { + sec <- ds$sections[[sec_name]] + section_exports[[sec_name]] <- list( + footer_style = sec$`footer-style` %||% NULL, + footer_rPr_xml = resolve_rPr(sec$`footer-style`), + header_style = sec$`header-style` %||% NULL, + header_rPr_xml = resolve_rPr(sec$`header-style`) + ) + } + page_config$sections <- section_exports + } + + # Extract table styles from CSS (e.g., .table-formal, .table-grid) + table_styles <- docstyle::extract_table_styles(css_styles) + if (length(table_styles) > 0) { + page_config$table_styles <- table_styles + message("[generate-reference] Table styles: ", paste(names(table_styles), collapse = ", ")) + } + + # Write page config as JSON + jsonlite::write_json( + page_config, + page_config_path, + auto_unbox = TRUE, + pretty = TRUE + ) + + # Report available named page styles + if (!is.null(page_config$named)) { + named_styles <- names(page_config$named) + if (length(named_styles) > 0) { + message("[generate-reference] Named page styles: ", paste(named_styles, collapse = ", ")) + } + } +}, error = function(e) { + # Non-fatal: page-config.json is optional + message("[generate-reference] Note: Could not generate page-config.json: ", e$message) +}) diff --git a/_extensions/docstyle/list-style.lua b/_extensions/docstyle/list-style.lua new file mode 100644 index 0000000..41838f7 --- /dev/null +++ b/_extensions/docstyle/list-style.lua @@ -0,0 +1,166 @@ +-- list-style.lua +-- Pandoc Lua filter for CSS-defined list styles in Word output +-- +-- Approach: AST rewriting + ADDIN DOCSTYLE field code markers +-- 1. Converts BulletList → OrderedList with correct ListNumberStyle +-- (Pandoc's docx writer generates proper numbering.xml definitions) +-- 2. Wraps styled lists in ADDIN DOCSTYLE field codes +-- (harvest detects field codes to recover CSS class on round-trip) +-- +-- Usage in QMD: +-- ::: {.list-alpha} +-- - First item (renders as a.) +-- - Second item (renders as b.) +-- ::: +-- +-- Supported list classes: +-- .list-bullet - Bullet list (explicit) +-- .list-decimal - Numbered 1. 2. 3. at all levels +-- .list-alpha - Lettered a. b. c. at all levels +-- .list-roman - Roman i. ii. iii. at all levels +-- .list-formal - Hierarchical: 1. / a. / i. per level + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write("[list-style] " .. msg .. "\n") + end +end + +local FORMAT = "openxml" + +-- Map CSS class → Pandoc ListNumberStyle per indent level +-- Pandoc styles: DefaultStyle, Decimal, LowerAlpha, UpperAlpha, LowerRoman, UpperRoman +local list_styles = { + ["list-bullet"] = nil, -- keep as BulletList + ["list-decimal"] = { + [0] = "Decimal", [1] = "Decimal", [2] = "Decimal" + }, + ["list-alpha"] = { + [0] = "LowerAlpha", [1] = "LowerAlpha", [2] = "LowerAlpha" + }, + ["list-roman"] = { + [0] = "LowerRoman", [1] = "LowerRoman", [2] = "LowerRoman" + }, + ["list-formal"] = { + [0] = "Decimal", [1] = "LowerAlpha", [2] = "LowerRoman" + } +} + +-- Find list style class in div classes +local function find_list_style(classes) + for _, class in ipairs(classes) do + if list_styles[class] ~= nil then + return class + end + end + for _, class in ipairs(classes) do + if class == "list-bullet" then + return "list-bullet" + end + end + return nil +end + +-- Convert a BulletList or OrderedList to an OrderedList with the specified style +-- Handles nested lists recursively with level tracking +-- div_start: optional start value from div attribute (applied at level 0 only) +local function convert_list(block, style_name, level, div_start) + level = level or 0 + local style_def = list_styles[style_name] + + -- list-bullet: keep as-is + if not style_def then + return block + end + + local pandoc_style = style_def[level] or style_def[0] + + -- Process items, converting nested lists (nested lists don't inherit div_start) + local new_items = {} + for _, item in ipairs(block.content) do + local new_blocks = {} + for _, b in ipairs(item) do + if b.t == "BulletList" or b.t == "OrderedList" then + table.insert(new_blocks, convert_list(b, style_name, level + 1, nil)) + else + table.insert(new_blocks, b) + end + end + table.insert(new_items, new_blocks) + end + + -- Determine start number: div_start at level 0, then block's own start, then 1 + local start_num = 1 + if div_start and level == 0 then + start_num = div_start + elseif block.t == "OrderedList" and block.listAttributes then + start_num = block.listAttributes[1] or 1 + end + + return pandoc.OrderedList(new_items, pandoc.ListAttributes(start_num, pandoc_style, "Period")) +end + +-- Process Div elements looking for list style classes +function Div(div) + if FORMAT ~= "openxml" then + return nil + end + + local style_name = find_list_style(div.classes) + if not style_name then + return nil + end + + -- Read optional start attribute for list continuation + local div_start = tonumber(div.attributes.start) or nil + + debug("Found ." .. style_name .. " div" .. + (div_start and (" start=" .. div_start) or "")) + + -- Convert all lists in the div + local converted_blocks = {} + local modified = false + + for _, block in ipairs(div.content) do + if block.t == "BulletList" or block.t == "OrderedList" then + table.insert(converted_blocks, convert_list(block, style_name, 0, div_start)) + modified = true + else + table.insert(converted_blocks, block) + end + end + + if not modified then + debug("No lists found in ." .. style_name .. " div") + return nil + end + + -- Wrap with ADDIN DOCSTYLE field code markers using shared utility + local result = {} + table.insert(result, pandoc.RawBlock("openxml", fcu.build_list_field_start(style_name, div_start))) + for _, block in ipairs(converted_blocks) do + table.insert(result, block) + end + table.insert(result, pandoc.RawBlock("openxml", fcu.build_block_field_end())) + + debug("Converted lists in ." .. style_name .. " div (field code marker added)") + + return result +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +return { + { Pandoc = Pandoc }, + { Div = Div } +} diff --git a/_extensions/docstyle/page-section.lua b/_extensions/docstyle/page-section.lua new file mode 100644 index 0000000..03d85b0 --- /dev/null +++ b/_extensions/docstyle/page-section.lua @@ -0,0 +1,643 @@ +-- page-section.lua +-- Pandoc Lua filter that injects Word section breaks for named page styles +-- +-- Usage in QMD (use .section-* class prefix): +-- ::: {.section-landscape} +-- | Wide | Table | Here | +-- ::: +-- +-- ::: {.section-body page-break="true" line-numbers="continuous"} +-- ::: +-- +-- Attributes: +-- page-break="true" Start section on new page (default: false) +-- line-numbers="page" Line numbers restart each page +-- line-numbers="section" Line numbers restart each section +-- line-numbers="continuous" Line numbers never restart +-- line-numbers="false" Disable line numbers for this section +-- +-- CSS configuration (optional - attributes can override): +-- @page landscape { +-- size: letter landscape; +-- margin: 0.5in; +-- } +-- @page body { +-- --docstyle-line-numbers: every 1; +-- --docstyle-line-numbers-restart: page; +-- } +-- +-- The filter reads named page rules from a JSON file generated by the pre-render +-- hook. If no @page rule exists for a section name, the filter falls back to +-- default page properties (allowing sections to work without explicit CSS). +-- +-- Section breaks and Pandoc's docx writer +-- ---------------------------------------- +-- Word's section model: sectPr defines properties for the section that ENDS at +-- that point. The document's final sectPr (in ) defines the last section. +-- Pandoc's docx writer always emits this final sectPr from the reference document. +-- +-- This filter inserts mid-document sectPr elements to create section breaks. The +-- final section's properties (including line numbers) come from the reference +-- document, generated by generate-reference.R with settings from page-config.json. +-- +-- IMPORTANT: Page breaks use an explicit paragraph followed +-- by a continuous sectPr, NOT the nextPage section type. The nextPage type alone +-- is unreliable when Pandoc's docx writer inserts bookmark elements around the +-- break. The explicit break + continuous sectPr pattern matches how Word itself +-- creates page breaks in natively-authored documents. +-- +-- IMPORTANT: Do NOT insert an additional sectPr at document end (in the Pandoc() +-- function). For empty marker divs this creates three sections instead of two, +-- and Word silently drops the earlier page break. Line numbers for the final +-- section must be configured in the reference document, not via an extra sectPr. +-- +-- Wrapping divs (non-empty) DO insert a closing sectPr after their content. +-- This creates three sections (before | wrapped content | after), which is the +-- correct structure for scoping line numbers to the wrapped content only. +-- +-- Round-trip support +-- ------------------ +-- Section divs are wrapped in ADDIN DOCSTYLE field codes for harvest round-trip. +-- The JSON payload preserves the class name, page-break, and line-numbers +-- attributes so they can be reconstructed during docx_to_qmd() harvest. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write("[page-section] " .. msg .. "\n") + end +end + +local FORMAT = "openxml" + +-- Deep copy a table (for nested structures like line-numbers) +-- Prevents reference aliasing when multiple markers use the same named style +local function deep_copy(t) + if type(t) ~= "table" then return t end + local copy = {} + for k, v in pairs(t) do + copy[k] = deep_copy(v) + end + return copy +end + +-- Page configuration from JSON +local page_config = nil +local default_page = nil +local final_section_style = nil -- Track the last .section-* style for final sectPr +local current_section_props = nil -- Track current section for correct sectPr emission + +-- Unit conversion: CSS units to twips (1/20th of a point) +-- 1 inch = 1440 twips, 1 pt = 20 twips, 1 cm = 567 twips, 1 mm = 56.7 twips +local function css_to_twips(value) + if not value then return nil end + + local num, unit = string.match(value, "^([%d%.]+)(%a+)$") + if not num then + -- Try just a number (assume inches) + num = tonumber(value) + if num then return math.floor(num * 1440) end + return nil + end + + num = tonumber(num) + if not num then return nil end + + unit = string.lower(unit) + if unit == "in" then + return math.floor(num * 1440) + elseif unit == "pt" then + return math.floor(num * 20) + elseif unit == "cm" then + return math.floor(num * 567) + elseif unit == "mm" then + return math.floor(num * 56.7) + elseif unit == "px" then + -- CSS standard: 96px = 1in + return math.floor(num * 15) + end + + return nil +end + +-- Get page dimensions in twips for a given size +local function get_page_size(size, orientation) + -- Standard page sizes in twips (width x height in portrait) + local sizes = { + letter = { w = 12240, h = 15840 }, -- 8.5" x 11" + a4 = { w = 11906, h = 16838 }, -- 210mm x 297mm + legal = { w = 12240, h = 20160 } -- 8.5" x 14" + } + + local dims = sizes[size] or sizes.letter + + if orientation == "landscape" then + return dims.h, dims.w -- Swap width and height + else + return dims.w, dims.h + end +end + +-- Build Word section properties XML +local function build_sect_pr(page_props, sect_type) + sect_type = sect_type or "nextPage" -- nextPage, continuous, evenPage, oddPage + + local size = page_props.size or "letter" + local orientation = page_props.orientation or "portrait" + local margins = page_props.margins or {} + + local w, h = get_page_size(size, orientation) + + -- Default margins (1 inch = 1440 twips) + local margin_top = css_to_twips(margins.top) or 1440 + local margin_bottom = css_to_twips(margins.bottom) or 1440 + local margin_left = css_to_twips(margins.left) or 1440 + local margin_right = css_to_twips(margins.right) or 1440 + local gutter = css_to_twips(margins.gutter) or 0 + + -- Build the sectPr XML + local xml_parts = { + '' + } + + -- Section type + table.insert(xml_parts, '') + + -- Page size with orientation + local orient_attr = "" + if orientation == "landscape" then + orient_attr = ' w:orient="landscape"' + end + table.insert(xml_parts, string.format( + '', + w, h, orient_attr + )) + + -- Page margins + table.insert(xml_parts, string.format( + '', + margin_top, margin_right, margin_bottom, margin_left, gutter + )) + + -- Line numbers if configured + if page_props["line-numbers"] and page_props["line-numbers"].enabled then + local ln = page_props["line-numbers"] + local count_by = ln["count-by"] or 1 + local restart = ln.restart or "newPage" + local distance = css_to_twips(ln.distance) or 360 -- Default 0.25in + + debug(" build_sect_pr: adding line numbers with restart=" .. tostring(restart)) + + -- Map restart values to Word + local restart_map = { + page = "newPage", + section = "newSection", + continuous = "continuous" + } + restart = restart_map[restart] or "newPage" + + table.insert(xml_parts, string.format( + '', + count_by, restart, distance + )) + else + debug(" build_sect_pr: no line numbers (page_props['line-numbers']=" .. + tostring(page_props["line-numbers"]) .. ")") + end + + table.insert(xml_parts, '') + + return table.concat(xml_parts) +end + +-- Build section break paragraphs as a list of XML strings. +-- Returns a table of XML strings, each to be emitted as a separate RawBlock. +-- +-- IMPORTANT: Each XML string must be a separate RawBlock. When concatenated +-- into a single RawBlock, Pandoc's docx writer may not process the page break +-- correctly (the break is silently dropped). Separate RawBlocks match how +-- raw openxml blocks in markdown are processed. +-- +-- For page breaks: Word reliably renders an explicit +-- followed by a continuous sectPr. The nextPage sect type alone is unreliable +-- in some contexts (e.g., when Pandoc bookmark elements surround the break). +-- This matches the pattern Word itself uses in natively-authored documents. +local function build_section_break_paras(page_props, sect_type) + local sect_pr = build_sect_pr(page_props, "continuous") + if sect_type == "nextPage" then + -- Two separate paragraphs: page break + continuous sectPr + return { + '', + '' .. sect_pr .. '' + } + else + return { + '' .. sect_pr .. '' + } + end +end + +-- Read page configuration from JSON file (delegates to shared loader) +local function load_page_config() + return fcu.load_page_config() +end + +-- Read configuration from metadata +function Meta(meta) + -- Try to load from JSON file first + page_config = load_page_config() + + -- Also check metadata for inline config (for testing) + if meta.docstyle and meta.docstyle.page then + local page = meta.docstyle.page + + -- Parse metadata into page_config structure + if not page_config then + page_config = { named = {} } + end + + -- Store default page settings + default_page = { + size = page.size and pandoc.utils.stringify(page.size) or "letter", + orientation = page.orientation and pandoc.utils.stringify(page.orientation) or "portrait", + margins = {} + } + + if page.margins then + for k, v in pairs(page.margins) do + default_page.margins[k] = pandoc.utils.stringify(v) + end + end + end + + -- Set default page from config if available + if page_config and not default_page then + default_page = { + size = page_config.size or "letter", + orientation = page_config.orientation or "portrait", + margins = page_config.margins or {}, + ["line-numbers"] = page_config["line-numbers"] + } + end + + -- Ultimate fallback + if not default_page then + default_page = { + size = "letter", + orientation = "portrait", + margins = { top = "1in", bottom = "1in", left = "1in", right = "1in" } + } + end + + current_section_props = deep_copy(default_page) + + debug("Default page: " .. (default_page.size or "letter") .. + " " .. (default_page.orientation or "portrait")) + + if page_config and page_config.named then + for name, _ in pairs(page_config.named) do + debug("Named page style available: " .. name) + end + end + + return nil +end + +-- Process Div elements looking for .section-* classes +-- +-- Word Section Model: +-- - A section runs from one section break to the next (or document end) +-- - Section properties are defined by the sectPr that ENDS the section +-- - The document's final sectPr defines properties for the LAST section +-- +-- Usage (empty div as marker - recommended): +-- ::: section-body +-- ::: +-- +-- # 1. Introduction +-- Content here is in the body section... +-- +-- Usage (div wrapping content - also supported): +-- ::: {.section-body} +-- # 1. Introduction +-- Content here is in the body section... +-- ::: +-- +-- The section marker inserts a section break that ENDS the previous section. +-- Everything after the marker is in the NEW section until the next marker or document end. +-- +-- Add page-break="true" to start the new section on a new page: +-- ::: {.section-body page-break="true"} +-- ::: + +function Div(div) + -- Only process for docx output + if FORMAT ~= "openxml" then + return nil + end + + -- Look for section-* classes + local section_style = nil + for _, class in ipairs(div.classes) do + local name = string.match(class, "^section%-(.+)$") + if name then + section_style = name + break + end + end + + -- Handle standalone page break: ::: {.page-break} ::: + -- Emits explicit that Pandoc passes through reliably. + -- Use this instead of \newpage which Pandoc drops near headings/bookmarks. + -- Harvest detects and restores ::: {.page-break} ::: + if not section_style then + for _, class in ipairs(div.classes) do + if class == "page-break" then + debug("Found .page-break div") + local blocks = {} + table.insert(blocks, pandoc.RawBlock("openxml", + '')) + -- Pass through any content inside the div + for _, block in ipairs(div.content) do + table.insert(blocks, block) + end + return blocks + end + end + return nil + end + + debug("Found .section-" .. section_style .. " div") + + -- Get the named page properties for the NEW section + -- IMPORTANT: Use deep_copy to avoid aliasing issues when multiple markers + -- use the same named style. Without copy, modifying new_section_props + -- (e.g., setting line-numbers) would corrupt the shared config table. + local new_section_props = nil + if page_config and page_config.named and page_config.named[section_style] then + new_section_props = deep_copy(page_config.named[section_style]) + debug(" Using @page " .. section_style .. " properties") + else + -- No named @page rule found - fall back to default with style-specific inference + debug(" No @page " .. section_style .. " rule found, using defaults") + + if section_style == "landscape" then + -- Landscape: swap orientation + new_section_props = { + size = default_page.size or "letter", + orientation = "landscape", + margins = default_page.margins or {} + } + else + -- Other styles (body, appendix, etc.): inherit from default_page + -- This allows sections to work even without explicit @page rules + new_section_props = { + size = default_page.size or "letter", + orientation = default_page.orientation or "portrait", + margins = default_page.margins or {}, + ["line-numbers"] = default_page["line-numbers"] + } + end + end + + -- Line numbers: opt-in only via div attribute. + -- Default is NO line numbers. The @page CSS config provides page geometry + -- (size, margins, orientation) but line numbers require explicit opt-in: + -- ::: {.section-body line-numbers="continuous"} + -- This matches user expectation: "open it, start writing" = no line numbers. + -- Supports: line-numbers="true", "false", "page", "section", "continuous" + local ln_attr = div.attributes["line-numbers"] + if ln_attr then + ln_attr = pandoc.utils.stringify(ln_attr) + end + + -- Clear any inherited line numbers from CSS config; only div attribute controls + new_section_props["line-numbers"] = nil + + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + if ln_attr == "true" or ln_attr == "page" then + new_section_props["line-numbers"] = { + enabled = true, + ["count-by"] = 1, + restart = "page" + } + debug(" Line numbers enabled (restart per page) via attribute") + elseif ln_attr == "section" then + new_section_props["line-numbers"] = { + enabled = true, + ["count-by"] = 1, + restart = "section" + } + debug(" Line numbers enabled (restart per section) via attribute") + elseif ln_attr == "continuous" then + new_section_props["line-numbers"] = { + enabled = true, + ["count-by"] = 1, + restart = "continuous" + } + debug(" Line numbers enabled (continuous) via attribute") + end + else + debug(" Line numbers: off (default, no attribute)") + end + + -- In Word, sectPr defines properties for the section that ENDS at that point. + -- To start a new section: + -- 1. Insert sectPr with PREVIOUS section's properties (ends the previous section) + -- 2. Content after that sectPr is in the new section + -- 3. New section's properties come from the NEXT sectPr (or document's final sectPr) + + -- Check for page-break attribute: ::: {.section-body page-break="true"} + local sect_type = "continuous" + if pandoc.utils.stringify(div.attributes["page-break"] or "") == "true" then + sect_type = "nextPage" + debug(" Using nextPage section break") + end + + -- Build result blocks + local blocks = {} + + -- For page breaks: emit the explicit BEFORE the field code + -- and sectPr. This prevents the page break from being sandwiched between two + -- consecutive sectPr elements (e.g., a closing sectPr from a previous wrapping + -- div and this opening sectPr), which causes Word to silently drop the break. + if sect_type == "nextPage" then + table.insert(blocks, pandoc.RawBlock("openxml", + '')) + debug(" Page break emitted before section break") + end + + -- === R-FIRST ASSEMBLY (v2) === + -- Instead of emitting complex sectPr XML that Pandoc wraps in container + -- paragraphs (causing the 3-line gap), emit a simple text marker that + -- the R finisher will find and process. + -- + -- The R finisher will: + -- 1. Find this marker + -- 2. Build sectPr using page-config.json + -- 3. Attach sectPr to the PRECEDING paragraph + -- 4. Delete the marker paragraph (eliminates the gap) + + -- Determine line-numbers for marker + local ln_for_marker = "none" + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + ln_for_marker = ln_attr + end + + -- Build text marker: DOCSTYLE_SECTION::{class}::{page-break}::{line-numbers} + local marker_text = string.format("DOCSTYLE_SECTION::section-%s::%s::%s", + section_style, + sect_type == "nextPage" and "true" or "false", + ln_for_marker + ) + debug(" Emitting marker: " .. marker_text) + + -- Build attributes for field code + local field_attrs = {} + if sect_type == "nextPage" then + field_attrs["page-break"] = true + end + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + field_attrs["line-numbers"] = ln_attr + end + -- Pass through all remaining div attributes (footer-left, header-left, + -- page-start, etc.) so the R finisher can read them from the JSON payload + local skip_attrs = {["line-numbers"]=true, ["page-break"]=true, ["page-break-after"]=true} + for k, v in pairs(div.attributes) do + if not field_attrs[k] and not skip_attrs[k] then + field_attrs[k] = pandoc.utils.stringify(v) + end + end + + -- Emit field code + marker in a SINGLE paragraph to prevent 3-line gap + -- Uses build_section_marker_para which combines BEGIN/instrText/SEPARATE/marker/END + table.insert(blocks, pandoc.RawBlock("openxml", + fcu.build_section_marker_para("section-" .. section_style, field_attrs, marker_text))) + + -- For wrapping divs (non-empty): emit content, then closing marker. + -- The opening marker already contains complete field code (BEGIN/SEPARATE/marker/END). + -- For empty marker divs: field code is already complete, nothing more needed. + if #div.content > 0 then + -- Div content + for _, block in ipairs(div.content) do + table.insert(blocks, block) + end + + -- Closing marker: R finisher will attach sectPr to last content paragraph + local close_page_break = pandoc.utils.stringify(div.attributes["page-break-after"] or "") == "true" + local close_marker = string.format("DOCSTYLE_SECTION_END::section-%s::%s::%s", + section_style, + close_page_break and "true" or "false", + ln_for_marker + ) + debug(" Emitting closing marker: " .. close_marker) + + -- Page break after content if requested + if close_page_break then + table.insert(blocks, pandoc.RawBlock("openxml", + '')) + end + + -- Closing marker in single paragraph with field code wrapper + -- Strip footer/header/page-start attributes from closing markers — the + -- finisher reads these from opening markers only (via payload shift) + local close_skip = {} + for k, v in pairs(skip_attrs) do close_skip[k] = v end + close_skip["footer-left"]=true; close_skip["footer-center"]=true; close_skip["footer-right"]=true + close_skip["header-left"]=true; close_skip["header-center"]=true; close_skip["header-right"]=true + close_skip["footer"]=true; close_skip["header"]=true + close_skip["page-start"]=true + local close_attrs = {} + if close_page_break then + close_attrs["page-break"] = true + end + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + close_attrs["line-numbers"] = ln_attr + end + for k, v in pairs(div.attributes) do + if not close_attrs[k] and not close_skip[k] then + close_attrs[k] = pandoc.utils.stringify(v) + end + end + table.insert(blocks, pandoc.RawBlock("openxml", + fcu.build_section_marker_para("section-" .. section_style .. "-end", close_attrs, close_marker))) + + debug("Wrapping div: section '" .. section_style .. "' opened and closed") + else + -- Empty marker div: field code already complete in single paragraph + debug("Empty marker: section '" .. section_style .. "' started") + end + + return blocks +end + +-- Check output format and apply final section style if needed +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + + -- NOTE: We intentionally do NOT insert an extra sectPr here for line numbers. + -- + -- Previously, this function inserted a sectPr paragraph at the end to apply + -- line number properties to the final section. However, this creates THREE + -- sections in the document: + -- 1. Mid-document sectPr (from Div()) - ends front matter + -- 2. Filter's final sectPr (from here) - ends body section + -- 3. Pandoc's body sectPr - ends document + -- + -- This confuses Word's page break rendering - the explicit + -- before sectPr #1 gets silently ignored. + -- + -- Instead, line numbers should be configured in the reference document via + -- generate-reference.R, which properly sets in Pandoc's final + -- body sectPr. This approach: + -- - Keeps only 2 sections (front matter + body) + -- - Page breaks work reliably + -- - Line numbers still apply to body content + -- + -- See: R/page_layout.R apply_line_numbers() function + + if final_section_style and FORMAT == "openxml" then + debug("Final section style tracked: " .. (final_section_style["line-numbers"] and "with line numbers" or "no line numbers")) + debug("Line numbers should be configured in reference doc, not via extra sectPr") + end + + return nil +end + +-- Consume stray ":::" paragraphs that appear when users add standalone ::: +-- markers in QMD (which Pandoc parses as literal text, not fenced div closers). +-- This ensures users only need to mark section STARTS - no closing markers needed. +function Para(para) + -- Only process for docx output + if FORMAT ~= "openxml" then + return nil + end + + -- Check if paragraph contains only ":::" (possibly with whitespace) + if #para.content == 1 and + para.content[1].t == "Str" and + para.content[1].text:match("^:::?$") then + debug("Consuming stray ':::' paragraph") + return {} -- Remove the paragraph + end + + return nil -- Keep unchanged +end + +-- Filter execution order: +-- 1. Meta - load configuration +-- 2. Div - process .page-* and .section-* divs +-- 3. Para - consume stray ::: paragraphs +-- 4. Pandoc - apply final section style if needed +return { + { Meta = Meta }, + { Div = Div }, + { Para = Para }, + { Pandoc = Pandoc } +} diff --git a/_extensions/docstyle/reference.docx b/_extensions/docstyle/reference.docx new file mode 100644 index 0000000..590ff7d Binary files /dev/null and b/_extensions/docstyle/reference.docx differ diff --git a/_extensions/docstyle/revisions-inject.lua b/_extensions/docstyle/revisions-inject.lua new file mode 100644 index 0000000..94e6f33 --- /dev/null +++ b/_extensions/docstyle/revisions-inject.lua @@ -0,0 +1,315 @@ +-- revisions-inject.lua +-- Pandoc Lua filter that converts revision spans to OpenXML track changes +-- +-- Usage in QMD: +-- Insertions: [inserted text]{.ins id="rev_101"} +-- Deletions: [~~deleted text~~]{.del id="rev_102"} +-- +-- The filter reads revision metadata from a sidecar JSON file (revisions.json) +-- which contains author, date, and other metadata for each revision. +-- +-- Metadata loading (in priority order): +-- 1. -M revisions-file:path/to/revisions.json (explicit path) +-- 2. Auto-detect _docstyle/revisions.json (convention-based) +-- +-- Note: Deletions use strikethrough syntax with a .del class wrapper. +-- This is achieved via a Span around the Strikeout: +-- [~~deleted~~]{.del id="x"} + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Metadata storage for revisions (loaded from revisions.json) +local revisions_meta = {} +local revisions_loaded = false + +-- Helper function to escape XML special characters +local function xml_escape(text) + if not text then return "" end + text = text:gsub("&", "&") + text = text:gsub("<", "<") + text = text:gsub(">", ">") + text = text:gsub('"', """) + text = text:gsub("'", "'") + return text +end + +-- Helper to generate xml:space attribute for whitespace preservation +-- Word requires xml:space="preserve" when text has leading/trailing whitespace +local function get_space_attr(text) + if text and (text:match("^%s") or text:match("%s$") or text:match("%s%s")) then + return ' xml:space="preserve"' + end + return "" +end + +-- Helper to extract numeric ID from revision ID string (e.g., "rev_9" -> "9") +-- Word requires numeric w:id values +local function get_numeric_id(id) + if not id then return "0" end + local num = id:match("rev_(%d+)") + if num then return num end + -- If already numeric or doesn't match pattern, return as-is + return id:match("^%d+$") and id or "0" +end + +-- Helper to get revision metadata by ID +local function get_revision(id) + if revisions_meta[id] then + return revisions_meta[id] + end + -- Return defaults if not found + return { + author = "Unknown", + date = "2025-01-01T00:00:00Z" + } +end + +-- Extract text and RawInlines from inline elements +-- Returns: { text = "plain text", raw_inlines = { {pos="before|after", el=RawInline}, ... } } +-- RawInlines (like comment markers) are preserved for output outside the deletion +local function extract_deletion_content(inlines) + local text_parts = {} + local raw_inlines_before = {} -- RawInlines that appear before any text + local raw_inlines_after = {} -- RawInlines that appear after text starts + local seen_text = false + + local function process_inlines(items) + for _, inline in ipairs(items) do + if inline.t == "Str" then + table.insert(text_parts, inline.text) + seen_text = true + elseif inline.t == "Space" then + table.insert(text_parts, " ") + seen_text = true + elseif inline.t == "SoftBreak" then + table.insert(text_parts, " ") + seen_text = true + elseif inline.t == "LineBreak" then + table.insert(text_parts, "\n") + seen_text = true + elseif inline.t == "RawInline" and inline.format == "openxml" then + -- Preserve OpenXML RawInlines (e.g., comment markers from comment-inject.lua) + if seen_text then + table.insert(raw_inlines_after, inline) + else + table.insert(raw_inlines_before, inline) + end + elseif inline.t == "Strikeout" then + -- Recursively process strikeout content + process_inlines(inline.content) + elseif inline.content then + process_inlines(inline.content) + end + end + end + + process_inlines(inlines) + + return { + text = table.concat(text_parts), + raw_before = raw_inlines_before, + raw_after = raw_inlines_after + } +end + +-- Legacy function for backward compatibility (insertions still use this) +local function stringify_inlines(inlines) + local result = extract_deletion_content(inlines) + return result.text +end + +-- Process Span elements with .ins class (insertions) +function Span(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Handle insertions (.ins class) + if el.classes:includes('ins') then + -- Pandoc parses {.ins id="x"} with "id" as the identifier, not an attribute + local id = el.identifier + if (not id or id == "") then + id = el.attributes['id'] or "0" + end + local rev = get_revision(id) + + debug("[revisions-inject] Processing insertion id=" .. id .. "\n") + + -- Build w:ins wrapper (use numeric ID for Word compatibility) + local numeric_id = get_numeric_id(id) + local start_xml = string.format( + '', + xml_escape(numeric_id), + xml_escape(rev.author), + xml_escape(rev.date) + ) + local end_xml = '' + + local result = { pandoc.RawInline('openxml', start_xml) } + + -- Add content + for _, item in ipairs(el.content) do + table.insert(result, item) + end + + table.insert(result, pandoc.RawInline('openxml', end_xml)) + return result + end + + -- Handle deletions (.del class wrapping strikethrough) + -- Pattern: [~~deleted text~~]{.del id="x"} + if el.classes:includes('del') then + -- Pandoc parses {.del id="x"} with "id" as the identifier, not an attribute + local id = el.identifier + if (not id or id == "") then + id = el.attributes['id'] or "0" + end + local rev = get_revision(id) + + debug("[revisions-inject] Processing deletion id=" .. id .. "\n") + + -- Extract text and any RawInlines (like comment markers) from content + local content = extract_deletion_content(el.content) + local del_text = content.text + + -- Remove any remaining strikethrough markers (~~ ) that may have leaked through + del_text = del_text:gsub("~~", "") + + -- Build w:del with w:delText (use numeric ID for Word compatibility) + -- Include xml:space="preserve" if text has significant whitespace + local numeric_id = get_numeric_id(id) + local space_attr = get_space_attr(del_text) + local del_xml = string.format( + '' .. + '%s' .. + '', + xml_escape(numeric_id), + xml_escape(rev.author), + xml_escape(rev.date), + space_attr, + xml_escape(del_text) + ) + + -- Build result: RawInlines before + deletion + RawInlines after + -- This preserves comment markers that were inside the deletion + local result = {} + + -- Add any RawInlines that appeared before text (e.g., comment start markers) + for _, raw in ipairs(content.raw_before) do + table.insert(result, raw) + debug("[revisions-inject] Preserving RawInline before deletion\n") + end + + -- Add the deletion itself + table.insert(result, pandoc.RawInline('openxml', del_xml)) + + -- Add any RawInlines that appeared after text started (e.g., comment end markers) + for _, raw in ipairs(content.raw_after) do + table.insert(result, raw) + debug("[revisions-inject] Preserving RawInline after deletion\n") + end + + -- Return single element or list depending on whether we have RawInlines + if #result == 1 then + return result[1] + else + return result + end + end + + return nil +end + +-- Parse JSON file content into revisions_meta table +-- Uses regex-based parsing that handles our flat JSON structure +local function parse_revisions_json(content, source_path) + local count = 0 + + -- Pattern matches revision entries with author and date fields + -- Handles both orderings: author before date, or date before author + for id, block in content:gmatch('"(rev_[^"]+)":%s*(%b{})') do + local author = block:match('"author":%s*"([^"]*)"') + local date = block:match('"date":%s*"([^"]*)"') + local rev_type = block:match('"type":%s*"([^"]*)"') + + if author then + revisions_meta[id] = { + author = author, + date = date or os.date("!%Y-%m-%dT%H:%M:%SZ"), + type = rev_type + } + count = count + 1 + debug("[revisions-inject] Loaded revision: " .. id .. " by " .. author .. "\n") + end + end + + if count > 0 then + debug("[revisions-inject] Loaded " .. count .. " revisions from: " .. source_path .. "\n") + revisions_loaded = true + end + + return count +end + +-- Try to load revisions from a file path +local function try_load_revisions(path) + local file = io.open(path, "r") + if file then + local content = file:read("*all") + file:close() + return parse_revisions_json(content, path) + end + return 0 +end + +-- Load revision metadata from document metadata or auto-detect +-- Priority: +-- 1. -M revisions-file:path (explicit) +-- 2. _docstyle/revisions.json (convention) +function Meta(meta) + -- Skip if already loaded + if revisions_loaded then + return nil + end + + -- Priority 1: Explicit path via metadata + if meta['revisions-file'] then + local path = pandoc.utils.stringify(meta['revisions-file']) + debug("[revisions-inject] Trying explicit path: " .. path .. "\n") + if try_load_revisions(path) > 0 then + return nil + end + debug("[revisions-inject] Warning: Could not open revisions file: " .. path .. "\n") + end + + -- Priority 2: Auto-detect _docstyle/revisions.json + local auto_path = "_docstyle/revisions.json" + debug("[revisions-inject] Trying auto-detect: " .. auto_path .. "\n") + if try_load_revisions(auto_path) > 0 then + return nil + end + + debug("[revisions-inject] No revisions.json found (checked _docstyle/revisions.json)\n") + return nil +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + debug("[revisions-inject] Filter active for Word output\n") + end + return nil +end + +return { + { Meta = Meta }, + { Pandoc = Pandoc }, + { Span = Span } +} diff --git a/_extensions/docstyle/table-style.lua b/_extensions/docstyle/table-style.lua new file mode 100644 index 0000000..70aae5f --- /dev/null +++ b/_extensions/docstyle/table-style.lua @@ -0,0 +1,598 @@ +-- table-style.lua +-- Pandoc Lua filter that applies CSS-defined table styles to Word output +-- +-- Usage in QMD: +-- ::: {.table-formal} +-- | Column 1 | Column 2 | +-- |----------|----------| +-- | Data | Data | +-- ::: +-- +-- Supported table classes: +-- .table-formal - Top/bottom borders, shaded header row +-- .table-grid - Full grid borders on all cells +-- +-- Table styles are loaded from page-config.json (CSS-derived) at runtime. +-- Built-in defaults are used as fallback when no CSS config is available. + +-- Load field-code-utils for ADDIN DOCSTYLE field code emission +local fcu = require("field-code-utils") + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +local FORMAT = "openxml" + +-- Built-in fallback table style definitions (used when CSS config not available) +local builtin_table_styles = { + ["table-formal"] = { + borders = { + top = { val = "single", sz = "4", color = "7F7F7F" }, + bottom = { val = "single", sz = "4", color = "7F7F7F" }, + left = nil, + right = nil, + insideH = nil, + insideV = nil + }, + header_shading = "D9D9D9" + }, + ["table-grid"] = { + borders = { + top = { val = "single", sz = "4", color = "000000" }, + bottom = { val = "single", sz = "4", color = "000000" }, + left = { val = "single", sz = "4", color = "000000" }, + right = { val = "single", sz = "4", color = "000000" }, + insideH = { val = "single", sz = "4", color = "000000" }, + insideV = { val = "single", sz = "4", color = "000000" } + }, + header_shading = nil, + header_bold = true + } +} + +-- Active table styles (populated from CSS config or fallback) +local table_styles = nil + +-- Load table styles from page-config.json (CSS-derived) via shared loader +local function load_table_styles() + local config = fcu.load_page_config() + if config and config.table_styles then + debug("[table-style] Loaded CSS table styles from page-config.json\n") + return config.table_styles + end + debug("[table-style] No CSS table config found, using built-in defaults\n") + return nil +end + +-- Initialise table_styles: CSS config with built-in fallback +local function init_table_styles() + if table_styles then return end + + local css_styles = load_table_styles() + if css_styles then + -- Start with built-in defaults, then deep-merge CSS values + table_styles = {} + -- Deep-copy all built-in styles (avoids mutating builtin_table_styles + -- when the CSS overlay loop writes into nested tables like borders) + for name, style in pairs(builtin_table_styles) do + table_styles[name] = {} + for k, v in pairs(style) do + if type(v) == "table" then + table_styles[name][k] = {} + for sub_k, sub_v in pairs(v) do + table_styles[name][k][sub_k] = sub_v + end + else + table_styles[name][k] = v + end + end + end + -- Overlay CSS-derived styles field-by-field (preserves built-in + -- fields not covered by CSS, e.g. header_shading when CSS only + -- defines borders). Deep-merges nested tables like borders. + for name, css_style in pairs(css_styles) do + if not table_styles[name] then + table_styles[name] = {} + end + for k, v in pairs(css_style) do + if type(v) == "table" and type(table_styles[name][k]) == "table" then + -- Deep merge: overlay CSS sub-keys over built-in sub-keys + for sub_k, sub_v in pairs(v) do + table_styles[name][k][sub_k] = sub_v + end + else + table_styles[name][k] = v + end + end + end + else + table_styles = builtin_table_styles + end +end + +-- Build border XML element +local function build_border_xml(name, border) + if not border then return "" end + return string.format('', + name, border.val, border.sz, border.color) +end + +-- Build table borders XML +local function build_tblBorders_xml(borders) + if not borders then return "" end + + local parts = { "" } + if borders.top then table.insert(parts, build_border_xml("top", borders.top)) end + if borders.left then table.insert(parts, build_border_xml("left", borders.left)) end + if borders.bottom then table.insert(parts, build_border_xml("bottom", borders.bottom)) end + if borders.right then table.insert(parts, build_border_xml("right", borders.right)) end + if borders.insideH then table.insert(parts, build_border_xml("insideH", borders.insideH)) end + if borders.insideV then table.insert(parts, build_border_xml("insideV", borders.insideV)) end + table.insert(parts, "") + + return table.concat(parts) +end + +-- Build cell shading XML +local function build_shading_xml(color) + if not color then return "" end + return string.format('', color) +end + + +-- Parse widths attribute (e.g., "30,70" or "25,50,25") +-- Returns array of percentages or nil if not specified +local function parse_widths(widths_str) + if not widths_str or widths_str == "" then + return nil + end + + local widths = {} + for w in string.gmatch(widths_str, "([^,]+)") do + local num = tonumber(w) + if num then + table.insert(widths, num) + end + end + + return #widths > 0 and widths or nil +end + +-- Convert Pandoc table to OpenXML with custom styling +-- widths_str: optional comma-separated percentages (e.g., "30,70") +-- width_pct: optional table width as percentage of page (e.g., "50" for half width) +-- font_size_pt: optional font size in points (e.g., 9) +-- overrides: optional table of per-table overrides (header_bold, header_shading) +local function styled_table_to_openxml(tbl, style_name, widths_str, width_pct, font_size_pt, overrides) + local style = table_styles[style_name] + if not style then + debug("[table-style] Unknown table style: " .. style_name .. "\n") + return nil + end + + -- Apply per-table overrides from div attributes (header-bold, header-shading) + overrides = overrides or {} + local eff_header_bold = style.header_bold + local eff_header_shading = style.header_shading + if overrides.header_bold ~= nil then + eff_header_bold = overrides.header_bold + end + if overrides.header_shading then + eff_header_shading = overrides.header_shading + end + + debug("[table-style] Applying style '" .. style_name .. "' to table\n") + + -- Get table dimensions + local num_cols = 0 + local rows = {} + + -- Process table head + if tbl.head and tbl.head.rows then + for _, row in ipairs(tbl.head.rows) do + local cells = {} + for _, cell in ipairs(row.cells) do + table.insert(cells, { content = cell, is_header = true }) + num_cols = math.max(num_cols, #row.cells) + end + table.insert(rows, { cells = cells, is_header_row = true }) + end + end + + -- Process table body + if tbl.bodies then + for _, body in ipairs(tbl.bodies) do + if body.body then + for _, row in ipairs(body.body) do + local cells = {} + for _, cell in ipairs(row.cells) do + table.insert(cells, { content = cell, is_header = false }) + num_cols = math.max(num_cols, #row.cells) + end + table.insert(rows, { cells = cells, is_header_row = false }) + end + end + end + end + + -- Calculate table width (default 9000 twips = ~6.25 inches = full text width) + local full_width = 9000 + local total_width = full_width + + -- Apply width percentage if specified (e.g., "50" for half width) + if width_pct then + local pct = tonumber(width_pct) + if pct and pct > 0 and pct <= 100 then + total_width = math.floor(full_width * pct / 100) + debug("[table-style] Using table width: " .. pct .. "%\n") + end + end + + -- Calculate column widths + local col_widths = {} + local widths = parse_widths(widths_str) + + if widths and #widths == num_cols then + -- Use specified percentages + local total_pct = 0 + for _, w in ipairs(widths) do + total_pct = total_pct + w + end + for i, w in ipairs(widths) do + col_widths[i] = math.floor(total_width * w / total_pct) + end + debug("[table-style] Using custom column widths: " .. widths_str .. "\n") + else + -- Auto-compute widths from cell content. + -- For each column: find the longest single word (minimum width to avoid + -- mid-word breaks), then distribute remaining space by total text volume. + + -- Approximate characters that fit in the full table width + -- ~11 chars/inch at 10pt Calibri, scale inversely with font size + local base_font = font_size_pt or 10 + local chars_per_inch = 11 * (10 / base_font) + local total_chars = math.floor(6.5 * chars_per_inch) + + -- Collect text per column (header + all body cells) + local col_texts = {} + for i = 1, num_cols do col_texts[i] = {} end + for _, row in ipairs(rows) do + for col_idx, cell in ipairs(row.cells) do + if col_idx <= num_cols then + local text = "" + if cell.content then + text = pandoc.utils.stringify(cell.content) + end + table.insert(col_texts[col_idx], text) + end + end + end + + local min_chars = {} + local volume = {} + for i = 1, num_cols do + -- Longest single word in this column (determines minimum width) + local max_word = 1 + for _, text in ipairs(col_texts[i]) do + for word in text:gmatch("%S+") do + max_word = math.max(max_word, #word) + end + end + min_chars[i] = max_word + 1 -- +1 char padding + + -- Total text volume (drives proportional allocation) + local vol = 0 + for _, text in ipairs(col_texts[i]) do + vol = vol + #text + end + volume[i] = math.max(vol, 1) + end + + -- Convert minimum chars to percentage of page + local min_pct = {} + local sum_min = 0 + for i = 1, num_cols do + min_pct[i] = min_chars[i] / total_chars * 100 + sum_min = sum_min + min_pct[i] + end + + local auto_widths = {} + if sum_min >= 100 then + -- Minimums fill the page; scale proportionally + for i = 1, num_cols do + auto_widths[i] = min_pct[i] / sum_min * 100 + end + else + -- Allocate minimums, distribute remaining space by volume + local remaining = 100 - sum_min + local total_vol = 0 + for i = 1, num_cols do total_vol = total_vol + volume[i] end + for i = 1, num_cols do + auto_widths[i] = min_pct[i] + (volume[i] / total_vol * remaining) + end + end + + -- Convert percentages to twips, adjusting for rounding + local sum_tw = 0 + for i = 1, num_cols do + col_widths[i] = math.floor(total_width * auto_widths[i] / 100) + sum_tw = sum_tw + col_widths[i] + end + -- Give rounding remainder to the widest column + local widest = 1 + for i = 2, num_cols do + if col_widths[i] > col_widths[widest] then widest = i end + end + col_widths[widest] = col_widths[widest] + (total_width - sum_tw) + + -- Log the computed widths + local pcts = {} + for i = 1, num_cols do + table.insert(pcts, tostring(math.floor(auto_widths[i] + 0.5))) + end + debug("[table-style] Auto-computed column widths: " .. table.concat(pcts, ",") .. "\n") + end + + -- Build table properties XML + -- Add small bottom cell margin (~0.5 line = 120 twips) for breathing room + local cell_margin_xml = '' + + local tblPr_parts = { + "", + '', + build_tblBorders_xml(style.borders), + '', + cell_margin_xml, + "" + } + + -- Build grid columns + local grid_parts = { "" } + for i = 1, num_cols do + table.insert(grid_parts, '') + end + table.insert(grid_parts, "") + + -- Build rows + -- Pre-compute font size string once (table-level constant) + local half_pts = font_size_pt and tostring(font_size_pt * 2) or nil + + local row_parts = {} + for _, row in ipairs(rows) do + local row_xml = { "" } + + -- Build row-level run properties (same for all cells in this row) + local rPr_parts = {} + if row.is_header_row and eff_header_bold then + table.insert(rPr_parts, "") + end + if half_pts then + table.insert(rPr_parts, '') + table.insert(rPr_parts, '') + end + local rPr = "" + if #rPr_parts > 0 then + rPr = "" .. table.concat(rPr_parts) .. "" + end + + -- Paragraph properties for single line spacing (no space after) + local pPr = '' + + -- Helper: render a list of inlines to a Word paragraph + local function build_rich_para(inlines) + if #inlines == 0 then return nil end + local runs_xml = fcu.render_inlines(inlines, rPr_parts) + if runs_xml == "" then return nil end + return "" .. pPr .. runs_xml .. "" + end + + for col_idx, cell in ipairs(row.cells) do + -- Cell properties + local tcPr_parts = { + "", + '' + } + + -- Add header shading if this is a header row + if row.is_header_row and eff_header_shading then + table.insert(tcPr_parts, build_shading_xml(eff_header_shading)) + end + + table.insert(tcPr_parts, "") + + -- Build paragraphs for the cell using the inline renderer + -- This preserves bold, italic, comments, char-style spans, etc. + local paragraphs = {} + + -- Get the cell's content blocks + local cell_blocks = {} + if cell.content and cell.content.contents then + cell_blocks = cell.content.contents + elseif cell.content then + cell_blocks = cell.content + end + + -- Process each block in the cell + for _, block in ipairs(cell_blocks) do + if block.content then + -- Split content on LineBreak elements to create separate Word paragraphs + local current_line = {} + + for _, inline in ipairs(block.content) do + if inline.t == "LineBreak" then + local para = build_rich_para(current_line) + if para then table.insert(paragraphs, para) end + current_line = {} + else + table.insert(current_line, inline) + end + end + + -- Last line (after final LineBreak or if no LineBreak) + if #current_line > 0 then + local para = build_rich_para(current_line) + if para then table.insert(paragraphs, para) end + end + else + -- Block without inline content — stringify as fallback + local text = pandoc.utils.stringify(block) + if text ~= "" then + table.insert(paragraphs, + "" .. pPr .. "" .. rPr .. + '' .. fcu.xml_escape(text) .. "") + end + end + end + + -- If no paragraphs found (shouldn't happen), add empty paragraph + if #paragraphs == 0 then + table.insert(paragraphs, "" .. pPr .. "" .. rPr .. "") + end + + -- Build cell XML with all paragraphs + local cell_xml = "" .. + table.concat(tcPr_parts) .. + table.concat(paragraphs) .. + "" + + table.insert(row_xml, cell_xml) + end + + table.insert(row_xml, "") + table.insert(row_parts, table.concat(row_xml)) + end + + -- Assemble complete table XML + local table_xml = "" .. + table.concat(tblPr_parts) .. + table.concat(grid_parts) .. + table.concat(row_parts) .. + "" + + return table_xml +end + +-- Find table style class in div classes +local function find_table_style(classes) + for _, class in ipairs(classes) do + if table_styles and table_styles[class] then + return class + end + end + return nil +end + +-- Keys to skip when collecting div attributes for field code payload +-- (Pandoc-internal keys that should not be serialised) +local skip_attr_keys = { id = true, ["data-pos"] = true } + +-- Process Div elements looking for table style classes +function Div(div) + -- Check if this div has a table style class + local style_name = find_table_style(div.classes) + if not style_name then + return nil + end + + -- Only process for docx output + if FORMAT ~= "openxml" then + return nil + end + + -- Extract attributes if present + -- Usage: ::: {.table-formal widths="30,70" width="50" font-size="9"} + local widths_str = div.attributes["widths"] -- column widths (e.g., "30,70") + local width_pct = div.attributes["width"] -- table width % (e.g., "50") + local font_size_str = div.attributes["font-size"] -- font size in pt (e.g., "9") + + -- Find Table element inside the div (search recursively through nested Divs, + -- since Quarto wraps R code chunk output in .cell > .cell-output-display divs) + local function find_table(blocks) + for _, block in ipairs(blocks) do + if block.t == "Table" then + return block + elseif block.t == "Div" and block.content then + local found = find_table(block.content) + if found then return found end + end + end + return nil + end + local tbl = find_table(div.content) + + if not tbl then + debug("[table-style] No table found in ." .. style_name .. " div\n") + return nil + end + + -- Parse font size (points) + local font_size_pt = nil + if font_size_str then + font_size_pt = tonumber(font_size_str) + if font_size_pt then + debug("[table-style] Using font size: " .. font_size_pt .. "pt\n") + end + end + + -- Also check for CSS-config font size if not specified as div attribute + if not font_size_pt then + local style = table_styles[style_name] + if style and style.font_size_half_pts then + font_size_pt = style.font_size_half_pts / 2 + debug("[table-style] Using CSS font size: " .. font_size_pt .. "pt\n") + end + end + + -- Parse per-table header overrides from div attributes + local overrides = {} + local hb = div.attributes["header-bold"] + if hb then + overrides.header_bold = (hb == "true" or hb == "1") + end + local hs = div.attributes["header-shading"] + if hs and hs ~= "" then + overrides.header_shading = hs:gsub("^#", "") -- strip leading # if present + end + + -- Convert to styled OpenXML + local table_xml = styled_table_to_openxml(tbl, style_name, widths_str, width_pct, font_size_pt, overrides) + if not table_xml then + return nil + end + + -- Build field code payload and wrap table with ADDIN DOCSTYLE markers + -- Filter out Pandoc-internal keys before passing to field code builder + local attrs = {} + for key, val in pairs(div.attributes) do + if val and val ~= "" and not skip_attr_keys[key] then + attrs[key] = val + end + end + local field_start = fcu.build_table_field_start(style_name, attrs) + local field_end = fcu.build_block_field_end() + + return pandoc.Blocks({ + pandoc.RawBlock("openxml", field_start), + pandoc.RawBlock("openxml", table_xml), + pandoc.RawBlock("openxml", field_end) + }) +end + +-- Initialise format and load table styles once +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + init_table_styles() + return nil +end + +return { + { Pandoc = Pandoc }, + { Div = Div } +} diff --git a/_extensions/docstyle/toc-field.lua b/_extensions/docstyle/toc-field.lua new file mode 100644 index 0000000..12c221a --- /dev/null +++ b/_extensions/docstyle/toc-field.lua @@ -0,0 +1,214 @@ +-- toc-field.lua +-- Pandoc Lua filter that injects Word TOC field codes +-- +-- Usage in QMD: +-- ::: {.toc} +-- ::: +-- +-- Configuration in _quarto.yml (under docstyle.toc): +-- title: "Contents" # Optional heading above TOC +-- title-level: 1 # Heading level for title (default: 1) +-- levels: "1-3" # Which heading levels to include +-- page-numbers: true # Show page numbers +-- hyperlinks: true # Make entries clickable +-- tab-leader: "dot" # dot, dash, underscore, none +-- +-- This filter finds Div elements with class "toc" and replaces them with +-- Word TOC field codes, enabling dynamic table of contents in Word. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local FORMAT = "openxml" + +-- Default configuration +local toc_config = { + title = nil, -- No title by default + title_level = 1, -- # heading + levels = "1-3", + page_numbers = true, + hyperlinks = true, + tab_leader = "dot" +} + +-- Read configuration from metadata +function Meta(meta) + if meta.docstyle and meta.docstyle.toc then + local toc = meta.docstyle.toc + + if toc.title then + toc_config.title = pandoc.utils.stringify(toc.title) + end + + if toc["title-level"] then + toc_config.title_level = tonumber(pandoc.utils.stringify(toc["title-level"])) or 1 + end + + if toc.levels then + toc_config.levels = pandoc.utils.stringify(toc.levels) + end + + if toc["page-numbers"] ~= nil then + local val = toc["page-numbers"] + if type(val) == "boolean" then + toc_config.page_numbers = val + else + toc_config.page_numbers = pandoc.utils.stringify(val) ~= "false" + end + end + + if toc.hyperlinks ~= nil then + local val = toc.hyperlinks + if type(val) == "boolean" then + toc_config.hyperlinks = val + else + toc_config.hyperlinks = pandoc.utils.stringify(val) ~= "false" + end + end + + if toc["tab-leader"] then + toc_config.tab_leader = pandoc.utils.stringify(toc["tab-leader"]) + end + + io.stderr:write("[toc-field] Config: levels=" .. toc_config.levels .. + ", page-numbers=" .. tostring(toc_config.page_numbers) .. + ", hyperlinks=" .. tostring(toc_config.hyperlinks) .. + ", tab-leader=" .. toc_config.tab_leader .. "\n") + end + + return nil +end + +-- Normalize levels to a range format (Word requires "1-3" not just "1") +local function normalize_levels(levels) + -- If already a range (contains "-"), return as-is + if string.find(levels, "-") then + return levels + end + -- Single number: convert to range "n-n" + return levels .. "-" .. levels +end + +-- Build the TOC field instruction text +local function build_toc_instr() + -- TOC field switches: + -- \o "1-3" - Include heading levels 1-3 + -- \h - Hyperlink entries to headings + -- \z - Hide tab leader and page numbers in Web Layout view + -- \u - Use applied paragraph outline level + -- \n - Suppress page numbers (if page-numbers: false) + + local switches = {} + + -- Heading levels (normalize to range format) + local levels_range = normalize_levels(toc_config.levels) + table.insert(switches, '\\o "' .. levels_range .. '"') + + -- Hyperlinks + if toc_config.hyperlinks then + table.insert(switches, "\\h") + end + + -- Hide formatting in web view + table.insert(switches, "\\z") + + -- Use outline levels + table.insert(switches, "\\u") + + -- Suppress page numbers if disabled + if not toc_config.page_numbers then + table.insert(switches, "\\n") + end + + return "TOC " .. table.concat(switches, " ") +end + +-- Build the OpenXML for a TOC field code +local function build_toc_field_xml() + local instr = build_toc_instr() + + -- Pad instruction text (Word requires leading/trailing spaces) + instr = " " .. instr .. " " + + -- Build the 5-part Word field code structure + local xml = '' .. + '' .. + '' .. instr .. '' .. + '' .. + '[Update field to generate table of contents]' .. + '' .. + '' + + return xml +end + +-- Build a heading element for the TOC title +-- Uses the configured title-level to determine the Word style +-- title-level: 1 -> Heading1, 2 -> Heading2, etc. +local function build_title_blocks() + if not toc_config.title then + return {} + end + + -- Map title-level to Word heading style + -- Default to Heading1 if title_level is 1 or not specified + local style_id = "Heading" .. tostring(toc_config.title_level) + + -- Build OpenXML paragraph with the appropriate Heading style + local title_xml = '' .. + '' .. + '' .. toc_config.title .. '' .. + '' + + return { pandoc.RawBlock("openxml", title_xml) } +end + +-- Process Div elements looking for .toc class +function Div(div) + -- Check if this div has the "toc" class + if not div.classes:includes("toc") then + return nil + end + + -- Only process for docx output + if not FORMAT or FORMAT ~= "openxml" then + io.stderr:write("[toc-field] Skipping TOC injection (not docx output)\n") + return nil + end + + io.stderr:write("[toc-field] Found .toc div, injecting TOC field code\n") + + -- Build the result blocks + local blocks = {} + + -- ADDIN DOCSTYLE field code begin (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_div_field_start("toc"))) + + -- Add title heading if configured + local title_blocks = build_title_blocks() + for _, block in ipairs(title_blocks) do + table.insert(blocks, block) + end + + -- Add the TOC field code + local toc_xml = build_toc_field_xml() + table.insert(blocks, pandoc.RawBlock("openxml", toc_xml)) + + -- ADDIN DOCSTYLE field code end (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_block_field_end())) + + return blocks +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +return { + { Meta = Meta }, + { Div = Div } +} diff --git a/_extensions/docstyle/update-field-codes.R b/_extensions/docstyle/update-field-codes.R new file mode 100755 index 0000000..0719b2d --- /dev/null +++ b/_extensions/docstyle/update-field-codes.R @@ -0,0 +1,392 @@ +#!/usr/bin/env Rscript +# Post-render hook: Inject comments, Zotero components, and update field-codes.json +# +# This script is called by Quarto after rendering to: +# 1. Inject comments from comments.json into the rendered DOCX +# 2. Inject Zotero components (ZOTERO_PREF) for full round-trip support +# 3. Extract Zotero field codes and merge into field-codes.json (for caching) +# 4. Validate the rendered document (optional) +# +# The comment-inject.lua filter creates comment markers in document.xml, +# but the actual comments.xml must be built from the JSON sidecar file. +# +# Usage in _quarto.yml: +# project: +# post-render: _extensions/docstyle/update-field-codes.R +# +# Environment variables (set by Quarto): +# QUARTO_PROJECT_OUTPUT_FILES - newline-separated list of output files +# +# Optional environment variables: +# DOCSTYLE_VALIDATE=1 - Enable DOCX structure validation +# DOCSTYLE_VALIDATE_COMMENTS=1 - Enable comment validation +# DOCSTYLE_VALIDATE_ZOTERO=1 - Enable Zotero field code validation +# DOCSTYLE_DEBUG=1 - Enable verbose debug output + +# Get output files from Quarto +output_files_env <- Sys.getenv("QUARTO_PROJECT_OUTPUT_FILES", "") + +if (nchar(output_files_env) == 0) { + + # Not running as Quarto hook, exit silently + quit(save = "no", status = 0) +} + +output_files <- strsplit(output_files_env, "\n")[[1]] +docx_files <- output_files[grepl("\\.docx$", output_files, ignore.case = TRUE)] + +if (length(docx_files) == 0) { + # No DOCX files rendered, nothing to do + quit(save = "no", status = 0) +} + +# Try to load docstyle (check installed package first, then try devtools::load_all) +docstyle_loaded <- FALSE + +if (requireNamespace("docstyle", quietly = TRUE)) { + docstyle_loaded <- TRUE +} else { + # Try to find and load from development source + # First, try relative to this script (follows symlinks to find package root) + script_path <- tryCatch({ + args <- commandArgs(trailingOnly = FALSE) + file_arg <- grep("^--file=", args, value = TRUE) + if (length(file_arg) > 0) { + normalizePath(sub("^--file=", "", file_arg), mustWork = FALSE) + } else { + NULL + } + }, error = function(e) NULL) + + # Build search paths: script location parents + project parents + project_dir <- Sys.getenv("QUARTO_PROJECT_DIR", getwd()) + search_dirs <- c( + project_dir, + dirname(project_dir), + dirname(dirname(project_dir)), + dirname(dirname(dirname(project_dir))) + ) + + # Add script-relative paths (for symlinked extensions) + if (!is.null(script_path) && file.exists(script_path)) { + script_dir <- dirname(script_path) + # Script is in _extensions/docstyle/, package root is 2 levels up + search_dirs <- c( + dirname(dirname(script_dir)), # Package root (e.g., /path/to/docstyle) + search_dirs + ) + } + + search_dirs <- unique(search_dirs) + + for (dir in search_dirs) { + desc_path <- file.path(dir, "DESCRIPTION") + if (file.exists(desc_path)) { + desc_content <- readLines(desc_path, n = 1, warn = FALSE) + if (grepl("Package:\\s*docstyle", desc_content)) { + if (requireNamespace("devtools", quietly = TRUE)) { + tryCatch({ + devtools::load_all(dir, quiet = TRUE) + docstyle_loaded <- TRUE + break + }, error = function(e) NULL) + } + } + } + } +} + +if (!docstyle_loaded) { + message("[post-render] docstyle package not found, skipping comment injection") + quit(save = "no", status = 0) +} + +# Resolve project dir once — used for path normalisation and _docstyle/ lookup +project_dir <- Sys.getenv("QUARTO_PROJECT_DIR", getwd()) + +# Helper: resolve a docx path that may be relative to the document directory +# rather than the project root (happens when output-dir: ../_site/docs in a +# subdirectory _quarto.yml). QUARTO_PROJECT_OUTPUT_FILES is built by Quarto +# as relative3(projDir, outputFile) but when output-dir contains ".." the +# resolved path goes above projDir. QUARTO_DOCUMENT_PATH is always the +# document's directory — try that as a fallback base. +resolve_docx_path <- function(path, project_dir) { + if (file.exists(path)) return(path) + # Try relative to project root + attempt <- normalizePath(file.path(project_dir, path), mustWork = FALSE) + if (file.exists(attempt)) return(attempt) + # Try relative to document directory (handles output-dir: ../_site/... in subdirs) + doc_path <- Sys.getenv("QUARTO_DOCUMENT_PATH", "") + if (nzchar(doc_path)) { + attempt2 <- normalizePath(file.path(doc_path, path), mustWork = FALSE) + if (file.exists(attempt2)) return(attempt2) + } + path # return original; caller handles missing file +} + +# Process each DOCX file +for (docx_path in docx_files) { + docx_path <- resolve_docx_path(docx_path, project_dir) + if (!file.exists(docx_path)) { + next + } + + # Determine output directory for field-codes.json + # Use _docstyle/ in project root if it exists, otherwise same dir as DOCX + docstyle_dir <- file.path(project_dir, "_docstyle") + + if (dir.exists(docstyle_dir)) { + output_dir <- docstyle_dir + } else { + output_dir <- dirname(docx_path) + } + + # Collect summary info + n_comments <- 0 + zotero_pref_injected <- FALSE + + # Debug mode (used throughout) + debug_mode <- Sys.getenv("DOCSTYLE_DEBUG", "0") == "1" + + # Step 1: Inject comments from comments.json (if present) + comments_json <- file.path(output_dir, "comments.json") + if (file.exists(comments_json)) { + tryCatch({ + # Scan for comment IDs used in the rendered document + used_ids <- docstyle::scan_used_comment_ids(docx_path) + + if (length(used_ids) > 0) { + # Validate that used IDs exist in comments.json before injection + # This prevents corrupt DOCX when QMD and JSON are out of sync + comments <- docstyle::read_comments_json(comments_json) + json_ids <- names(comments) + missing_ids <- setdiff(used_ids, json_ids) + + if (length(missing_ids) > 0) { + # Critical error: QMD references comments not in JSON + message("[docstyle] ERROR: Comment ID mismatch detected!") + message(" Document references ", length(missing_ids), " comment ID(s) not in comments.json:") + message(" ", paste(missing_ids, collapse = ", ")) + message(" This would produce a corrupt DOCX file.") + message(" To fix: Run docstyle::sync_comment_ids() to re-sync IDs from source DOCX") + message(" Skipping comment injection to prevent corruption.") + # Don't inject - leave document without comments rather than corrupt it + } else { + docstyle::inject_comments( + docx_path = docx_path, + comments_json = comments_json, + used_ids = used_ids + ) + n_comments <- length(used_ids) + } + } + }, error = function(e) { + message("[docstyle] Error injecting comments: ", conditionMessage(e)) + }) + } + + # Step 1b: Fix comment-deletion nesting + # Comments attached to deleted text end up after the deletion due to Lua filter + # limitations. This repositions them to span the deletion properly. + if (n_comments > 0) { + tryCatch({ + n_fixed <- docstyle::fix_comment_deletion_nesting( + docx_path = docx_path, + verbose = debug_mode + ) + if (n_fixed > 0 && debug_mode) { + message("[docstyle] Fixed ", n_fixed, " comment-deletion nesting issue(s)") + } + }, error = function(e) { + message("[docstyle] Error fixing comment nesting: ", conditionMessage(e)) + }) + } + + # Step 1c: Inject Zotero citation field codes from markers + # The Lua filter emits DOCSTYLE_CITE:: markers; this replaces them with + # real Word field code XML using data from field-codes.json. + n_citations_injected <- 0L + field_codes_json <- file.path(output_dir, "field-codes.json") + if (file.exists(field_codes_json)) { + tryCatch({ + cite_result <- docstyle::inject_zotero_citations( + docx_path = docx_path, + field_codes_path = field_codes_json, + verbose = debug_mode + ) + n_citations_injected <- cite_result$n_injected + }, error = function(e) { + message("[docstyle] Error injecting Zotero citations: ", conditionMessage(e)) + }) + } + + # Step 2: Validate comments (if enabled via DOCSTYLE_VALIDATE_COMMENTS=1) + validate_comments <- Sys.getenv("DOCSTYLE_VALIDATE_COMMENTS", "0") + if (validate_comments == "1" && file.exists(comments_json)) { + tryCatch({ + result <- docstyle::validate_comments( + docx_path = docx_path, + comments_json = comments_json, + verbose = TRUE + ) + if (!result$valid) { + message("[docstyle] Comment validation failed") + } + }, error = function(e) { + message("[docstyle] Error validating comments: ", conditionMessage(e)) + }) + } + + # Step 2b: Validate DOCX structure (if enabled via DOCSTYLE_VALIDATE=1) + # Catches XML issues, malformed tracked changes, duplicate IDs, etc. + validate_structure <- Sys.getenv("DOCSTYLE_VALIDATE", "0") + if (debug_mode) { + message("[docstyle] DOCSTYLE_VALIDATE=", validate_structure) + } + if (validate_structure == "1") { + tryCatch({ + result <- docstyle::validate_docx_structure( + docx_path = docx_path, + verbose = debug_mode + ) + if (!result$valid) { + message("[docstyle] Structure validation: ", length(result$errors), " issue(s) found") + for (err in result$errors) { + message(" - ", err) + } + } else if (debug_mode) { + message("[docstyle] Structure validation: passed all checks") + } + }, error = function(e) { + message("[docstyle] Error validating structure: ", conditionMessage(e)) + }) + } + + # Step 3: Inject Zotero components (ZOTERO_PREF if missing) + # This ensures rendered documents have full Zotero functionality for round-trip editing + tryCatch({ + result <- docstyle::inject_zotero_components( + docx_path = docx_path, + field_codes_json = if (file.exists(field_codes_json)) field_codes_json else NULL, + validate = FALSE, # Will validate separately if enabled + verbose = debug_mode + ) + if (result$zotero_pref_injected) { + zotero_pref_injected <- TRUE + if (debug_mode) { + message("[docstyle] Injected ZOTERO_PREF (style: ", result$style_id, ")") + } + } + }, error = function(e) { + if (debug_mode) { + message("[docstyle] Error injecting Zotero components: ", conditionMessage(e)) + } + }) + + # Step 3b: Validate Zotero field codes (if enabled via DOCSTYLE_VALIDATE_ZOTERO=1) + validate_zotero <- Sys.getenv("DOCSTYLE_VALIDATE_ZOTERO", "0") + if (validate_zotero == "1") { + tryCatch({ + result <- docstyle::validate_zotero( + docx_path = docx_path, + verbose = debug_mode + ) + if (!result$valid) { + message("[docstyle] Zotero validation: ", length(result$issues$errors), " error(s)") + for (err in result$issues$errors) { + message(" - ", err) + } + } else if (debug_mode) { + message("[docstyle] Zotero validation: passed all checks") + } + }, error = function(e) { + message("[docstyle] Error validating Zotero: ", conditionMessage(e)) + }) + } + + # Note: Step 4 (extract and merge field codes) was removed in v0.7.6. + # The render pipeline is read-only with respect to field-codes.json. + # New citations only enter via harvest (docx_to_qmd), not via render. + # See: https://github.com/DougManuel/docstyle/issues/38 + + # Step 5: Finalize section structure + # Post-process sectPr elements: remove leaked line numbers from body sectPr, + # validate opening/closing sectPr have correct properties + n_sections_fixed <- 0L + body_sectPr_fixed <- FALSE + tryCatch({ + result <- docstyle::finalize_docx( + docx_path = docx_path, + verbose = debug_mode + ) + n_sections_fixed <- result$fixed + body_sectPr_fixed <- isTRUE(result$body_fixed) + }, error = function(e) { + message("[docstyle] Error finalizing sections: ", conditionMessage(e)) + }) + + # Step 6: Prune unused styles (remove Pandoc bloat) + n_styles_pruned <- 0L + tryCatch({ + n_styles_pruned <- docstyle::prune_styles_file( + docx_path = docx_path, + sidecar_dir = output_dir, + verbose = debug_mode + ) + }, error = function(e) { + message("[docstyle] Error pruning styles: ", conditionMessage(e)) + }) + + # Step 7: Scan for unresolved citations (always runs) + # Any [@citekey] text remaining in the output means the citation could not + # be resolved to a Zotero field code. This catches both Lua-filter misses + # (citekey not in field-codes.json) and R-finisher fallbacks. + unresolved_cites <- character() + tryCatch({ + unresolved_cites <- docstyle::scan_unresolved_citations(docx_path) + }, error = function(e) { + if (debug_mode) { + message("[docstyle] Error scanning for unresolved citations: ", conditionMessage(e)) + } + }) + + # Partition unresolved citations into staged vs unknown. + # Staged: metadata exists in field-codes.json citations catalog but no citationGroup + # (added via add_citations_from_zotero() or QMD-first drafting — expected during drafting) + # Unknown: no metadata at all — likely a typo or missing harvest + staged_cites <- character() + unknown_cites <- character() + if (length(unresolved_cites) > 0 && file.exists(field_codes_json)) { + tryCatch({ + fc_obj <- jsonlite::fromJSON(field_codes_json, simplifyVector = FALSE) + known_keys <- names(fc_obj$citations %||% list()) + staged_cites <- unresolved_cites[unresolved_cites %in% known_keys] + unknown_cites <- unresolved_cites[!unresolved_cites %in% known_keys] + }, error = function(e) { + unknown_cites <<- unresolved_cites + }) + } else { + unknown_cites <- unresolved_cites + } + + # Print single summary line + parts <- character() + if (n_comments > 0) parts <- c(parts, sprintf("%d comment%s", n_comments, if (n_comments == 1) "" else "s")) + if (n_citations_injected > 0) parts <- c(parts, sprintf("%d citation%s injected", n_citations_injected, if (n_citations_injected == 1) "" else "s")) + if (zotero_pref_injected) parts <- c(parts, "ZOTERO_PREF injected") + if (body_sectPr_fixed) parts <- c(parts, "section structure finalized") + if (n_styles_pruned > 0) parts <- c(parts, sprintf("%d style%s pruned", n_styles_pruned, if (n_styles_pruned == 1) "" else "s")) + if (length(parts) > 0) { + message("[docstyle] Processed: ", paste(parts, collapse = ", ")) + } + if (length(staged_cites) > 0) { + message("[docstyle] Info: ", length(staged_cites), + " staged citation(s) pending Zotero insertion in Word: ", + paste(staged_cites, collapse = ", ")) + } + if (length(unknown_cites) > 0) { + message("[docstyle] Warning: ", length(unknown_cites), + " unresolved citation(s) with no metadata — check citekeys or re-harvest: ", + paste(unknown_cites, collapse = ", ")) + } +} diff --git a/_extensions/docstyle/validate-markup.R b/_extensions/docstyle/validate-markup.R new file mode 100755 index 0000000..f13d016 --- /dev/null +++ b/_extensions/docstyle/validate-markup.R @@ -0,0 +1,144 @@ +#!/usr/bin/env Rscript +# Pre-render hook: Validate QMD markup before rendering +# +# This script validates comment markers, revision spans, and other +# docstyle-specific markup before Quarto renders the document. +# It catches issues that would cause Word "unreadable content" errors. +# +# Usage in _quarto.yml: +# project: +# pre-render: +# - _extensions/docstyle/validate-markup.R +# - _extensions/docstyle/generate-reference.R +# +# Environment variables (set by Quarto): +# QUARTO_PROJECT_DIR - project root directory +# QUARTO_PROJECT_INPUT_FILES - files being rendered +# +# Exit codes: +# 0 - Validation passed (or skipped) +# 1 - Validation failed (stops render) + +# Get input files from Quarto +input_files_env <- Sys.getenv("QUARTO_PROJECT_INPUT_FILES", "") +project_dir <- Sys.getenv("QUARTO_PROJECT_DIR", getwd()) + +if (nchar(input_files_env) == 0) { + # Not running as Quarto hook, exit silently + quit(save = "no", status = 0) +} + +# Parse input files (newline-separated) +input_files <- strsplit(input_files_env, "\n")[[1]] +qmd_files <- input_files[grepl("\\.qmd$", input_files, ignore.case = TRUE)] + +if (length(qmd_files) == 0) { + # No QMD files being rendered, nothing to validate + quit(save = "no", status = 0) +} + +# Try to load docstyle +docstyle_loaded <- FALSE + +if (requireNamespace("docstyle", quietly = TRUE)) { + docstyle_loaded <- TRUE +} else { + # Try to find and load from development source + search_dirs <- c( + project_dir, + dirname(project_dir), + dirname(dirname(project_dir)), + dirname(dirname(dirname(project_dir))), + dirname(dirname(dirname(dirname(project_dir)))) + ) + + for (dir in search_dirs) { + desc_path <- file.path(dir, "DESCRIPTION") + if (file.exists(desc_path)) { + desc_content <- readLines(desc_path, n = 1, warn = FALSE) + if (grepl("Package:\\s*docstyle", desc_content)) { + if (requireNamespace("devtools", quietly = TRUE)) { + tryCatch({ + devtools::load_all(dir, quiet = TRUE) + docstyle_loaded <- TRUE + break + }, error = function(e) NULL) + } + } + } + } +} + +if (!docstyle_loaded) { + message("[validate-markup] docstyle package not found, skipping validation") + quit(save = "no", status = 0) +} + +# Find sidecar directory for comments.json +sidecar_dir <- file.path(project_dir, "_docstyle") +if (!dir.exists(sidecar_dir)) { + # Try relative to first QMD file + sidecar_dir <- file.path(dirname(qmd_files[1]), "_docstyle") +} + +comments_json <- if (dir.exists(sidecar_dir)) { + json_path <- file.path(sidecar_dir, "comments.json") + if (file.exists(json_path)) json_path else NULL +} else { + NULL +} + +# Validate each QMD file +all_valid <- TRUE +total_errors <- 0 +total_warnings <- 0 + +cat("\n") +cat("=== docstyle Markup Validation ===\n") + +for (qmd_path in qmd_files) { + # Make path absolute if needed + if (!startsWith(qmd_path, "/")) { + qmd_path <- file.path(project_dir, qmd_path) + } + + if (!file.exists(qmd_path)) { + next + } + + cat(sprintf("\nValidating: %s\n", basename(qmd_path))) + + result <- tryCatch({ + docstyle::validate_qmd( + qmd_path = qmd_path, + comments_json = comments_json, + verbose = TRUE + ) + }, error = function(e) { + message("[validate-markup] Error: ", conditionMessage(e)) + list(valid = FALSE, issues = list(errors = conditionMessage(e), warnings = character())) + }) + + if (!result$valid) { + all_valid <- FALSE + } + total_errors <- total_errors + length(result$issues$errors) + total_warnings <- total_warnings + length(result$issues$warnings) +} + +cat("\n") +cat("=== Validation Summary ===\n") +cat(sprintf("Files: %d | Errors: %d | Warnings: %d\n", + length(qmd_files), total_errors, total_warnings)) + +if (!all_valid) { + cat("\n") + cat("ERROR: Validation failed. Fix errors before rendering.\n") + cat("Hint: Convert deprecated [text]{.comment id=\"X\"} to:\n") + cat(" - Range: text\n") + cat(" - Point: \n") + cat("\n") + quit(save = "no", status = 1) +} + +cat("\n") diff --git a/_extensions/docstyle/version-history.lua b/_extensions/docstyle/version-history.lua new file mode 100644 index 0000000..c820a89 --- /dev/null +++ b/_extensions/docstyle/version-history.lua @@ -0,0 +1,326 @@ +-- version-history.lua +-- Pandoc Lua filter that generates a version history table from YAML metadata +-- +-- Usage in QMD: +-- ::: version-history +-- ::: +-- +-- Configuration in _quarto.yml (under docstyle.version-history): +-- title: "Version history" # Heading text (or false to disable) +-- title-level: 1 # 1-6: uses Heading1-Heading6 style +-- widths: "15,70,15" # Column width percentages (Version, Description, Date) +-- style: "table-grid" # Table style: table-grid (all borders) or table-formal (top/bottom) +-- +-- Version entries in QMD YAML front matter: +-- version-history: +-- - version: "1.0.0" +-- date: "2025-01-15" +-- description: "Final release" +-- +-- This filter finds Div elements with class "version-history" and replaces them +-- with a Word table generated from the version-history metadata. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local FORMAT = "openxml" + +-- Built-in table style definitions (matching table-style.lua) +local table_styles = { + ["table-grid"] = { + borders = { + top = { val = "single", sz = "4", color = "000000" }, + bottom = { val = "single", sz = "4", color = "000000" }, + left = { val = "single", sz = "4", color = "000000" }, + right = { val = "single", sz = "4", color = "000000" }, + insideH = { val = "single", sz = "4", color = "000000" }, + insideV = { val = "single", sz = "4", color = "000000" } + }, + header_shading = nil, + header_bold = true + }, + ["table-formal"] = { + borders = { + top = { val = "single", sz = "4", color = "7F7F7F" }, + bottom = { val = "single", sz = "4", color = "7F7F7F" }, + left = nil, + right = nil, + insideH = nil, + insideV = nil + }, + header_shading = "D9D9D9", + header_bold = true + } +} + +-- Store version history from metadata +local version_history = nil +local div_found = false +local config = { + title = "Version history", + title_level = 1, + widths = {15, 70, 15}, -- Default: Version 15%, Description 70%, Date 15% + style = "table-grid" -- Default table style +} + +-- Use shared xml_escape from field-code-utils +local xml_escape = fcu.xml_escape + +-- Parse widths string "15,70,15" into table {15, 70, 15} +local function parse_widths(widths_str) + local widths = {} + for w in string.gmatch(widths_str, "([^,]+)") do + local num = tonumber(w) + if num then + table.insert(widths, num) + end + end + -- Ensure we have exactly 3 widths + if #widths ~= 3 then + return {15, 70, 15} -- Default + end + return widths +end + +-- Read configuration from metadata +function Meta(meta) + -- Get version history entries + if meta["version-history"] then + version_history = meta["version-history"] + io.stderr:write("[version-history] Found " .. #version_history .. " version entries in metadata\n") + end + + -- Get optional config from docstyle.version-history + if meta.docstyle and meta.docstyle["version-history"] then + local vh_config = meta.docstyle["version-history"] + + -- Title (string or false to disable) + if vh_config.title ~= nil then + local title_val = vh_config.title + if type(title_val) == "boolean" and not title_val then + config.title = nil -- Disable title + else + config.title = pandoc.utils.stringify(title_val) + end + end + + -- Title level (1-6) + if vh_config["title-level"] then + config.title_level = tonumber(pandoc.utils.stringify(vh_config["title-level"])) or 1 + end + + -- Column widths + if vh_config.widths then + local widths_str = pandoc.utils.stringify(vh_config.widths) + config.widths = parse_widths(widths_str) + io.stderr:write("[version-history] Column widths: " .. table.concat(config.widths, ", ") .. "\n") + end + + -- Table style + if vh_config.style then + local style_name = pandoc.utils.stringify(vh_config.style) + if table_styles[style_name] then + config.style = style_name + io.stderr:write("[version-history] Table style: " .. style_name .. "\n") + else + io.stderr:write("[version-history] Unknown table style '" .. style_name .. "', using default\n") + end + end + end + + return nil +end + +-- Build border XML element +local function build_border_xml(name, border) + if not border then return "" end + return string.format('', + name, border.val, border.sz, border.color) +end + +-- Build table borders XML from style definition +local function build_tblBorders_xml(borders) + if not borders then return "" end + + local parts = { "" } + if borders.top then table.insert(parts, build_border_xml("top", borders.top)) end + if borders.left then table.insert(parts, build_border_xml("left", borders.left)) end + if borders.bottom then table.insert(parts, build_border_xml("bottom", borders.bottom)) end + if borders.right then table.insert(parts, build_border_xml("right", borders.right)) end + if borders.insideH then table.insert(parts, build_border_xml("insideH", borders.insideH)) end + if borders.insideV then table.insert(parts, build_border_xml("insideV", borders.insideV)) end + table.insert(parts, "") + + return table.concat(parts) +end + +-- Build a table cell XML with optional width and shading +local function build_cell(text, bold, width_pct, shading) + local rPr = "" + if bold then + rPr = "" + end + + -- Width in fiftieths of a percent (5000 = 100%) + local tcPr_parts = { "" } + if width_pct then + local width_val = math.floor(width_pct * 50) -- Convert % to fiftieths + table.insert(tcPr_parts, '') + end + if shading then + table.insert(tcPr_parts, '') + end + table.insert(tcPr_parts, "") + + return '' .. + table.concat(tcPr_parts) .. + '' .. + '' .. rPr .. + '' .. xml_escape(text) .. '' .. + '' .. + '' .. + '' +end + +-- Build the version history table XML +local function build_table_xml() + if not version_history or #version_history == 0 then + return nil + end + + local w = config.widths + local style = table_styles[config.style] or table_styles["table-grid"] + + -- Header row with column widths (bold header if style specifies, with optional shading) + local header_bold = style.header_bold + local header_shading = style.header_shading + local header_row = '' .. + build_cell("Version", header_bold, w[1], header_shading) .. + build_cell("Description", header_bold, w[2], header_shading) .. + build_cell("Date", header_bold, w[3], header_shading) .. + '' + + -- Data rows + local data_rows = {} + for _, entry in ipairs(version_history) do + local version = "" + local description = "" + local date = "" + + if entry.version then + version = pandoc.utils.stringify(entry.version) + end + if entry.description then + description = pandoc.utils.stringify(entry.description) + end + if entry.date then + date = pandoc.utils.stringify(entry.date) + end + + local row = '' .. + build_cell(version, false, w[1], nil) .. + build_cell(description, false, w[2], nil) .. + build_cell(date, false, w[3], nil) .. + '' + table.insert(data_rows, row) + end + + -- Build table borders from style + local borders_xml = build_tblBorders_xml(style.borders) + + -- Complete table with style-defined borders + local table_xml = '' .. + '' .. + '' .. -- 100% width + borders_xml .. + '' .. + header_row .. + table.concat(data_rows) .. + '' + + return table_xml +end + +-- Build heading for the title +local function build_title_xml() + if not config.title then + return nil + end + + local style_id = "Heading" .. tostring(config.title_level) + + return '' .. + '' .. + '' .. xml_escape(config.title) .. '' .. + '' +end + +-- Process Div elements looking for .version-history class +function Div(div) + -- Check if this div has the "version-history" class + if not div.classes:includes("version-history") then + return nil + end + + div_found = true + + -- Only process for docx output + if FORMAT ~= "openxml" then + io.stderr:write("[version-history] Skipping (not docx output)\n") + return nil + end + + if not version_history or #version_history == 0 then + io.stderr:write("[version-history] No version-history metadata found\n") + return {} -- Remove the div entirely + end + + io.stderr:write("[version-history] Generating table with " .. #version_history .. " entries\n") + + -- Build the result blocks + local blocks = {} + + -- ADDIN DOCSTYLE field code begin (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_div_field_start("version-history"))) + + -- Add title heading + local title_xml = build_title_xml() + if title_xml then + table.insert(blocks, pandoc.RawBlock("openxml", title_xml)) + end + + -- Add the table + local table_xml = build_table_xml() + if table_xml then + table.insert(blocks, pandoc.RawBlock("openxml", table_xml)) + end + + -- ADDIN DOCSTYLE field code end (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_block_field_end())) + + return blocks +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +-- Warn if version-history metadata exists but no div was found +local function CheckUnused(doc) + if version_history and #version_history > 0 and not div_found then + io.stderr:write("[version-history] Warning: " .. #version_history .. + " version-history entries in metadata but no ::: version-history ::: " .. + "div in document. Add the div where you want the table to appear.\n") + end + return nil +end + +return { + { Meta = Meta, Pandoc = Pandoc }, + { Div = Div }, + { Pandoc = CheckUnused } +} diff --git a/_extensions/docstyle/zotero-inject.lua b/_extensions/docstyle/zotero-inject.lua new file mode 100644 index 0000000..e24b95a --- /dev/null +++ b/_extensions/docstyle/zotero-inject.lua @@ -0,0 +1,136 @@ +-- zotero-inject.lua +-- Pandoc Lua filter that emits text markers for Zotero citation field codes. +-- +-- The R finisher (inject_zotero_citations) replaces these markers with real +-- Word field code XML after Pandoc has finished rendering to docx. +-- +-- Markers: +-- DOCSTYLE_CITE::key1;key2 – citation (single or grouped) +-- DOCSTYLE_CITE_BIBL – bibliography placeholder +-- +-- Usage: +-- pandoc --lua-filter=zotero-inject.lua -M field-codes=path/to/field-codes.json ... + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Citekey existence lookup (populated from field-codes.json citations section) +local known_citekeys = {} + +-- Check if file exists +local function file_exists(path) + local f = io.open(path, "r") + if f then + f:close() + return true + end + return false +end + +-- Read field-codes.json at startup; populate known_citekeys +function Meta(meta) + local field_codes_path = nil + + -- Get path from metadata (explicit override) + if meta["field-codes"] then + field_codes_path = pandoc.utils.stringify(meta["field-codes"]) + end + + -- Auto-detect common locations if not specified + if not field_codes_path then + debug("[zotero-inject] Looking for field-codes.json...\n") + local search_paths = { + "_docstyle/field-codes.json", + "field-codes.json", + "../_docstyle/field-codes.json" + } + for _, path in ipairs(search_paths) do + debug("[zotero-inject] Checking: " .. path .. "\n") + if file_exists(path) then + field_codes_path = path + debug("[zotero-inject] Found field-codes.json: " .. path .. "\n") + break + end + end + end + + if not field_codes_path then + debug("[zotero-inject] No field-codes.json found; markers will not be emitted\n") + return nil + end + + -- Read and parse the JSON file + local file = io.open(field_codes_path, "r") + if not file then + debug("[zotero-inject] Could not open: " .. field_codes_path .. "\n") + return nil + end + + local content = file:read("*all") + file:close() + + local ok, parsed = pcall(function() + return pandoc.json.decode(content) + end) + + if not ok then + debug("[zotero-inject] Failed to parse field-codes.json\n") + return nil + end + + -- Build citekey existence set from citations catalog + local count = 0 + if parsed.citations then + for citekey, _ in pairs(parsed.citations) do + known_citekeys[citekey] = true + count = count + 1 + end + end + debug("[zotero-inject] Loaded " .. count .. " citekey(s) from field-codes.json\n") + + return nil +end + +-- Process Cite elements: emit text markers instead of raw OpenXML +function Cite(cite) + local citekeys = {} + for _, citation in ipairs(cite.citations) do + table.insert(citekeys, citation.id) + end + + if #citekeys == 0 then + return nil + end + + -- All citekeys must be known; otherwise fall back to Pandoc default rendering + for _, citekey in ipairs(citekeys) do + if not known_citekeys[citekey] then + debug("[zotero-inject] Skipping (unknown citekey): " .. citekey .. "\n") + return nil + end + end + + local marker = "DOCSTYLE_CITE::" .. table.concat(citekeys, ";") + debug("[zotero-inject] Emitting marker: " .. marker .. "\n") + return pandoc.Str(marker) +end + +-- Process Div elements: emit bibliography marker for bibliography placeholder +function Div(div) + if div.classes:includes("bibliography") then + debug("[zotero-inject] Emitting bibliography marker from div\n") + return pandoc.Para({ pandoc.Str("DOCSTYLE_CITE_BIBL") }) + end + return nil +end + +return { + { Meta = Meta }, + { Cite = Cite }, + { Div = Div } +} diff --git a/_freeze/docs/explanation/project-specifications/execute-results/html.json b/_freeze/docs/explanation/project-specifications/execute-results/html.json new file mode 100644 index 0000000..e620a86 --- /dev/null +++ b/_freeze/docs/explanation/project-specifications/execute-results/html.json @@ -0,0 +1,15 @@ +{ + "hash": "5c354dacbbc1399ea5d9c16000b4fe2c", + "result": { + "engine": "knitr", + "markdown": "---\ntitle: \"Canadian Smoking History Generator Model: Project specifications\"\nsubtitle: \"Scope, structure, and implementation plan\"\nauthor: \"CSHGM Development Team\"\ndate: \"Last Updated: 2025-03-06\"\nformat:\n html:\n toc: true\n toc-depth: 3\n number-sections: true\n theme: cosmo\n code-fold: show\nexecute:\n echo: true\n warning: false\n message: false\n---\n\n\n\n\n\n\n# Executive summary\n\nThis document outlines the scope, specifications, and implementation plan for the Canadian Smoking History Generator Model (CSHGM) project. The project aims to modernize and extend the existing smoking history generation methodology developed in the Ontario SHGM study (2020) and the Age-Period-Cohort modelling approach pioneered by Holford. By implementing this methodology in R, we seek to improve accessibility, transparency, and extensibility while preserving the scientific integrity of the original work.\n\nThis specification document will serve as a reference for all project contributors, helping to ensure consistency across development efforts and provide clear guidance for implementation decisions.\n\n# Project goals and scope\n\n## Primary goals\n\n1. Implement the Canadian Smoking History Generator Model in R\n2. Provide a well-documented, reproducible workflow for smoking history modelling\n3. Create flexible, modular components that can be adapted to different contexts\n4. Ensure compatibility with secure computing environments\n5. Follow open science principles and best practices\n\n## Project scope\n\n### In scope\n\n- R implementation of the Age-Period-Cohort (APC) modelling approach\n- Processing of Canadian Community Health Survey (CCHS) data\n- Derivation of smoking initiation and cessation probabilities\n- Generation of complete smoking histories\n- Validation against historical data\n- Documentation for users and developers\n\n### Out of scope (for initial release)\n\n- Integration with specific disease models\n- Implementation of alternative smoking behaviour models\n- Web application or interactive user interface\n- Incorporation of e-cigarette or vaping behaviours\n- Integration with non-Canadian health surveys\n\n## Legacy recognition\n\nThis project builds upon the foundational work of Dr. Ted Holford at Yale University. As Dr. Holford transitions toward retirement, this project will serve as a legacy implementation of his APC methodology applied to smoking behaviour. We will work with Dr. Holford to determine appropriate recognition and attribution.\n\n# Project structure and approach\n\n## Folder structure\n\nWe will adopt a structure that balances R package conventions with a more accessible Quarto project organization:\n\n``` \ncshgm/\n├── .github/ # GitHub Actions and templates\n├── R/ # R functions in separate files\n├── data/ # Processed data objects\n│ └── dev/ # Development data files\n├── docs/ # Documentation as Quarto files\n│ ├── reference/ # Technical reference for the codebase\n│ ├── explanation/ # Conceptual explanations\n│ ├── how-to/ # Task-oriented guides\n│ └── tutorials/ # Learning-oriented tutorials\n├── tests/ # Test files\n│ └── testthat/ # Unit tests using testthat\n├── config/ # Configuration files\n│ ├── templates/ # Template configurations\n│ ├── variables/ # Variable definitions\n│ ├── default.yml # Default configuration\n│ └── secure.yml # Template for secure environments\n├── resources/ # Project resources\n│ ├── cchs/ # CCHS documentation and reference materials\n│ ├── legacy-code/ # Original SAS implementation \n│ ├── variable sheets/ # Original variable definition sheets\n│ └── worksheets/ # Working files for variable harmonization\n├── logs/ # Log files directory\n├── renv/ # R package management (renv)\n├── _quarto.yml # Quarto site configuration\n├── renv.lock # Package dependency locking\n├── index.qmd # Main landing page\n├── styles.css # Website styling\n├── CONTRIBUTING.md # Contribution guidelines\n└── README.md # Project overview\n```\n\n### Resource organization\n\nThe project resources are organized as follows:\n\n- **Active resources**: Materials regularly used during development\n - `resources/cchs/`: CCHS documentation, question trees, and survey details\n - `resources/variable sheets/`: Variable definitions and mappings\n - `resources/worksheets/`: Working files for variable harmonization\n\n- **Reference materials**: Historical or legacy materials \n - `resources/legacy-code/`: Original SAS implementation and historical code\n - Documentation of previous studies and implementations\n\nThis organization centralizes all supporting materials in the resources directory while maintaining clear separation between active resources and historical references.\n\n## Documentation approach\n\nWe will follow the [Divio documentation system](https://documentation.divio.com/) with four types of documentation:\n\n1. **Tutorials**: Step-by-step lessons to get started\n2. **How-to guides**: Practical instructions for specific tasks\n3. **Explanation**: Conceptual discussions of methodology\n4. **Reference**: Technical details of functions and data\n\nThis approach ensures we meet the needs of different users, from beginners to advanced researchers.\n\n## Development philosophy\n\n### Tidyverse design principles\n\nWe will follow tidyverse design principles:\n\n- Create composable functions that do one thing well\n- Use consistent function naming and argument conventions\n- Embrace the pipe (`|>` or `%>%`) for readable data manipulation\n- Prioritize data frames as the primary data structure\n- Use tidy evaluation for metaprogramming when needed\n\n### Open science principles\n\nThe project will adhere to FAIR principles:\n\n- **Findable**: Clear metadata, permanent DOI\n- **Accessible**: Open source, clear installation instructions\n- **Interoperable**: Standard data formats, well-documented APIs\n- **Reusable**: Comprehensive documentation, permissive license\n\n### Modular design\n\nThe implementation will be modular with these key components:\n\n1. **Data processing**: Functions to process and harmonize CCHS data\n2. **APC modelling**: Implementation of the APC modelling methodology\n3. **Simulation**: Functions to generate smoking histories\n4. **Validation**: Tools to validate against reference data\n5. **Visualization**: Components to visualize results\n\n## Technology stack\n\n### Core technologies\n\n- **R**: Primary programming language\n- **Quarto**: Documentation and website generation\n- **GitHub**: Version control and collaboration\n- **GitHub Actions**: Continuous integration and deployment\n- **renv**: Package management and reproducibility\n\n### Package management\n\nWe use the `renv` package to manage R package dependencies. This approach ensures:\n\n1. **Reproducibility**: All users and environments use the same package versions\n2. **Isolation**: Project dependencies are isolated from other projects\n3. **Documentation**: Package dependencies are explicitly recorded\n4. **Portability**: Easier deployment in secure environments\n\nThe `renv.lock` file records all package dependencies and their versions. When a new contributor joins the project, they can restore the exact environment with:\n\n```r\nrenv::restore()\n```\n\nWhen adding a new package dependency, it should be properly recorded:\n\n```r\nrenv::install(\"packagename\")\nrenv::snapshot()\n```\n\n### Key R packages\n\n- **tidyverse**: Data manipulation and visualization\n- **splines**: Spline modelling functionality\n- **cchsflow**: CCHS data harmonization\n- **config**: Configuration management\n- **logger**: Logging functionality\n- **testthat**: Unit testing\n- **roxygen2**: Documentation generation\n\n# Implementation plan\n\n## Phase 1: Project setup and core infrastructure\n\n1. Set up GitHub repository with initial structure\n2. Initialize renv for package management\n3. Configure GitHub Actions for CI/CD\n4. Create initial documentation framework \n5. Implement configuration management system\n6. Establish coding standards and contributor guidelines\n\n## Phase 2: Data processing implementation\n\n1. Develop functions for CCHS data harmonization\n2. Implement smoking status variable processing\n3. Create data preprocessing workflow\n4. Write documentation and tests for data processing\n\n## Phase 3: APC model implementation\n\n1. Implement natural cubic spline generation\n2. Develop APC modelling functions\n3. Create initiation probability estimation\n4. Create cessation probability estimation\n5. Write documentation and tests for APC components\n\n## Phase 4: Simulation and validation\n\n1. Develop smoking history generation functions\n2. Implement validation methodology\n3. Create calibration procedures\n4. Generate validation datasets\n5. Write documentation and tests for simulation components\n\n## Phase 5: Integration and documentation\n\n1. Ensure component integration\n2. Finalize documentation\n3. Create example workflows\n4. Develop tutorials and how-to guides\n5. Prepare for initial release\n\n# Specific implementation considerations\n\n## Configuration management\n\nWe will use the `config` package with YAML files to manage environment-specific settings:\n\n``` yaml\n# Example config.yml\ndefault:\n data_path: \"data/\"\n output_path: \"output/\"\n log_level: \"INFO\"\n variables_path: \"config/variables.csv\"\n variable_details_path: \"config/variable_details.csv\"\n\nsecure:\n data_path: \"/secure/data/\"\n output_path: \"/secure/output/\"\n log_level: \"WARN\"\n variables_path: \"/secure/config/variables.csv\"\n variable_details_path: \"/secure/config/variable_details.csv\"\n```\n\nThis approach allows for seamless transitions between different computing environments.\n\n## Documentation breakdown\n\nWe propose organizing documentation into the following Quarto files:\n\n### Reference documentation\n\n- `reference-variables.qmd`: Complete reference of all variables\n- `reference-functions.qmd`: Technical documentation of all functions\n- `reference-model.qmd`: Details of the APC model implementation\n\n### Explanation documentation\n\n- `explanation-smoking-history.qmd`: Conceptual overview of smoking history modelling\n- `explanation-apc-method.qmd`: Explanation of the APC methodology\n- `explanation-validation.qmd`: Discussion of validation approaches\n\n### How-to guides\n\n- `howto-setup.qmd`: Setting up the environment\n- `howto-process-cchs.qmd`: Processing CCHS data\n- `howto-run-apc.qmd`: Running the APC model\n- `howto-generate-histories.qmd`: Generating smoking histories\n- `howto-validate.qmd`: Validating results\n\n### Tutorials\n\n- `tutorial-basic.qmd`: Step-by-step tutorial for basic usage\n- `tutorial-advanced.qmd`: Advanced tutorial for customization\n\n## Testing strategy\n\nWe will implement a comprehensive testing strategy:\n\n1. **Unit tests**: For individual functions\n2. **Integration tests**: For component interactions\n3. **Regression tests**: To ensure consistency with previous results\n4. **Validation tests**: Against reference data\n\nTests will be organized to mirror the structure of the code, with separate test files for each module.\n\n## Considerations for secure environments\n\nTo ensure compatibility with secure environments like Statistics Canada's Regional Data Centres:\n\n1. No hard-coded file paths\n2. Configuration-driven data access\n3. Minimal external dependencies\n4. Well-documented installation procedures\n5. Alternative output formats for environments with restrictions\n\n## International adaptability\n\nTo facilitate adoption by teams in other countries:\n\n1. Clear separation between data processing and modelling\n2. Documented variable mapping procedures\n3. Configurable parameters for country-specific variations\n4. Example workflows for adapting to different survey structures\n\n# Collaboration and contribution\n\n## Team roles and responsibilities\n\n- **Project coordination**: CSHGM Consortium\n- **Statistical methodology**: Colleagues from Statistics Canada, BCDCDC\n- **APC modelling expert**: Ted Holford\n- **R development**: To be determined\n- **Documentation**: To be determined\n- **Testing and validation**: To be determined\n\n## Contribution workflow\n\n1. Issues created for specific tasks\n2. Branches created for feature development\n3. Pull requests submitted for review\n4. Code review by at least one team member\n5. Automated testing via GitHub Actions\n6. Merge to main branch after approval\n\n## Communication channels\n\n- GitHub Issues for task tracking\n- Regular video meetings for team coordination\n- Email for broader announcements\n- Shared documentation for long-term knowledge preservation\n\n# Potential challenges and mitigation strategies\n\n| Challenge | Mitigation strategy |\n|-----------|---------------------|\n| Secure environment limitations | Develop with minimal dependencies, provide alternative implementation paths |\n| Compatibility across CCHS cycles | Robust variable harmonization, comprehensive testing with multiple cycles |\n| Statistical complexity | Clear documentation, code review by statistical experts |\n| Balancing accessibility vs. complexity | Modular design with multiple entry points for different user levels |\n| Long-term sustainability | Comprehensive documentation, clear contribution guidelines, active community building |\n\n# Timeline and milestones\n\n| Milestone | Target date | Deliverables |\n|-----------|-------------|--------------|\n| Project setup | Month 1 | Repository, documentation framework, contribution guidelines |\n| Data processing implementation | Month 3 | Functions for CCHS data processing, documentation |\n| APC model implementation | Month 6 | Complete APC modelling functions, tests, documentation |\n| Simulation and validation | Month 9 | History generation, validation functions, documentation |\n| Integration and documentation | Month 12 | Complete documentation, examples, initial release |\n\n# Conclusion\n\nThis project specification outlines the approach for implementing the Canadian Smoking History Generator Model in R. By adhering to open science principles, following tidyverse design guidelines, and creating comprehensive documentation, we aim to create a valuable resource for researchers studying smoking behaviour and its health impacts.\n\nThe modular, configurable design will ensure the codebase can be used in various environments and adapted to different contexts, preserving the scientific methodology while improving accessibility and usability.\n\n# Next steps\n\n1. Finalize project specification based on team feedback\n2. Set up initial repository structure\n3. Implement configuration management system\n4. Begin work on data processing functions\n5. Develop initial documentation framework\n\n# References\n\nOntario SHGM study (2020). Current and future mortality probabilities in Ontario, 2002 to 2032. *Health Reports*, Statistics Canada.\n\nHolford, T.R. (1991). Understanding the effects of age, period, and cohort on incidence and mortality rates. *Annual Review of Public Health*, 12, 425-457. doi:10.1146/annurev.pu.12.050191.002233\n\nWickham, H. (2015). R packages: organize, test, document, and share your code. O'Reilly Media, Inc.\n\nWilkinson, M.D. et al. (2016). The FAIR Guiding Principles for scientific data management and stewardship. *Scientific Data*, 3(1), 1-9. doi:10.1038/sdata.2016.18\n\n# Appendix A: Glossary of terms\n\n| Term | Definition |\n|------|------------|\n| APC | Age-Period-Cohort modelling approach |\n| CCHS | Canadian Community Health Survey |\n| CSHGM | Canadian Smoking History Generator Model |\n| FAIR | Findable, Accessible, Interoperable, Reusable |\n| RDC | Research Data Centre (Statistics Canada secure environment) |\n\n# Appendix B: Example configuration file\n\n```yaml\ndefault:\n # Data paths\n raw_data_path: \"data-raw/\"\n processed_data_path: \"data/\"\n output_path: \"output/\"\n \n # Variable definition files\n variables_path: \"config/variables.csv\"\n variable_details_path: \"config/variable_details.csv\"\n \n # Logging configuration\n log_level: \"INFO\"\n log_file: \"logs/cshgm.log\"\n \n # Model parameters\n min_age: 8\n max_age: 99\n min_cohort: 1920\n max_cohort: 2020\n \n # CCHS cycles to include\n cchs_cycles: [\"2001\", \"2003\", \"2005\", \"2007-2008\", \"2009-2010\", \n \"2011-2012\", \"2013-2014\", \"2015-2016\", \"2017-2018\"]\n \n # APC model specifications\n age_knots: [10, 15, 20, 50, 60]\n period_knots: [1940, 1950, 1960, 1970, 1980]\n cohort_knots: [1930, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980]\n```\n\n# Appendix C: Recommended license\n\nWe recommend using the **Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)** license for this project. This license ensures:\n\n1. **Attribution** - Users must give appropriate credit to the CSHGM Consortium\n2. **Non-commercial use** - The material cannot be used for commercial purposes\n3. **Share-alike** - Adaptations must be shared under the same terms\n\nThis license is appropriate for Statistics Canada and other partners who need to maintain the project for non-profit uses, while still allowing academic and research adaptation. It ensures that any modified versions will maintain attribution to the original project and cannot be commercialized.\n\nThe license should attribute copyright to \"CSHGM Consortium\" rather than specific individuals, to emphasize the collaborative nature of the project.\n\nFor code specifically, we recommend the **GNU General Public License v3.0 (GPL-3.0)**, which is a strong copyleft license ensuring that derivative works also remain open source. This license is compatible with R's ecosystem, as many R packages use GPL licensing.\n\nA brief summary of the CC BY-NC-SA 4.0 license:\n\n```\nCreative Commons Attribution-NonCommercial-ShareAlike 4.0 International License\n\nCopyright (c) 2025 CSHGM Consortium\n\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 \nInternational License. To view a copy of this license, visit:\nhttp://creativecommons.org/licenses/by-nc-sa/4.0/\n\nYou are free to:\n- Share — copy and redistribute the material in any medium or format\n- Adapt — remix, transform, and build upon the material\n\nUnder the following terms:\n- Attribution — You must give appropriate credit, provide a link to the license, \n and indicate if changes were made.\n- NonCommercial — You may not use the material for commercial purposes.\n- ShareAlike — If you remix, transform, or build upon the material, you must \n distribute your contributions under the same license as the original.\n```", + "supporting": [], + "filters": [ + "rmarkdown/pagebreak.lua" + ], + "includes": {}, + "engineDependencies": {}, + "preserve": {}, + "postProcess": true + } +} \ No newline at end of file diff --git a/_freeze/docs/how-to/data-loading-and-harmonizing/execute-results/html.json b/_freeze/docs/how-to/data-loading-and-harmonizing/execute-results/html.json new file mode 100644 index 0000000..594a70d --- /dev/null +++ b/_freeze/docs/how-to/data-loading-and-harmonizing/execute-results/html.json @@ -0,0 +1,15 @@ +{ + "hash": "b764548ad22a07759c11c970c9d703e3", + "result": { + "engine": "knitr", + "markdown": "---\ntitle: \"Data loading and harmonizing\"\nsubtitle: \"Preparing CCHS data for the Smoking History Generator Model\"\nauthor: \"CSHGM Development Team\"\ndate: \"Last Updated: 2025-03-06\"\nformat:\n html:\n toc: true\n toc-depth: 3\n number-sections: true\n theme: cosmo\n code-fold: show\nexecute:\n echo: true\n warning: false\n message: false\n---\n\n\n\n\n\n\n# Introduction\n\nThis guide focuses on the initial steps of the CSHGM workflow: loading Canadian Community Health Survey (CCHS) data and harmonizing variables across survey cycles. These steps are critical for ensuring consistent analysis across different time periods.\n\n## Purpose of data harmonization\n\nVariable names, coding, and survey design have changed across CCHS cycles. Harmonization ensures that:\n\n1. Variables have consistent names across cycles\n2. Response codes are standardized\n3. Derived variables are calculated consistently\n4. Missing values are handled appropriately\n\n# Required data sources\n\n## Canadian Community Health Survey (CCHS)\n\nThe CCHS is the primary data source for the smoking history model. We typically use multiple cycles:\n\n- CCHS 2001 (Cycle 1.1)\n- CCHS 2003 (Cycle 2.1)\n- CCHS 2005 (Cycle 3.1)\n- CCHS 2007-2008\n- CCHS 2009-2010\n- CCHS 2011-2012\n- CCHS 2013-2014\n- CCHS 2015-2016\n- CCHS 2017-2018\n\n## Accessing CCHS data\n\nCCHS data can be accessed through:\n\n1. **Statistics Canada Research Data Centres (RDCs)**: For researchers who need access to the detailed microdata\n2. **Public Use Microdata Files (PUMFs)**: Available through academic institutions\n3. **Sample files**: For demonstration purposes, sample datasets are included with this package\n\n# Loading CCHS data\n\n## Step 1: Set up your environment\n\nFirst, set up your environment with the necessary packages:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Load required packages\nlibrary(cshgm)\nlibrary(dplyr)\nlibrary(cchsflow) # For harmonizing CCHS variables\nlibrary(haven) # For reading SAS or SPSS files\n\n# Configure paths using the config package\nlibrary(config)\ncfg <- config::get()\ndata_path <- cfg$data_path\n```\n:::\n\n\n\n\n## Step 2: Load individual CCHS cycles\n\nLoad each CCHS cycle file. The format will depend on how your data is stored:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example: Loading RData files\ncchs2001 <- readRDS(file.path(data_path, \"cchs2001_p.RData\"))\ncchs2003 <- readRDS(file.path(data_path, \"cchs2003_p.RData\"))\ncchs2005 <- readRDS(file.path(data_path, \"cchs2005_p.RData\"))\ncchs2007_2008 <- readRDS(file.path(data_path, \"cchs2007_2008_p.RData\"))\ncchs2009_2010 <- readRDS(file.path(data_path, \"cchs2009_2010_p.RData\"))\ncchs2011_2012 <- readRDS(file.path(data_path, \"cchs2012_p.RData\"))\ncchs2013_2014 <- readRDS(file.path(data_path, \"cchs2013_2014_p.RData\"))\n\n# For SAS or SPSS files, you would use:\n# cchs2001 <- haven::read_sas(file.path(data_path, \"cchs2001.sas7bdat\"))\n# or\n# cchs2001 <- haven::read_spss(file.path(data_path, \"cchs2001.sav\"))\n```\n:::\n\n\n\n\n## Step 3: Data preparation\n\nBefore harmonizing, prepare the data by adding cycle-specific identifiers:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Add cycle identifier to each dataset\ncchs2001 <- cchs2001 %>% mutate(cycle = \"2001\")\ncchs2003 <- cchs2003 %>% mutate(cycle = \"2003\")\ncchs2005 <- cchs2005 %>% mutate(cycle = \"2005\")\ncchs2007_2008 <- cchs2007_2008 %>% mutate(cycle = \"2007-2008\")\ncchs2009_2010 <- cchs2009_2010 %>% mutate(cycle = \"2009-2010\")\ncchs2011_2012 <- cchs2011_2012 %>% mutate(cycle = \"2011-2012\")\ncchs2013_2014 <- cchs2013_2014 %>% mutate(cycle = \"2013-2014\")\n\n# Create a list of all datasets\ncchs_list <- list(\n cchs2001, cchs2003, cchs2005, cchs2007_2008, \n cchs2009_2010, cchs2011_2012, cchs2013_2014\n)\n```\n:::\n\n\n\n\n# Variable harmonization\n\n## Core smoking variables\n\nFor the CSHGM, we need to harmonize several key smoking-related variables:\n\n| Type | Variables | Description |\n|------|-----------|-------------|\n| Status | SMK_01A, SMK_202, SMKDSTY | Basic smoking status indicators |\n| Initiation | SMKG01C_cont, SMKG203_cont, SMKG207_cont | Age of smoking initiation |\n| Cessation | SMK_09A_cont, SMKG09C | When smoking cessation occurred |\n| Intensity | SMK_204, SMK_208, SMK_05B, SMK_05C | Quantity of cigarettes smoked |\n\n## Step 4: Harmonize variables using cchsflow\n\nThe `cchsflow` package provides tools for harmonizing CCHS variables across cycles:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Define the variables needed for CSHGM\nsmoking_vars <- c(\n \"SMK_01A\", # In lifetime, smoked 100 or more cigarettes\n \"SMK_202\", # Current smoking status\n \"SMKDSTY\", # Type of smoker\n \"SMKG01C_cont\", # Age smoked first cigarette\n \"SMKG203_cont\", # Age started smoking daily (daily smokers)\n \"SMKG207_cont\", # Age started smoking daily (former daily smokers)\n \"SMK_09A_cont\", # When stopped smoking daily (former daily)\n \"SMKG09C\", # Years since stopped smoking daily\n \"SMK_204\", # Number of cigarettes smoked daily (daily smokers)\n \"SMK_208\", # Number of cigarettes smoked daily (former daily smokers)\n \"SMK_05B\", # Number of cigarettes smoked daily (occasional smokers)\n \"SMK_05C\" # Number of days smoked in past month (occasional smokers)\n)\n\n# Demographic variables\ndemographic_vars <- c(\n \"DHH_SEX\", # Sex of respondent\n \"DHH_AGE\", # Age of respondent\n \"WTS_M\" # Survey weight\n)\n\n# Variables for timing\ntiming_vars <- c(\n \"SAMPLEID\" # Contains year and month of survey\n)\n\n# Combine all variables\nall_vars <- c(smoking_vars, demographic_vars, timing_vars)\n\n# Process each dataset with cchsflow\nharmonized_list <- lapply(cchs_list, function(dataset) {\n rec_with_table(dataset, all_vars)\n})\n\n# Combine all harmonized datasets\nharmonized_data <- bind_rows(harmonized_list)\n```\n:::\n\n\n\n\n## Step 5: Create derived variables\n\nSome additional variables need to be created for the CSHGM:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Create survey date and additional variables\nharmonized_data <- harmonized_data %>%\n mutate(\n # Extract survey year and month from SAMPLEID\n survey_year = as.numeric(substr(as.character(SAMPLEID), 1, 4)),\n survey_month = as.numeric(substr(as.character(SAMPLEID), 5, 6)),\n \n # Create a date for the survey (use middle of month as approximation)\n cchsbdate = as.Date(paste(survey_year, survey_month, \"15\", sep = \"-\")),\n \n # Rename age of first cigarette for consistency with original code\n agefirst = SMKG01C_cont,\n \n # Create survey age variable (age at time of survey)\n surveyage = DHH_AGE,\n \n # Calculate birth year\n birth_year = survey_year - surveyage,\n \n # Create weight variable with consistent name\n weighting = WTS_M,\n \n # Create respondent ID\n ont_id = row_number() # Create sequential ID if none exists\n )\n```\n:::\n\n\n\n\n## Step 6: Clean and validate the data\n\nData cleaning is essential to ensure valid analyses:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Remove cases with missing key variables\ncleaned_data <- harmonized_data %>%\n filter(!is.na(DHH_SEX)) %>% # Remove cases missing sex\n filter(!is.na(surveyage)) %>% # Remove cases missing age\n filter(surveyage >= 12) %>% # Include only respondents aged 12+\n filter(!is.na(weighting)) # Remove cases missing weights\n\n# Recode sex to match CSHGM requirements (M/F)\ncleaned_data <- cleaned_data %>%\n mutate(sex = ifelse(DHH_SEX == 1, \"M\", \"F\"))\n```\n:::\n\n\n\n\n## Step 7: Check variable distributions\n\nVerify that the harmonization worked correctly by checking key variable distributions:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Check smoking status distribution\ncleaned_data %>%\n count(SMKDSTY) %>%\n mutate(\n label = case_when(\n SMKDSTY == 1 ~ \"Daily smoker\",\n SMKDSTY == 2 ~ \"Occasional smoker\",\n SMKDSTY == 3 ~ \"Former daily smoker\",\n SMKDSTY == 4 ~ \"Former occasional smoker\", \n SMKDSTY == 5 ~ \"Never smoker\",\n TRUE ~ \"Unknown\"\n ),\n percentage = 100 * n / sum(n)\n ) %>%\n arrange(SMKDSTY)\n\n# Check distribution by cycle\ncleaned_data %>%\n group_by(cycle) %>%\n count() %>%\n mutate(percentage = 100 * n / sum(n))\n\n# Check age distribution\ncleaned_data %>%\n mutate(age_group = cut(surveyage, \n breaks = c(12, 20, 30, 40, 50, 60, 70, 80, 999),\n labels = c(\"12-19\", \"20-29\", \"30-39\", \"40-49\", \n \"50-59\", \"60-69\", \"70-79\", \"80+\"))) %>%\n count(age_group) %>%\n mutate(percentage = 100 * n / sum(n))\n```\n:::\n\n\n\n\n# Save the processed data\n\nOnce your data is harmonized and validated, save it for future use:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Save the processed data\nsaveRDS(cleaned_data, file.path(data_path, \"harmonized_cchs_data.rds\"))\n```\n:::\n\n\n\n\n# Additional considerations\n\n## Variable mapping challenges\n\nCCHS variables may not always harmonize cleanly. Here are some common challenges and solutions:\n\n1. **Variable availability**: Not all variables are available in all cycles. Check which cycles include your variables of interest.\n\n2. **Coding differences**: Response codes may differ across cycles, even after harmonization. Verify code mappings using `cchsflow` documentation.\n\n3. **Skip patterns**: Survey skip patterns have changed over time, affecting the population asked certain questions. \n\n4. **Variable granularity**: Some cycles may have more detailed responses than others. Harmonization usually adopts the least granular version.\n\n## Working with secure environments\n\nWhen working in Statistics Canada Research Data Centres (RDCs) or other secure environments:\n\n1. Use relative file paths or configuration files to manage data locations\n2. Avoid storing large intermediate files if storage is limited\n3. Follow the RDC's guidelines for output review\n4. Consider batch processing if interactive sessions are limited\n\n# Next steps\n\nAfter harmonizing your CCHS data, you can proceed to:\n\n1. [Process smoking variables](processing-cchs-data.qmd) in more detail\n2. Begin [APC modeling](reproducing-manuel-study.qmd) using the harmonized data\n\n# References\n\nCanadian Community Health Survey (CCHS) - Annual Component. Statistics Canada.\n\nOnysko, J., & MacKenzie, A. (2015). The cchsflow R package: Standardizing variables across CCHS cycles. Statistics Canada.", + "supporting": [], + "filters": [ + "rmarkdown/pagebreak.lua" + ], + "includes": {}, + "engineDependencies": {}, + "preserve": {}, + "postProcess": true + } +} \ No newline at end of file diff --git a/_freeze/docs/how-to/reproducing-manuel-study/execute-results/html.json b/_freeze/docs/how-to/reproducing-manuel-study/execute-results/html.json new file mode 100644 index 0000000..138a788 --- /dev/null +++ b/_freeze/docs/how-to/reproducing-manuel-study/execute-results/html.json @@ -0,0 +1,15 @@ +{ + "hash": "d3f17f9f4680bee45686abe6a7aa3663", + "result": { + "engine": "knitr", + "markdown": "---\ntitle: \"Reproducing the Canadian Smoking History Generator Model\"\nsubtitle: \"A Guide to Variable Derivation and Analysis\"\nauthor: \"CSHGM Development Team\"\ndate: \"Last Updated: 2025-03-06\"\nformat:\n html:\n toc: true\n toc-depth: 3\n number-sections: true\n theme: cosmo\n code-fold: show\nexecute:\n echo: true\n warning: false\n message: false\n---\n\n\n\n\n\n\n# Introduction\n\nThis document provides a guide to reproducing the Canadian Smoking History Generator Model as described in Manuel et al. (2002) \"Current and future mortality probabilities in Ontario, 2002 to 2032\". The model uses Age-Period-Cohort (APC) analysis to estimate smoking initiation and cessation probabilities across different birth cohorts, which are then used to generate complete smoking histories.\n\n## Purpose of This Guide\n\nThis guide aims to:\n\n1. Describe the key variables needed from the Canadian Community Health Survey (CCHS)\n2. Show how to derive the necessary variables for the model\n3. Provide R code implementations of the original SAS procedures\n4. Explain how to interpret and validate the results\n\n## Original Study Overview\n\nThe original study by Manuel et al. (2002) developed a model to:\n\n- Generate individual smoking histories for a simulated population\n- Estimate smoking prevalence across different time periods and birth cohorts\n- Model both smoking initiation and cessation probabilities\n- Account for age, period, and cohort effects in smoking behavior\n\nThe approach used data from the Canadian Community Health Survey to construct smoking histories and applied statistical modeling to estimate probabilities of starting and quitting smoking.\n\n# Required Data Sources\n\n## Canadian Community Health Survey (CCHS)\n\nThe CCHS is the primary data source for this analysis. Multiple cycles have been conducted:\n\n- CCHS 2001 (Cycle 1.1)\n- CCHS 2003 (Cycle 2.1)\n- CCHS 2005 (Cycle 3.1)\n- CCHS 2007-2008\n- CCHS 2009-2010\n- CCHS 2011-2012\n- CCHS 2013-2014\n- CCHS 2015-2016\n- CCHS 2017-2018\n\n## Variable Harmonization Across Cycles\n\nCCHS variable names have changed across cycles. We use the cchsflow package for variable harmonization:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of harmonizing CCHS data using cchsflow\n# library(cchsflow)\n# harmonized_data <- rec_with_table(\n# cchs_data,\n# c(\"SMK_01A\", \"SMKG01C_cont\", \"SMKG203_cont\", \"SMK_204\") \n# )\n```\n:::\n\n\n\n\n# Key Variables for Smoking History\n\n## Core Smoking Status Variables\n\nThe following variables are critical for determining smoking status:\n\n| Harmonized Variable | Description | Values |\n|---------------------|-------------|--------|\n| SMK_01A | In lifetime, smoked 100 or more cigarettes | 1=Yes, 2=No |\n| SMK_202 | Current smoking status | 1=Daily, 2=Occasional, 3=Not at all |\n| SMKDSTY | Type of smoker | 1=Daily, 2=Occasional, 3=Former daily, 4=Former occasional, 5=Never |\n\n## Smoking Initiation Variables\n\nVariables measuring when someone started smoking:\n\n| Harmonized Variable | Description | Type |\n|---------------------|-------------|------|\n| SMKG01C_cont | Age smoked first cigarette | Continuous |\n| SMKG203_cont | Age started smoking daily (daily smokers) | Continuous |\n| SMKG207_cont | Age started smoking daily (former daily smokers) | Continuous |\n\n## Smoking Cessation Variables\n\nVariables measuring when someone quit smoking:\n\n| Harmonized Variable | Description | Type |\n|---------------------|-------------|------|\n| SMK_09A_cont | When stopped smoking daily (former daily) | Continuous |\n| SMKG09C | Years since stopped smoking daily (former daily) | Categorical |\n\n## Smoking Intensity Variables\n\nVariables measuring how much someone smokes/smoked:\n\n| Harmonized Variable | Description | Type |\n|---------------------|-------------|------|\n| SMK_204 | Number of cigarettes smoked daily (daily smokers) | Continuous |\n| SMK_208 | Number of cigarettes smoked daily (former daily smokers) | Continuous |\n| SMK_05B | Number of cigarettes smoked daily (occasional smokers) | Continuous |\n| SMK_05C | Number of days smoked in past month (occasional smokers) | Continuous |\n\n## Demographic Variables\n\nVariables used for cohort assignment and stratification:\n\n| Harmonized Variable | Description | Type |\n|---------------------|-------------|------|\n| DHH_SEX | Sex of respondent | Categorical |\n| cchsbdate | CCHS survey date | Date |\n\n# Variable Derivation for Age-Period-Cohort Analysis\n\n## Smoking Initiation Process\n\n### Step 1: Identify Smoking Initiators\n\nThe first step is to identify individuals who have initiated smoking, defined as having smoked at least 100 cigarettes in their lifetime.\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Using our process_smoking_initiation function\ninits_male <- process_smoking_initiation(harmonized_data, sex = \"M\")\ninits_female <- process_smoking_initiation(harmonized_data, sex = \"F\")\n```\n:::\n\n\n\n\nThe function shown above performs the following steps:\n\n1. Filters respondents by sex\n2. Identifies never-smokers (SMK_01A = 2) and sets their initiation age to 101 (a flag value)\n3. Creates an initiation indicator (init=1 for smokers, init=0 for never-smokers)\n4. Filters to include only those born in 1920 or later\n5. Creates a subset containing only those who initiated smoking\n6. Applies age filter (age >= 8)\n7. Calculates period (year of initiation) as cohort + age\n8. Returns a dataset with ont_id, weighting, age, cohort, period, and init variables\n\n### Step 2: Create Population Denominators\n\nTo calculate initiation rates, we need the population at risk of initiation at each age, period, and cohort combination.\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example function for creating denominators (not fully implemented yet)\ncreate_initiation_denominators <- function(dataset, sex = \"M\") {\n # Function implementation would go here\n # This creates population counts by age, period, and cohort\n}\n```\n:::\n\n\n\n\n## Smoking Cessation Process\n\n### Step 1: Identify Smoking Cessation\n\nSimilarly, we identify individuals who have quit smoking and when they quit.\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example function for processing cessation data\nprocess_smoking_cessation <- function(dataset, sex = \"M\") {\n # Function implementation would follow similar steps to initiation\n # but with cessation-specific criteria\n}\n```\n:::\n\n\n\n\n## Age-Period-Cohort Modeling\n\nThe APC modeling approach uses splines to model age, period, and cohort effects:\n\n1. Natural cubic splines are constructed for age, period, and cohort\n2. These splines are used in a generalized linear model with binomial errors\n3. Survival probabilities are used to adjust for differential mortality\n4. Separate models are fit for males and females\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of creating splines for APC modeling\ncreate_age_splines <- function(ages, knots) {\n # Function to create natural cubic splines for ages\n # Implementation would go here\n}\n```\n:::\n\n\n\n\n# Applying the Model\n\n## Estimating Smoking Probabilities\n\nOnce the APC models are fitted, they can be used to predict:\n\n1. Initiation probabilities by age, period, and cohort\n2. Cessation probabilities by age, period, and cohort\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of predicting initiation probabilities\npredict_initiation <- function(age, period, cohort, sex) {\n # Implementation would use fitted coefficients from APC model\n}\n```\n:::\n\n\n\n\n## Generating Smoking Histories\n\nComplete smoking histories can be generated using:\n\n1. A microsimulation approach based on the estimated probabilities\n2. Monte Carlo methods to introduce appropriate stochasticity\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of generating a smoking history\ngenerate_smoking_history <- function(birth_year, sex) {\n # Simulation implementation would go here\n}\n```\n:::\n\n\n\n\n# Validation and Calibration\n\n## Comparing to Historical Data\n\nModel validation involves comparing the generated smoking histories to:\n\n1. Historical smoking prevalence data\n2. Known patterns in smoking behavior by birth cohort\n3. Other published estimates of smoking trends\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of validating model results\nvalidate_smoking_prevalence <- function(simulated_data, reference_data) {\n # Validation code would go here\n}\n```\n:::\n\n\n\n\n## Calibration Procedures\n\nIf necessary, model calibration can be performed by:\n\n1. Adjusting the baseline rates\n2. Modifying the period effects\n3. Fine-tuning cohort-specific parameters\n\n# Implementation Example\n\nBelow is a simplified example of processing smoking initiation data using the function we've developed:\n\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Create simulated data for testing\ntest_data <- data.frame(\n ont_id = 1001:1010,\n sex = rep(c(\"M\", \"F\"), 5),\n SMK_01A = c(1, 2, 1, 1, 1, 2, 1, 2, 1, 1), # 1=Yes, 2=No to 100+ cigarettes\n agefirst = c(16, NA, 12, 21, 7, NA, 18, NA, 15, 22),\n cchsbdate = as.Date(c(\"2001-06-15\", \"2001-07-20\", \"2001-08-10\", \n \"2001-09-05\", \"2001-10-25\", \"2002-01-15\",\n \"2002-02-20\", \"2002-03-10\", \"2002-04-15\", \"2002-05-20\")),\n weighting = round(runif(10, 100, 300))\n)\n\n# Process the initiation data\nmale_init <- process_smoking_initiation(test_data, sex = \"M\")\nfemale_init <- process_smoking_initiation(test_data, sex = \"F\")\n\n# Examine the results\nprint(male_init)\nprint(female_init)\n```\n:::\n\n\n\n\n# Conclusion\n\nThis guide has provided an overview of how to:\n\n1. Prepare CCHS data for smoking history analysis\n2. Derive the key variables needed for APC modeling\n3. Implement the core components of the Canadian Smoking History Generator Model\n4. Apply and validate the model\n\nFurther development is ongoing to complete the full implementation of the model in R, including additional validation against historical data and extensions to incorporate more recent survey cycles.\n\n# References\n\nManuel, D.G. et al. (2002). Current and future mortality probabilities in Ontario, 2002 to 2032. *Health Reports*, Statistics Canada.\n\nHolford, T.R. (1991). Understanding the effects of age, period, and cohort on incidence and mortality rates. *Annual Review of Public Health*, 12, 425-457.\n\nCanadian Community Health Survey (CCHS) - Annual Component. Statistics Canada.\n\n# Appendix: Additional Resources\n\n## SAS to R Translation Notes\n\nThe original model was implemented in SAS. Key translation considerations include:\n\n1. SAS `PROC GENMOD` is equivalent to R's `glm()` function\n2. SAS natural cubic splines can be created with R's `splines::ns()`\n3. SAS data steps are translated to R's data.frame operations\n4. SAS `%macro` functions are converted to R functions\n\n## Complete Variable Crosswalk\n\nFor a complete mapping of variables across CCHS cycles, refer to the included variable sheets:\n\n- `worksheets/cshgm-variables.csv`\n- `worksheets/cshgm-variable-details.csv`", + "supporting": [], + "filters": [ + "rmarkdown/pagebreak.lua" + ], + "includes": {}, + "engineDependencies": {}, + "preserve": {}, + "postProcess": true + } +} \ No newline at end of file diff --git a/_freeze/docs/project-specifications/execute-results/html.json b/_freeze/docs/project-specifications/execute-results/html.json new file mode 100644 index 0000000..91e40ba --- /dev/null +++ b/_freeze/docs/project-specifications/execute-results/html.json @@ -0,0 +1,17 @@ +{ + "hash": "3fb94db4df5c708dd87e8b5814390c68", + "result": { + "engine": "knitr", + "markdown": "---\ntitle: \"Canadian Smoking History Generator Model: Project specifications\"\nsubtitle: \"Scope, structure, and implementation plan\"\nauthor: \"CSHGM Development Team\"\ndate: \"Last Updated: 2025-03-27\"\nformat:\n html:\n toc: true\n toc-depth: 3\n number-sections: true\n theme: cosmo\n code-fold: show\nexecute:\n echo: true\n warning: false\n message: false\n---\n\n\n\n\n\n\n\n# Executive summary\n\nThis document outlines the scope, specifications, and implementation plan for the Canadian Smoking History Generator Model (CSHGM) project. The project aims to create the CSHGM, by extend the existing smoking history generation methodology developed in the Ontario SHGM study (2020) and the Age-Period-Cohort modelling approach pioneered by Holford. By implementing this methodology in R, we seek to improve accessibility, transparency, and extensibility while preserving the scientific integrity of the original work.\n\nThis specification document will serve as a reference for all project contributors, helping to ensure consistency across development efforts and provide clear guidance for implementation decisions.\n\n# Project goals and scope\n\n## Primary goals\n\n1. Implement the Canadian Smoking History Generator Model in R\n2. Provide a well-documented, reproducible workflow for smoking history modelling\n3. Create flexible, modular components that can be adapted to different contexts\n4. Ensure compatibility with secure computing environments\n5. Follow open science principles and best practices\n\n## Project scope\n\n### In scope\n\n- R implementation of the Age-Period-Cohort (APC) modelling approach\n- Processing of Canadian Community Health Survey (CCHS) data\n- Derivation of smoking initiation and cessation probabilities\n- Generation of complete smoking histories\n- Validation against historical data\n- Documentation for users and developers\n\n### Out of scope (for initial release)\n\n- Integration with specific disease models\n- Implementation of alternative smoking behaviour models\n- Web application or interactive user interface\n- Incorporation of e-cigarette or vaping behaviours\n- Integration with non-Canadian health surveys\n\n## Legacy recognition\n\nThis project builds upon the foundational work of Dr. Ted Holford at Yale University and CISNET. We will work with Dr. Holford to determine appropriate recognition and attribution.\n\n# Project structure and approach\n\n## Folder structure\n\nWe will adopt a structure that balances R package conventions with a more accessible Quarto project organization:\n\n``` \ncshgm/\n├── .github/ # GitHub Actions and templates\n├── R/ # R functions in separate files\n├── data-raw/ # Scripts to process raw data\n├── data/ # Processed data objects (for non-secure environments)\n├── resources/ # Background material, including historic SAS code and previously published papers.\n├── docs/ # Documentation as Quarto files\n│ ├── reference/ # Technical reference for functions, configuration files\n│ ├── explanation/ # Conceptual explanations\n│ ├── how-to/ # Task-oriented guides\n│ └── tutorials/ # Learning-oriented tutorials\n├── tests/ # Test files\n│ └── testthat/ # Unit tests using testthat\n├── config/ # Configuration files\n│ ├── default.yml # Default configuration\n│ └── secure.yml # Template for secure environments\n├── _quarto.yml # Quarto site configuration\n├── index.qmd # Main landing page\n└── README.md # Project overview\n```\n\nAdditional resources and background documents are stored on [OSF.io](https://osf.io/vcydu/).\n\n## Documentation approach\n\nWe will follow the [Divio documentation system](https://documentation.divio.com/) with four types of documentation:\n\n1. **Tutorials**: Step-by-step lessons to get started\n2. **How-to guides**: Practical instructions for specific tasks\n3. **Explanation**: Conceptual discussions of methodology\n4. **Reference**: Technical details of functions and data\n\nThis approach ensures we meet the needs of different users, from beginners to advanced researchers.\n\n## Development philosophy\n\nThe project will use well-used standard to facilitate open science.\n\n### Tidyverse design principles\n\nWe will follow tidyverse design principles:\n\n- Create composable functions that do one thing well\n- Use consistent function naming and argument conventions\n- Embrace the pipe (`|>` or `%>%`) for readable data manipulation\n- Prioritize data frames as the primary data structure\n- Use tidy evaluation for metaprogramming when needed\n\n### Open science principles\n\nThe project will adhere to FAIR principles:\n\n- **Findable**: Clear metadata, permanent DOI\n- **Accessible**: Open source, clear installation instructions\n- **Interoperable**: Standard data formats, well-documented APIs\n- **Reusable**: Comprehensive documentation, permissive license\n\n### Modular design\n\nThe implementation will be modular with these key components:\n\n1. **Data Processing**: Functions to process and harmonize CCHS data\n2. **APC Modeling**: Implementation of the APC modeling methodology\n3. **Simulation**: Functions to generate smoking histories\n4. **Validation**: Tools to validate against reference data\n5. **Visualization**: Components to visualize results\n\n## Technology stack\n\n### Core technologies\n\n- **R**: Primary programming language\n- **Quarto**: Documentation and website generation\n- **GitHub**: Version control and collaboration\n- **GitHub Actions**: Continuous integration and deployment\n\n### Key R packages\n\n- **tidyverse**: Data manipulation and visualization\n- **splines**: Spline modelling functionality\n- **cchsflow**: CCHS data harmonization\n- **config**: Configuration management\n- **logger**: Logging functionality\n- **testthat**: Unit testing\n- **roxygen2**: Documentation generation\n\n# Implementation plan\n\n## 1. Confirm goals, objectives, and deliverables\n\n**1.1. Confirm project scope**: Align project goals with specific, measurable objectives.\n\n**1.2. Identify deliverables**\n\n- A peer-review publication, similar to previously published reports like Manuel et al 2020. Health Report?\n- Public repository to facilitate updating: documentation, and test datasets.\n\n**1.3. Document success criteria**: Establish criteria for evaluating project completion and impact.\n\n# 2. Confirm stakeholders and research partners\n\n**2.1. Confirm the current team**\n\n**2.2. Identify any stakeholders we wish to keep updated**: CISNET via ; INSPQ?; Health Canada and PHAC?\n\n## 3. Define project roles and responsibilities\n\n1. **Team member assignments**: Assign roles including project lead, and leads for different components.\n2. **Responsibility matrix**: Develop a RACI (Responsible, Accountable, Consulted, Informed) chart.\n3. **Governance structure**: Define paths for issues and schedule regular check-ins.\n\n# Establish project management approach\n\n1. **Methodology**: Use GitHub Issues and Projects for tracking progress.\n2. **Timeline and milestones**: Develop a milestone-based timeline.\n3. **Monitoring and reporting**: Review progress to milestones, and issues at regular meetings.\n\n# Coordinate development of the technical (analysis) plan\n\n1. **Separate technical plan**: Detail methodological aspects such as APC model implementation, data processing, and validation.\n2. **Review cycles**: Schedule peer review of technical assumptions and implementation.\n3. **Integration with broader study**: Ensure alignment between technical plan and overall study.\n\n# Define data management processes\n\n1. **Data preparation and harmonization**: Implement consistent procedures for processing CCHS data.\n2. **Data security**: Outline handling protocols for restricted environments.\n3. **Version control**: Track changes in datasets and outputs using GitHub.\n\n# Plan communication and knowledge exchange\n\n1. **Internal communications**: Use GitHub Issues, Slack, and email for coordination.\n2. **External dissemination**: Plan presentations, publications, and policy briefs.\n3. **Documentation strategy**: Maintain Divio-style documentation for accessibility.\n\n# Develop risk management strategies\n\n1. **Identify risks**: Consider data availability, funding, and methodological uncertainties.\n2. **Mitigation measures**: Define strategies to address potential risks.\n3. **Contingency planning**: Establish fallback options for major challenges.\n\n# Conduct pilot work and feasibility checks\n\n1. **Prototype testing**: Conduct small-scale trials before full implementation.\n2. **Feasibility review**: Adjust project scope based on pilot findings.\n3. **Refinement of protocols**: Incorporate lessons learned into final methodology.\n\n# Finalize study protocol\n\n1. **Integration of feedback**: Revise protocols based on pilot and review feedback.\n2. **Ethical review (if applicable)**: Secure necessary approvals.\n3. **Sign-off and baseline**: Confirm agreement among stakeholders.\n\n# Execute study and deliver final outputs\n\n1. **Full-scale development**: Implement smoking history model and validate results.\n2. **Ongoing quality checks**: Maintain testing and documentation integrity.\n3. **Summative evaluation**: Ensure final deliverables meet project objectives.\n\n# Dissemination and close-out\n\n1. **Knowledge translation**: Share findings through reports, presentations, and publications.\n2. **Publication or final repository**: Release code and datasets with DOIs.\n3. **Project close-out review**: Document lessons learned and plan potential expansions.\n\n# Tracking and project management\n\n1. **GitHub Issues**: Use issue tracking for task management.\n2. **GitHub Projects**: Organize and visualize progress through kanban boards.\n3. **Regular progress reviews**: Conduct check-ins to ensure alignment with milestones.\n\n## Phase 1: Project setup and core infrastructure\n\n1. Set up GitHub repository with initial structure\n2. Configure GitHub Actions for CI/CD\n3. Create initial documentation framework\n4. Implement configuration management system\n5. Establish coding standards and contributor guidelines\n\n## Phase 2: Data processing implementation\n\n1. Develop functions for CCHS data harmonization\n2. Implement smoking status variable processing\n3. Create data preprocessing workflow\n4. Write documentation and tests for data processing\n\n## Phase 3: APC model implementation\n\n1. Implement natural cubic spline generation\n2. Develop APC modelling functions\n3. Create initiation probability estimation\n4. Create cessation probability estimation\n5. Write documentation and tests for APC components\n\n## Phase 4: Simulation and validation\n\n1. Develop smoking history generation functions\n2. Implement validation methodology\n3. Create calibration procedures\n4. Generate validation datasets\n5. Write documentation and tests for simulation components\n\n## Phase 5: Integration and documentation\n\n1. Ensure component integration\n2. Finalize documentation\n3. Create example workflows\n4. Develop tutorials and how-to guides\n5. Prepare for initial release\n\n# Specific implementation considerations\n\n## Configuration management\n\nWe will use the `config` package with YAML files to manage environment-specific settings:\n\n``` yaml\n# Example config.yml\ndefault:\n data_path: \"data/\"\n variables: !expr file.path(getwd(), \"worksheets/variables/huiport-variables.csv\")\n variable_details: !expr file.path(getwd(), \"worksheets/variable-details/cchsflow-variable-details.csv\")\n output_path: \"output/\"\n log_level: \"INFO\"\n\nsecure:\n data_path: \"/secure/data/\"\n output_path: \"/secure/output/\"\n log_level: \"WARN\"\n```\n\nThis approach allows for seamless transitions between different computing environments.\n\n## Documentation breakdown\n\nWe propose organizing documentation into the following Quarto files:\n\n### Reference documentation\n\n- `reference-variables.qmd`: Complete reference of all variables\n- `reference-functions.qmd`: Technical documentation of all functions\n- `reference-model.qmd`: Details of the APC model implementation\n\n### Explanation documentation\n\n- `explanation-smoking-history.qmd`: Conceptual overview of smoking history modelling\n- `explanation-apc-method.qmd`: Explanation of the APC methodology\n- `explanation-validation.qmd`: Discussion of validation approaches\n\n### How-to guides\n\n- `howto-setup.qmd`: Setting up the environment\n- `howto-process-cchs.qmd`: Processing CCHS data\n- `howto-run-apc.qmd`: Running the APC model\n- `howto-generate-histories.qmd`: Generating smoking histories\n- `howto-validate.qmd`: Validating results\n\n### Tutorials\n\n- `tutorial-basic.qmd`: Step-by-step tutorial for basic usage\n- `tutorial-advanced.qmd`: Advanced tutorial for customization\n\n## Testing strategy\n\nWe will implement a comprehensive testing strategy:\n\n1. **Unit tests**: For individual functions\n2. **Integration tests**: For component interactions\n3. **Regression tests**: To ensure consistency with previous results\n4. **Validation tests**: Against reference data\n\nTests will be organized to mirror the structure of the code, with separate test files for each module.\n\n## Considerations for secure environments\n\nTo ensure compatibility with secure environments like Statistics Canada's Regional Data Centres:\n\n1. No hard-coded file paths\n2. Configuration-driven data access\n3. Minimal external dependencies\n4. Well-documented installation procedures\n5. Alternative output formats for environments with restrictions\n6. All output meets small cell size and other privacy consideration the data sources and institutional partners.\n\n## International adaptability\n\nTo facilitate adoption by teams in other countries:\n\n1. Clear separation between data processing and modelling\n2. Documented variable mapping procedures\n3. Configurable parameters for country-specific variations\n4. Example workflows for adapting to different survey structures\n\n# Collaboration and contribution\n\n## Team roles and responsibilities\n\n- **Project coordination**: CSHGM Consortium\n- **Statistical methodology**: Colleagues from Statistics Canada, BCDCDC\n- **APC modelling expert**: Ted Holford\n- **R development**: To be determined\n- **Documentation**: To be determined\n- **Testing and validation**: To be determined\n\n## Contribution workflow\n\n1. Issues created for specific tasks\n2. Branches created for feature development\n3. Pull requests submitted for review\n4. Code review by at least one team member\n5. Automated testing via GitHub Actions\n6. Merge to main branch after approval\n\n## Communication channels\n\n- GitHub Issues for task tracking\n- Regular video meetings for team coordination\n- Email for broader announcements\n- Shared documentation for long-term knowledge preservation\n\n# Potential challenges and mitigation strategies\n\n| Challenge | Mitigation strategy |\n|--------------------------|----------------------------------------------|\n| Secure environment limitations | Develop with minimal dependencies, provide alternative implementation paths |\n| Compatibility across CCHS cycles | Robust variable harmonization, comprehensive testing with multiple cycles |\n| Statistical complexity | Clear documentation, code review by statistical experts |\n| Balancing accessibility vs. complexity | Modular design with multiple entry points for different user levels |\n| Long-term sustainability | Comprehensive documentation, clear contribution guidelines, active community building |\n\n# Timeline and milestones\n\n| Milestone | Target date | Deliverables |\n|---------------------|-------------------------|---------------------------|\n| Project setup | Month 1 | Repository, documentation framework, contribution guidelines |\n| Data processing implementation | Month 3 | Functions for CCHS data processing, documentation |\n| APC model implementation | Month 6 | Complete APC modelling functions, tests, documentation |\n| Simulation and validation | Month 9 | History generation, validation functions, documentation |\n| Integration and documentation | Month 12 | Complete documentation, examples, initial release |\n\n# Conclusion\n\nThis project specification outlines the approach for implementing the Canadian Smoking History Generator Model in R. By adhering to open science principles, following tidyverse design guidelines, and creating comprehensive documentation, we aim to create a valuable resource for researchers studying smoking behaviour and its health impacts.\n\nThe modular, configurable design will ensure the codebase can be used in various environments and adapted to different contexts, preserving the scientific methodology while improving accessibility and usability.\n\n# Next steps\n\n1. Finalize project specification based on team feedback\n2. Set up initial repository structure\n3. Implement configuration management system\n4. Begin work on data processing functions\n5. Develop initial documentation framework\n\n# References\n\nOntario SHGM study (2020). Current and future mortality probabilities in Ontario, 2002 to 2032. *Health Reports*, Statistics Canada.\n\nHolford, T.R. (1991). Understanding the effects of age, period, and cohort on incidence and mortality rates. *Annual Review of Public Health*, 12, 425-457. doi:10.1146/annurev.pu.12.050191.002233\n\nWickham, H. (2015). R packages: organize, test, document, and share your code. O'Reilly Media, Inc.\n\nWilkinson, M.D. et al. (2016). The FAIR Guiding Principles for scientific data management and stewardship. *Scientific Data*, 3(1), 1-9. doi:10.1038/sdata.2016.18\n\n# Appendix A: Glossary of terms\n\n| Term | Definition |\n|-------|-------------------------------------------------------------|\n| APC | Age-Period-Cohort modelling approach |\n| CCHS | Canadian Community Health Survey |\n| CSHGM | Canadian Smoking History Generator Model |\n| FAIR | Findable, Accessible, Interoperable, Reusable |\n| RDC | Research Data Centre (Statistics Canada secure environment) |\n\n# Appendix B: Example configuration file\n\n``` yaml\ndefault:\n # Data paths\n raw_data_path: \"data-raw/\"\n processed_data_path: \"data/\"\n output_path: \"output/\"\n \n # Logging configuration\n log_level: \"INFO\"\n log_file: \"logs/cshgm.log\"\n \n # Model parameters\n min_age: 8\n max_age: 99\n min_cohort: 1920\n max_cohort: 2020\n \n # CCHS cycles to include\n cchs_cycles: [\"2001\", \"2003\", \"2005\", \"2007-2008\", \"2009-2010\", \n \"2011-2012\", \"2013-2014\", \"2015-2016\", \"2017-2018\"]\n \n # APC model specifications\n age_knots: [10, 15, 20, 50, 60]\n period_knots: [1940, 1950, 1960, 1970, 1980]\n cohort_knots: [1930, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980]\n```", + "supporting": [ + "project-specifications_files" + ], + "filters": [ + "rmarkdown/pagebreak.lua" + ], + "includes": {}, + "engineDependencies": {}, + "preserve": {}, + "postProcess": true + } +} \ No newline at end of file diff --git a/_freeze/docs/reproducing-Ontario-study/execute-results/html.json b/_freeze/docs/reproducing-Ontario-study/execute-results/html.json new file mode 100644 index 0000000..e44513b --- /dev/null +++ b/_freeze/docs/reproducing-Ontario-study/execute-results/html.json @@ -0,0 +1,15 @@ +{ + "hash": "247d81f10d309a2efb63562bd9d63f23", + "result": { + "engine": "knitr", + "markdown": "---\ntitle: \"Reproducing the Canadian Smoking History Generator Model\"\nsubtitle: \"A Guide to Variable Derivation and Analysis\"\nauthor: \"CSHGM Development Team\"\ndate: \"Last Updated: 2025-03-07\"\nformat:\n html:\n toc: true\n toc-depth: 3\n number-sections: true\n theme: cosmo\n code-fold: show\nexecute:\n echo: true\n warning: false\n message: false\n---\n\n\n\n\n\n# Introduction\n\nThis document provides a guide to reproducing the Canadian Smoking History Generator Model as described in Manuel et al. (2002) \"Current and future mortality probabilities in Ontario, 2002 to 2032\". The model uses Age-Period-Cohort (APC) analysis to estimate smoking initiation and cessation probabilities across different birth cohorts, which are then used to generate complete smoking histories.\n\n## Purpose of This Guide\n\nThis guide aims to:\n\n1. Describe the key variables needed from the Canadian Community Health Survey (CCHS)\n2. Show how to derive the necessary variables for the model\n3. Provide R code implementations of the original SAS procedures\n4. Explain how to interpret and validate the results\n\n## Original Study Overview\n\nThe original study by Manuel et al. (2002) developed a model to:\n\n- Generate individual smoking histories for a simulated population\n- Estimate smoking prevalence across different time periods and birth cohorts\n- Model both smoking initiation and cessation probabilities\n- Account for age, period, and cohort effects in smoking behavior\n\nThe approach used data from the Canadian Community Health Survey to construct smoking histories and applied statistical modeling to estimate probabilities of starting and quitting smoking.\n\n# Required Data Sources\n\n## Canadian Community Health Survey (CCHS)\n\nThe CCHS is the primary data source for this analysis. Multiple cycles have been conducted:\n\n- CCHS 2001 (Cycle 1.1)\n- CCHS 2003 (Cycle 2.1)\n- CCHS 2005 (Cycle 3.1)\n- CCHS 2007-2008\n- CCHS 2009-2010\n- CCHS 2011-2012\n- CCHS 2013-2014\n- CCHS 2015-2016\n- CCHS 2017-2018\n\n## Variable Harmonization Across Cycles\n\nCCHS variable names have changed across cycles. We use the cchsflow package for variable harmonization:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of harmonizing CCHS data using cchsflow\n# library(cchsflow)\n# harmonized_data <- rec_with_table(\n# cchs_data,\n# c(\"SMK_01A\", \"SMKG01C_cont\", \"SMKG203_cont\", \"SMK_204\") \n# )\n```\n:::\n\n\n\n# Key Variables for Smoking History\n\n## Core Smoking Status Variables\n\nThe following variables are critical for determining smoking status:\n\n| Harmonized Variable | Description | Values |\n|----------------------------------|---------------------|-----------------|\n| SMK_01A | In lifetime, smoked 100 or more cigarettes | 1=Yes, 2=No |\n| SMK_202 | Current smoking status | 1=Daily, 2=Occasional, 3=Not at all |\n| SMKDSTY | Type of smoker | 1=Daily, 2=Occasional, 3=Former daily, 4=Former occasional, 5=Never |\n\n## Smoking Initiation Variables\n\nVariables measuring when someone started smoking:\n\n| Harmonized Variable | Description | Type |\n|-----------------------------------|---------------------|----------------|\n| SMKG01C_cont | Age smoked first cigarette | Continuous |\n| SMKG203_cont | Age started smoking daily (daily smokers) | Continuous |\n| SMKG207_cont | Age started smoking daily (former daily smokers) | Continuous |\n\n## Smoking Cessation Variables\n\nVariables measuring when someone quit smoking:\n\n| Harmonized Variable | Description | Type |\n|-----------------------------------|---------------------|----------------|\n| SMK_09A_cont | When stopped smoking daily (former daily) | Continuous |\n| SMKG09C | Years since stopped smoking daily (former daily) | Categorical |\n\n## Smoking Intensity Variables\n\nVariables measuring how much someone smokes/smoked:\n\n| Harmonized Variable | Description | Type |\n|-----------------------------------|---------------------|----------------|\n| SMK_204 | Number of cigarettes smoked daily (daily smokers) | Continuous |\n| SMK_208 | Number of cigarettes smoked daily (former daily smokers) | Continuous |\n| SMK_05B | Number of cigarettes smoked daily (occasional smokers) | Continuous |\n| SMK_05C | Number of days smoked in past month (occasional smokers) | Continuous |\n\n## Demographic Variables\n\nVariables used for cohort assignment and stratification:\n\n| Harmonized Variable | Description | Type |\n|---------------------|-------------------|-------------|\n| DHH_SEX | Sex of respondent | Categorical |\n| cchsbdate | CCHS survey date | Date |\n\n# Variable Derivation for Age-Period-Cohort Analysis\n\n## Smoking Initiation Process\n\n### Step 1: Identify Smoking Initiators\n\nThe first step is to identify individuals who have initiated smoking, defined as having smoked at least 100 cigarettes in their lifetime.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Using our process_smoking_initiation function\ninits_male <- process_smoking_initiation(harmonized_data, sex = \"M\")\ninits_female <- process_smoking_initiation(harmonized_data, sex = \"F\")\n```\n:::\n\n\n\nThe function shown above performs the following steps:\n\n1. Filters respondents by sex\n2. Identifies never-smokers (SMK_01A = 2) and sets their initiation age to 101 (a flag value)\n3. Creates an initiation indicator (init=1 for smokers, init=0 for never-smokers)\n4. Filters to include only those born in 1920 or later\n5. Creates a subset containing only those who initiated smoking\n6. Applies age filter (age \\>= 8)\n7. Calculates period (year of initiation) as cohort + age\n8. Returns a dataset with ont_id, weighting, age, cohort, period, and init variables\n\n### Step 2: Create Population Denominators\n\nTo calculate initiation rates, we need the population at risk of initiation at each age, period, and cohort combination.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example function for creating denominators (not fully implemented yet)\ncreate_initiation_denominators <- function(dataset, sex = \"M\") {\n # Function implementation would go here\n # This creates population counts by age, period, and cohort\n}\n```\n:::\n\n\n\n## Smoking Cessation Process\n\n### Step 1: Identify Smoking Cessation\n\nSimilarly, we identify individuals who have quit smoking and when they quit.\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example function for processing cessation data\nprocess_smoking_cessation <- function(dataset, sex = \"M\") {\n # Function implementation would follow similar steps to initiation\n # but with cessation-specific criteria\n}\n```\n:::\n\n\n\n## Age-Period-Cohort Modeling\n\nThe APC modeling approach uses splines to model age, period, and cohort effects:\n\n1. Natural cubic splines are constructed for age, period, and cohort\n2. These splines are used in a generalized linear model with binomial errors\n3. Survival probabilities are used to adjust for differential mortality\n4. Separate models are fit for males and females\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of creating splines for APC modeling\ncreate_age_splines <- function(ages, knots) {\n # Function to create natural cubic splines for ages\n # Implementation would go here\n}\n```\n:::\n\n\n\n# Applying the Model\n\n## Estimating Smoking Probabilities\n\nOnce the APC models are fitted, they can be used to predict:\n\n1. Initiation probabilities by age, period, and cohort\n2. Cessation probabilities by age, period, and cohort\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of predicting initiation probabilities\npredict_initiation <- function(age, period, cohort, sex) {\n # Implementation would use fitted coefficients from APC model\n}\n```\n:::\n\n\n\n## Generating Smoking Histories\n\nComplete smoking histories can be generated using:\n\n1. A microsimulation approach based on the estimated probabilities\n2. Monte Carlo methods to introduce appropriate stochasticity\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of generating a smoking history\ngenerate_smoking_history <- function(birth_year, sex) {\n # Simulation implementation would go here\n}\n```\n:::\n\n\n\n# Validation and Calibration\n\n## Comparing to Historical Data\n\nModel validation involves comparing the generated smoking histories to:\n\n1. Historical smoking prevalence data\n2. Known patterns in smoking behavior by birth cohort\n3. Other published estimates of smoking trends\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Example of validating model results\nvalidate_smoking_prevalence <- function(simulated_data, reference_data) {\n # Validation code would go here\n}\n```\n:::\n\n\n\n## Calibration Procedures\n\nIf necessary, model calibration can be performed by:\n\n1. Adjusting the baseline rates\n2. Modifying the period effects\n3. Fine-tuning cohort-specific parameters\n\n# Implementation Example\n\nBelow is a simplified example of processing smoking initiation data using the function we've developed:\n\n\n\n::: {.cell}\n\n```{.r .cell-code}\n# Create simulated data for testing\ntest_data <- data.frame(\n ont_id = 1001:1010,\n sex = rep(c(\"M\", \"F\"), 5),\n SMK_01A = c(1, 2, 1, 1, 1, 2, 1, 2, 1, 1), # 1=Yes, 2=No to 100+ cigarettes\n agefirst = c(16, NA, 12, 21, 7, NA, 18, NA, 15, 22),\n cchsbdate = as.Date(c(\"2001-06-15\", \"2001-07-20\", \"2001-08-10\", \n \"2001-09-05\", \"2001-10-25\", \"2002-01-15\",\n \"2002-02-20\", \"2002-03-10\", \"2002-04-15\", \"2002-05-20\")),\n weighting = round(runif(10, 100, 300))\n)\n\n# Process the initiation data\nmale_init <- process_smoking_initiation(test_data, sex = \"M\")\nfemale_init <- process_smoking_initiation(test_data, sex = \"F\")\n\n# Examine the results\nprint(male_init)\nprint(female_init)\n```\n:::\n\n\n\n# Conclusion\n\nThis guide has provided an overview of how to:\n\n1. Prepare CCHS data for smoking history analysis\n2. Derive the key variables needed for APC modeling\n3. Implement the core components of the Canadian Smoking History Generator Model\n4. Apply and validate the model\n\nFurther development is ongoing to complete the full implementation of the model in R, including additional validation against historical data and extensions to incorporate more recent survey cycles.\n\n# References\n\nManuel, D.G. et al. (2002). Current and future mortality probabilities in Ontario, 2002 to 2032. *Health Reports*, Statistics Canada.\n\nHolford, T.R. (1991). Understanding the effects of age, period, and cohort on incidence and mortality rates. *Annual Review of Public Health*, 12, 425-457.\n\nCanadian Community Health Survey (CCHS) - Annual Component. Statistics Canada.\n\n# Appendix: Additional Resources\n\n## SAS to R Translation Notes\n\nThe original model was implemented in SAS. Key translation considerations include:\n\n1. SAS `PROC GENMOD` is equivalent to R's `glm()` function\n2. SAS natural cubic splines can be created with R's `splines::ns()`\n3. SAS data steps are translated to R's data.frame operations\n4. SAS `%macro` functions are converted to R functions\n\n## Complete Variable Crosswalk\n\nFor a complete mapping of variables across CCHS cycles, refer to the included variable sheets:\n\n- `worksheets/cshgm-variables.csv`\n- `worksheets/cshgm-variable-details.csv`", + "supporting": [], + "filters": [ + "rmarkdown/pagebreak.lua" + ], + "includes": {}, + "engineDependencies": {}, + "preserve": {}, + "postProcess": true + } +} \ No newline at end of file diff --git a/_freeze/site_libs/clipboard/clipboard.min.js b/_freeze/site_libs/clipboard/clipboard.min.js new file mode 100644 index 0000000..1103f81 --- /dev/null +++ b/_freeze/site_libs/clipboard/clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v2.0.11 + * https://clipboardjs.com/ + * + * Licensed MIT © Zeno Rocha + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1= threshold triggers truncation + truncate_percentile: 99 # Upper percentile cap for skewed continuous vars + + # Imputation parameters (MICE) + imputation_m: 5 # Number of multiple imputations + imputation_maxit: 5 # MICE iterations per imputation + + # Logging + log_level: "INFO" + log_file: !expr file.path(getwd(), "logs/cshm.log") + + # APC model specifications (Holford knot structure) + apc: + age_knots: [10, 15, 20, 50, 60] + period_knots: [1940, 1950, 1960, 1970, 1980] + cohort_knots: [1930, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980] + # Period effect constraints (held constant beyond observed range) + # Men/women differ for initiation per Manuel et al. (2020) + period_constraints: + initiation_men_from: 1999 + initiation_women_from: 2003 + cessation_from: 2013 + cohort_constraints: + initiation_prior_to: 1920 + cessation_from: 1985 + # Period and cohort range for denominator construction + # period_max is the last observed CCHS cycle year (PUMF: 2022; Master: 2023 via statscan profile) + # projection_max is the final projection year for rate tables and smoking histories + period_min: 1965 + period_max: 2022 # statscan profile overrides to 2023 + projection_max: 2050 # rate tables and smoking histories projected to this year + cohort_min: 1920 + # Spline implementation + # Primary: "nsp" (natural splines via splines2::nsp()) + # Sensitivity: "rcs" (restricted cubic splines via rms::rcs()) + spline_library: "splines2" + spline_type: "nsp" + # Mortality adjustment method + # Primary: "mport" (MPoRT algorithm — see protocol §3.4.4) + # Sensitivity: "peto" (Peto constant risk ratio, consistent with Holford et al. 2014) + # NOTE: mport not yet implemented; peto used during development. + mortality_method: "peto" + # Subgroup structure for model stratification + # Subgroup stratification uses config keys (resolved via survey_var() at runtime) + subgroups: + national: + stratify_by: [sex] + provincial: + stratify_by: [province, sex] + + # Sensitivity analyses (prespecified; see protocol §3.5) + # Each entry documents the parameter change and its protocol rationale. + # To run a sensitivity analysis, override the relevant apc: parameter in your + # R session or add a named config profile below. + sensitivity: + spline_type: + description: > + Test restricted cubic splines (rcs) versus the primary natural splines (nsp). + Override: cfg$apc$spline_type <- "rcs" + primary: "nsp" + alternative: "rcs" + mortality_method: + description: > + Test Peto constant mortality risk ratio versus the primary MPoRT adjustment. + Peto is consistent with the original Holford et al. (2014) US implementation. + Override: cfg$apc$mortality_method <- "peto" + primary: "mport" + alternative: "peto" + period_constraints: + description: > + Test alternative period constraint years (e.g. extending to 2003/2007 for + initiation, or 2015 for cessation) to assess sensitivity to the assumed + stabilisation point. Constraints are held constant at the most recent observed + values, so the choice of constraint year affects projections into the future. + primary: {initiation_men_from: 1999, initiation_women_from: 2003, cessation_from: 2013} + cchs_era: + description: > + Examination of descriptive discontinuities across CCHS design eras + (2001-2005, 2007-2014, 2015-2021, 2022+). Not a formal sensitivity model; + addressed through descriptive statistics in Table 1 and considered for + SIMEX-style measurement error adjustment if era effects are detected. + eras: + - label: "2001-2005" + cycles: [cchs2001_p, cchs2003_p, cchs2005_p] + note: "Biennial, three-frame design" + - label: "2007-2014" + cycles: [cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p] + note: "Annual continuous collection; major redesign" + - label: "2015-2021" + cycles: [cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p] + note: "Major frame and content redesign" + - label: "2022+" + cycles: [cchs2022_p] + note: "Electronic questionnaire mode shift" + vaping: + description: > + Explore alternative assumptions for younger cohorts (born ~1995+) regarding + the relationship between vaping initiation and subsequent combustible cigarette + smoking: gateway (vaping increases smoking), displacement (vaping replaces + smoking), or common liability (shared underlying propensity). + note: "Applied to projection scenarios only; does not affect historical APC estimates." + + # Survey year lookup: integer year per SurveyCycle code (1–11) + # 2-year cycles use midpoint year (e.g. 2008 for 2007-08) + cycle_survey_years: + "1": 2001 + "2": 2003 + "3": 2005 + "4": 2008 # 2007-08 + "5": 2010 # 2009-10 + "6": 2012 # 2011-12 + "7": 2014 # 2013-14 + "8": 2016 # 2015-16 + "9": 2018 # 2017-18 + "10": 2020 # 2019-20 + "11": 2022 + +draft: + # 5% sample from cchsflow-data release files (all 11 cycles). + # Files named CCHS_2001.RData with internal object `table`. + # Usage: Sys.setenv(R_CONFIG_ACTIVE = "draft"); targets::tar_make() + sample_proportion: 0.05 + log_level: "DEBUG" + log_file: !expr file.path(getwd(), "logs/cshm-draft.log") + raw_data_dir: !expr path.expand("~/github/cchsflow-data/data/sources/rdata") + imputation_m: 1 + imputation_maxit: 1 + raw_data_file_map: + cchs2001_p: CCHS_2001.RData + cchs2003_p: CCHS_2003.RData + cchs2005_p: CCHS_2005.RData + cchs2007_2008_p: CCHS_2007_2008.RData + cchs2009_2010_p: CCHS_2009_2010.RData + cchs2011_2012_p: CCHS_2011_2012.RData + cchs2013_2014_p: CCHS_2013_2014.RData + cchs2015_2016_p: CCHS_2015_2016.RData + cchs2017_2018_p: CCHS_2017_2018.RData + cchs2019_2020_p: CCHS_2019_2020.RData + cchs2022_p: CCHS_2022.RData + +dev: + # Fast iteration: 10% sample, debug logging, single imputation + sample_proportion: 0.1 + log_level: "DEBUG" + log_file: !expr file.path(getwd(), "logs/cshm-dev.log") + imputation_m: 1 + imputation_maxit: 1 + prod: - data: - cchs2001_p: !expr file.path(getwd(), "data/prod/cchs2001_p.RData") - cchs2003_p: !expr file.path(getwd(), "data/prod/cchs2003_p.RData") - cchs2005_p: !expr file.path(getwd(), "data/prod/cchs2005_p.RData") - cchs2007_2008_p: !expr file.path(getwd(), "data/prod/cchs2007_2008_p.RData") - cchs2009_2010_p: !expr file.path(getwd(), "data/prod/cchs2009_2010_p.RData") - cchs2012_p: !expr file.path(getwd(), "data/prod/cchs2012_p.RData") - cchs2013_2014_p: !expr file.path(getwd(), "data/prod/cchs2013_2014_p.RData") + # Full PUMF run (same source as default, full sample) + strict_validation: true + sample_proportion: 1.0 + log_level: "WARN" + log_file: !expr file.path(getwd(), "logs/cshm-prod.log") + derived_data: + study_data: !expr file.path(getwd(), "data/study_data.rds") + analysis_data: !expr file.path(getwd(), "data/analysis_data.rds") + +statscan: + # Delegates to a local config file with RDC-specific paths. + # config/statscan.yml is gitignored — never commit. + # Copy config/statscan.yml.example → config/statscan.yml and fill in paths. + # Usage: Sys.setenv(R_CONFIG_ACTIVE = "statscan") + strict_validation: true + local_config: !expr config::get(file = file.path(getwd(), "config/statscan.yml")) + apc: + period_max: 2023 # Master files include 2023 cycle + projection_max: 2050 # same projection horizon as PUMF diff --git a/config/statscan.yml.example b/config/statscan.yml.example new file mode 100644 index 0000000..8e9648e --- /dev/null +++ b/config/statscan.yml.example @@ -0,0 +1,37 @@ +# statscan.yml.example +# +# Template for Statistics Canada RDC environment. +# Copy to config/statscan.yml and fill in actual paths. +# config/statscan.yml is gitignored — never commit real RDC paths. +# +# Usage: Sys.setenv(R_CONFIG_ACTIVE = "statscan") + +statscan: + # Master file paths (exact continuous variables) + # SMK_01C, SMK_040 instead of PUMF midpoint estimates + raw_data_dir: "/path/to/rdc/cchs/master/rdata" + data_type: ".RData" + sample_proportion: 1.0 + + # Master cycles available at RDC (2001–2023) + cchs_cycles: + - cchs2001_master + - cchs2003_master + - cchs2005_master + - cchs2007_2008_master + - cchs2009_2010_master + - cchs2011_2012_master + - cchs2013_2014_master + - cchs2015_2016_master + - cchs2017_2018_master + - cchs2019_2020_master + - cchs2022_master + - cchs2023_master + + # Output paths within RDC vetting folder + derived_data: + study_data: "/path/to/rdc/output/study_data.rds" + analysis_data: "/path/to/rdc/output/analysis_data.rds" + + log_level: "WARN" + log_file: "/path/to/rdc/logs/cshm-statscan.log" diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..0e3521a --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,3 @@ +/.quarto/ + +**/*.quarto_ipynb diff --git a/docs/_extensions/docstyle/_extension.yml b/docs/_extensions/docstyle/_extension.yml new file mode 100644 index 0000000..7c85750 --- /dev/null +++ b/docs/_extensions/docstyle/_extension.yml @@ -0,0 +1,28 @@ +title: docstyle +author: POPCORN Initiative +version: 0.1.0 +quarto-required: ">=1.4.0" +contributes: + formats: + docx: + # Reference document generated by pre-render hook from CSS configuration + reference-doc: _docstyle/reference.docx + # Suppress Quarto's default title block; author-plate.lua renders it instead + title-block-style: none + + # Lua filters applied in order + # page-section injects section breaks for named page styles (landscape, etc.) + # char-style runs at post-quarto to see expanded shortcodes + filters: + - page-section.lua + - toc-field.lua + - table-style.lua + - figure.lua + - list-style.lua + - version-history.lua + - author-plate.lua + - at: post-quarto + path: char-style.lua + - comment-inject.lua + - revisions-inject.lua + - zotero-inject.lua diff --git a/docs/_extensions/docstyle/author-plate.lua b/docs/_extensions/docstyle/author-plate.lua new file mode 100644 index 0000000..76df490 --- /dev/null +++ b/docs/_extensions/docstyle/author-plate.lua @@ -0,0 +1,432 @@ +-- author-plate.lua +-- Pandoc Lua filter that generates a formatted author plate from YAML metadata +-- +-- Usage in QMD: +-- ::: author-plate +-- ::: +-- +-- Configuration in _quarto.yml (under docstyle.author-plate): +-- corresponding-marker: "*" # Symbol for corresponding author +-- equal-marker: "†" # Symbol for equal contributors +-- show-orcid: false # Show ORCID after author name +-- show-email: true # Show corresponding author email +-- affiliation-style: numbered # numbered (superscripts) or inline +-- +-- Author metadata in QMD YAML front matter (Quarto manuscript format): +-- author: +-- - name: +-- given: "First" +-- family: "Last" +-- orcid: "0000-0000-0000-0000" +-- email: "author@example.com" +-- corresponding: true +-- equal-contributor: true +-- affiliations: +-- - ref: inst1 +-- affiliations: +-- - id: inst1 +-- name: "Institution Name" +-- department: "Department" +-- city: "City" +-- region: "Province" +-- country: "Country" + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local FORMAT = "openxml" + +-- Store metadata +local authors = nil +local affiliations = nil +local config = { + corresponding_marker = "*", + equal_marker = "†", + show_orcid = false, + show_email = true, + affiliation_style = "numbered" +} + +-- Unicode superscript digits +local superscripts = { + ["0"] = "⁰", ["1"] = "¹", ["2"] = "²", ["3"] = "³", ["4"] = "⁴", + ["5"] = "⁵", ["6"] = "⁶", ["7"] = "⁷", ["8"] = "⁸", ["9"] = "⁹" +} + +-- Use shared xml_escape from field-code-utils +local xml_escape = fcu.xml_escape + +-- Convert number to superscript string +local function to_superscript(num) + local s = tostring(num) + local result = "" + for i = 1, #s do + local digit = s:sub(i, i) + result = result .. (superscripts[digit] or digit) + end + return result +end + +-- Get author display name from by-author entry +-- Quarto's by-author has: name.literal (Inlines), name.given, name.family +local function get_author_name(author) + -- Try name.literal first (Quarto's normalized format) + if author["name"] and author["name"]["literal"] then + return pandoc.utils.stringify(author["name"]["literal"]) + end + + -- Try given + family + if author["name"] then + local name = author["name"] + local given = name["given"] and pandoc.utils.stringify(name["given"]) or "" + local family = name["family"] and pandoc.utils.stringify(name["family"]) or "" + if given ~= "" and family ~= "" then + return given .. " " .. family + end + return family ~= "" and family or given + end + + -- Fallback: stringify the whole author object + local name_str = pandoc.utils.stringify(author) + if name_str and name_str ~= "" then + return name_str + end + + return "" +end + +-- Build affiliation lookup table from affiliations metadata +-- Works with both raw affiliations and Quarto's by-affiliation format +local function build_affiliation_map(affs) + local map = {} + local ordered = {} + + if not affs then return map, ordered end + + for i, aff in ipairs(affs) do + local id = nil + if aff["id"] then + id = pandoc.utils.stringify(aff["id"]) + end + + local display = "" + local parts = {} + + -- Build display string: Department, Name, City, Region, Country + if aff["department"] then + table.insert(parts, pandoc.utils.stringify(aff["department"])) + end + if aff["name"] then + table.insert(parts, pandoc.utils.stringify(aff["name"])) + end + if aff["city"] then + table.insert(parts, pandoc.utils.stringify(aff["city"])) + end + if aff["region"] then + table.insert(parts, pandoc.utils.stringify(aff["region"])) + end + if aff["country"] then + table.insert(parts, pandoc.utils.stringify(aff["country"])) + end + + display = table.concat(parts, ", ") + + local entry = { + id = id, + number = i, + display = display + } + + if id then + map[id] = entry + end + table.insert(ordered, entry) + end + + return map, ordered +end + +-- Get affiliation numbers for an author +-- In Quarto's by-author, affiliations are resolved objects with id, name, etc. +local function get_author_affiliations(author, aff_map) + local numbers = {} + + if not author["affiliations"] then return numbers end + + for _, aff in ipairs(author["affiliations"]) do + local aff_id = nil + + -- Quarto resolves affiliations, so we get full objects with id + if type(aff) == "table" and aff["id"] then + aff_id = pandoc.utils.stringify(aff["id"]) + elseif type(aff) == "table" and aff["ref"] then + aff_id = pandoc.utils.stringify(aff["ref"]) + end + + if aff_id and aff_map[aff_id] then + table.insert(numbers, aff_map[aff_id].number) + end + end + + return numbers +end + +-- Check if author has attribute (Quarto stores these in attributes sub-object) +local function has_attribute(author, attr) + -- Check in attributes sub-object first (Quarto's normalized location) + if author["attributes"] and author["attributes"][attr] then + local val = author["attributes"][attr] + if type(val) == "boolean" then return val end + local str_val = pandoc.utils.stringify(val) + return str_val == "true" or str_val == "1" + end + + -- Check top-level as fallback + if author[attr] then + local val = author[attr] + if type(val) == "boolean" then return val end + local str_val = pandoc.utils.stringify(val) + return str_val == "true" or str_val == "1" + end + + return false +end + +-- Read configuration from metadata +function Meta(meta) + -- Check whether author-plate is disabled before loading authors. + -- When disabled, docstyle.authors in _quarto.yml is the correct pattern + -- (it avoids Pandoc's native title block without triggering author-plate + -- rendering). Suppress the deprecation warning in that case. + local plate_enabled = true + if meta.docstyle and meta.docstyle["author-plate"] then + local ap = meta.docstyle["author-plate"] + if ap["enabled"] ~= nil then + local val = ap["enabled"] + plate_enabled = (type(val) == "boolean" and val) or + (pandoc.utils.stringify(val) == "true") + end + end + + -- Priority 1: docstyle.authors (avoids Pandoc's native title block) + -- Priority 2: by-author (Quarto's normalized format) + -- Priority 3: author (basic Pandoc format) + if meta.docstyle and meta.docstyle["authors"] then + authors = meta.docstyle["authors"] + if plate_enabled then + io.stderr:write("[author-plate] Warning: docstyle.authors is deprecated. " .. + "Use standard Quarto author: metadata instead. " .. + "See https://quarto.org/docs/journals/authors.html\n") + end + io.stderr:write("[author-plate] Found " .. #authors .. " authors (from docstyle.authors)\n") + elseif meta["by-author"] then + authors = meta["by-author"] + io.stderr:write("[author-plate] Found " .. #authors .. " authors (from by-author)\n") + elseif meta.author then + authors = meta.author + io.stderr:write("[author-plate] Found " .. #authors .. " authors (from author - basic)\n") + end + + -- Get affiliations - priority order mirrors authors + if meta.docstyle and meta.docstyle["affiliations"] then + affiliations = meta.docstyle["affiliations"] + if plate_enabled then + io.stderr:write("[author-plate] Warning: docstyle.affiliations is deprecated. " .. + "Use standard Quarto affiliations: metadata instead.\n") + end + io.stderr:write("[author-plate] Found " .. #affiliations .. " affiliations (from docstyle.affiliations)\n") + elseif meta["by-affiliation"] then + affiliations = meta["by-affiliation"] + io.stderr:write("[author-plate] Found " .. #affiliations .. " affiliations (from by-affiliation)\n") + elseif meta.affiliations then + affiliations = meta.affiliations + io.stderr:write("[author-plate] Found " .. #affiliations .. " affiliations\n") + end + + -- Get config from docstyle.author-plate + if meta.docstyle and meta.docstyle["author-plate"] then + local ap_config = meta.docstyle["author-plate"] + + if ap_config["corresponding-marker"] then + config.corresponding_marker = pandoc.utils.stringify(ap_config["corresponding-marker"]) + end + if ap_config["equal-marker"] then + config.equal_marker = pandoc.utils.stringify(ap_config["equal-marker"]) + end + if ap_config["show-orcid"] ~= nil then + local val = ap_config["show-orcid"] + config.show_orcid = (type(val) == "boolean" and val) or (pandoc.utils.stringify(val) == "true") + end + if ap_config["show-email"] ~= nil then + local val = ap_config["show-email"] + config.show_email = (type(val) == "boolean" and val) or (pandoc.utils.stringify(val) == "true") + end + if ap_config["affiliation-style"] then + config.affiliation_style = pandoc.utils.stringify(ap_config["affiliation-style"]) + end + end + + return nil +end + +-- Build the author plate XML +local function build_author_plate_xml() + if not authors or #authors == 0 then + return nil + end + + local aff_map, aff_ordered = build_affiliation_map(affiliations) + local blocks = {} + + -- Build author line with superscript affiliations + local author_runs = {} + local corresponding_email = nil + local has_equal_contributors = false + + for i, author in ipairs(authors) do + local name = get_author_name(author) + local aff_nums = get_author_affiliations(author, aff_map) + local is_corresponding = has_attribute(author, "corresponding") + local is_equal = has_attribute(author, "equal-contributor") + + if is_equal then has_equal_contributors = true end + + -- Get email for corresponding author + if is_corresponding and author.email then + corresponding_email = pandoc.utils.stringify(author.email) + end + + -- Build superscript string + local superscript_parts = {} + for _, num in ipairs(aff_nums) do + table.insert(superscript_parts, to_superscript(num)) + end + if is_corresponding then + table.insert(superscript_parts, config.corresponding_marker) + end + if is_equal then + table.insert(superscript_parts, config.equal_marker) + end + local superscript_str = table.concat(superscript_parts, ",") + + -- Add ORCID if configured + local orcid_str = "" + if config.show_orcid and author.orcid then + orcid_str = " " .. pandoc.utils.stringify(author.orcid) + end + + -- Build run XML for this author + local author_xml = '' .. xml_escape(name) .. '' + + -- Add superscript + if superscript_str ~= "" then + author_xml = author_xml .. + '' .. + '' .. xml_escape(superscript_str) .. '' + end + + -- Add ORCID + if orcid_str ~= "" then + author_xml = author_xml .. '' .. xml_escape(orcid_str) .. '' + end + + -- Add separator (comma) unless last author + if i < #authors then + author_xml = author_xml .. ', ' + end + + table.insert(author_runs, author_xml) + end + + -- Author paragraph (centered, Author style) + local author_para = '' .. + '' .. + table.concat(author_runs) .. + '' + table.insert(blocks, author_para) + + -- Empty paragraph for spacing + table.insert(blocks, '') + + -- Affiliation lines (using Affiliation style) + for _, aff in ipairs(aff_ordered) do + local aff_line = to_superscript(aff.number) .. " " .. aff.display + local aff_para = '' .. + '' .. + '' .. xml_escape(aff_line) .. '' .. + '' + table.insert(blocks, aff_para) + end + + -- Empty paragraph for spacing before footnotes + table.insert(blocks, '') + + -- Corresponding author line (using Affiliation style for consistency) + if config.show_email and corresponding_email then + local corr_line = config.corresponding_marker .. "Corresponding author: " .. corresponding_email + local corr_para = '' .. + '' .. + '' .. xml_escape(corr_line) .. '' .. + '' + table.insert(blocks, corr_para) + end + + -- Equal contributors line (using Affiliation style for consistency) + if has_equal_contributors then + local equal_line = config.equal_marker .. "These authors contributed equally to this work" + local equal_para = '' .. + '' .. + '' .. xml_escape(equal_line) .. '' .. + '' + table.insert(blocks, equal_para) + end + + return table.concat(blocks) +end + +-- Process Div elements looking for .author-plate class +function Div(div) + -- Check if this div has the "author-plate" class + if not div.classes:includes("author-plate") then + return nil + end + + -- Only process for docx output + if FORMAT ~= "openxml" then + io.stderr:write("[author-plate] Skipping (not docx output)\n") + return nil + end + + if not authors or #authors == 0 then + io.stderr:write("[author-plate] No author metadata found\n") + return {} -- Remove the div entirely + end + + io.stderr:write("[author-plate] Generating author plate with " .. #authors .. " authors\n") + + -- Build the author plate XML + local plate_xml = build_author_plate_xml() + if not plate_xml then + return {} + end + + -- Wrap in ADDIN DOCSTYLE field code (using shared utility) + return { + pandoc.RawBlock("openxml", fcu.build_div_field_start("author-plate")), + pandoc.RawBlock("openxml", plate_xml), + pandoc.RawBlock("openxml", fcu.build_block_field_end()) + } +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +return { + { Meta = Meta }, + { Div = Div } +} diff --git a/docs/_extensions/docstyle/char-style.lua b/docs/_extensions/docstyle/char-style.lua new file mode 100644 index 0000000..07c36a8 --- /dev/null +++ b/docs/_extensions/docstyle/char-style.lua @@ -0,0 +1,172 @@ +-- char-style.lua +-- Pandoc Lua filter that converts spans with style classes to Word character styles +-- +-- Usage in QMD: +-- Date: [{{< meta version-summary.date >}}]{.date} -- Shortcode with styling +-- Date: []{.date} -- Auto-populated from metadata +-- Custom: [my text]{.date} -- Explicit content +-- +-- All three syntaxes work. Empty spans auto-populate from version-summary metadata. +-- Shortcode syntax is preferred as it's explicit and works with any metadata field. +-- +-- This applies w:rStyle to the run, creating a character-level style in Word. +-- The style must exist in reference.docx (generated from CSS via docstyle). +-- +-- Round-trip support: Each styled span is wrapped in an ADDIN DOCSTYLE field code +-- that carries the original QMD source as JSON metadata. During harvest, the field +-- code's instrText is parsed to restore the exact QMD source (e.g., shortcodes). +-- See development/spec-round-trip-mechanism.md for the full specification. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Metadata values for auto-population (set in Meta filter) +local meta_values = { + date = nil, + version = nil +} + +-- Get style ID for a class from schema, with fallback +local function get_style_id(class) + local class_def = fcu.get_char_class(class) + if class_def and class_def.word_style then + return class_def.word_style + end + -- Fallback for classes not in schema + local fallback = { + date = "Date", + version = "Version", + author = "Author", + affiliation = "Affiliation" + } + return fallback[class] +end + +-- List of supported style classes (for iteration) +local supported_classes = {"date", "version", "author", "affiliation"} + +-- Process Span elements with character style classes +function Span(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Check if this span has any of our style classes + local matched_class = nil + local style_id = nil + for _, class in ipairs(supported_classes) do + if el.classes:includes(class) then + matched_class = class + style_id = get_style_id(class) + break + end + end + + if not style_id then + return nil + end + + -- Get the text content + local text = fcu.inlines_to_text(el.content) + + -- Auto-populate empty spans from metadata + if text == "" or text == nil then + if matched_class and meta_values[matched_class] then + text = meta_values[matched_class] + debug("[char-style] Auto-populated '" .. style_id .. "' from metadata: " .. text .. "\n") + else + debug("[char-style] Warning: Empty span with style '" .. style_id .. "' and no metadata value\n") + return nil -- Return nil to keep span as-is if we can't populate it + end + else + debug("[char-style] Applying style '" .. style_id .. "' to: " .. text .. "\n") + end + + -- Build field code XML using shared utility + local field_xml = fcu.build_char_field_code(style_id, text, matched_class) + debug("[char-style] Emitting field code for '" .. matched_class .. "'\n") + + return pandoc.RawInline('openxml', field_xml) +end + +-- Process Div elements with .center class for paragraph alignment +function Div(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Check if this div has the center class + if not el.classes:includes('center') then + return nil + end + + debug("[char-style] Applying center alignment to div\n") + + -- For each paragraph in the div, add custom-style="Centered" attribute + -- This requires a "Centered" style in reference.docx with center alignment + -- Alternatively, we can directly inject the alignment via RawBlock + local result = {} + for _, block in ipairs(el.content) do + if block.t == "Para" then + -- Convert paragraph content to runs, wrapped in a centered paragraph + local runs = {} + for _, inline in ipairs(block.content) do + -- If it's already a RawInline openxml (from Span filter), keep it + if inline.t == "RawInline" and inline.format == "openxml" then + table.insert(runs, inline.text) + elseif inline.t == "Str" then + table.insert(runs, '' .. fcu.xml_escape(inline.text) .. '') + elseif inline.t == "Space" then + table.insert(runs, ' ') + end + end + + local para_xml = '' .. table.concat(runs) .. '' + table.insert(result, pandoc.RawBlock('openxml', para_xml)) + else + -- Keep other blocks as-is + table.insert(result, block) + end + end + + return result +end + +-- Extract metadata values for auto-population +function Meta(meta) + if FORMAT == "docx" or FORMAT == "openxml" then + debug("[char-style] Filter active for Word output\n") + end + + -- Extract version-summary.date and version-summary.version + if meta["version-summary"] then + local vs = meta["version-summary"] + if vs.date then + meta_values.date = pandoc.utils.stringify(vs.date) + debug("[char-style] Found version-summary.date: " .. meta_values.date .. "\n") + end + if vs.version then + meta_values.version = pandoc.utils.stringify(vs.version) + debug("[char-style] Found version-summary.version: " .. meta_values.version .. "\n") + end + end + + return nil +end + +-- Filter order: Meta first (to extract values), then Span (character styles), then Div (centering) +return { + { Meta = Meta }, + { Span = Span }, + { Div = Div } +} diff --git a/docs/_extensions/docstyle/comment-inject.lua b/docs/_extensions/docstyle/comment-inject.lua new file mode 100644 index 0000000..403770d --- /dev/null +++ b/docs/_extensions/docstyle/comment-inject.lua @@ -0,0 +1,162 @@ +-- comment-inject.lua +-- Pandoc Lua filter that converts comment markers to OpenXML comment markers +-- +-- Supported formats (HTML comments only): +-- 1. Range comment: text +-- 2. Point comment: +-- +-- The HTML comment format is robust because it can span complex structures +-- like tracked changes, multiple paragraphs, and nested formatting without +-- breaking Pandoc's parsing. +-- +-- Fallback behavior: +-- - Start marker without end: Converts to point comment at document end +-- - End marker without start: Ignored (orphan end markers are harmless) +-- +-- After rendering, R post-processing (inject_comments) adds the actual +-- comments.xml file to the DOCX container. + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Load shared field code utilities +local fcu = require("field-code-utils") +local xml_escape = fcu.xml_escape +local parse_comment_marker = fcu.parse_comment_marker + +-- Track comment states for fallback handling: +-- "started" = saw start marker, waiting for end +-- "completed" = saw both start and end (proper range comment) +-- "point" = point comment (no range, just a marker) +local comment_states = {} + +-- Generate OpenXML for comment range start +local function comment_start_xml(id) + return '' +end + +-- Generate OpenXML for comment range end (includes the clickable reference marker) +local function comment_end_xml(id) + return '' .. + '' +end + +-- Generate OpenXML for point comment (start + end + reference together) +local function comment_point_xml(id) + return '' .. + '' .. + '' +end + +-- Process RawInline elements for HTML comment markers +function RawInline(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Only process HTML raw content (where our markers live) + if el.format ~= "html" then + return nil + end + + local id, marker_type = parse_comment_marker(el.text) + if not id then + return nil -- Not a comment marker, leave as-is + end + + if marker_type == "point" then + -- Simple point comment - emit complete marker + debug("[comment-inject] Found point comment id=" .. id .. "\n") + comment_states[id] = "point" + return pandoc.RawInline('openxml', comment_point_xml(id)) + + elseif marker_type == "start" then + debug("[comment-inject] Found comment start marker id=" .. id .. "\n") + comment_states[id] = "started" + -- Emit only the start marker; end will come later (or we'll close at doc end) + return pandoc.RawInline('openxml', comment_start_xml(id)) + + elseif marker_type == "end" then + if comment_states[id] == "started" then + -- Normal case: matching end for a start we saw + debug("[comment-inject] Found comment end marker id=" .. id .. "\n") + comment_states[id] = "completed" + return pandoc.RawInline('openxml', comment_end_xml(id)) + elseif comment_states[id] == "completed" then + -- Duplicate end marker - ignore + debug("[comment-inject] Warning: duplicate end marker id=" .. id .. " (ignoring)\n") + return pandoc.RawInline('openxml', '') -- Empty, effectively removes it + else + -- Orphan end marker (no matching start) - ignore + debug("[comment-inject] Warning: orphan end marker id=" .. id .. " (no matching start, ignoring)\n") + return pandoc.RawInline('openxml', '') -- Empty, effectively removes it + end + end + + return nil +end + +-- Handle orphan start markers at document end +function Pandoc(doc) + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + debug("[comment-inject] Filter active for Word output\n") + + -- Check for orphan start markers (started but never completed) + -- These need to be closed at the end of the document + local orphan_ids = {} + for id, state in pairs(comment_states) do + if state == "started" then + table.insert(orphan_ids, id) + end + end + + if #orphan_ids == 0 then + return nil -- No orphans, document unchanged + end + + -- We have orphan start markers - inject end markers at end of document + debug("[comment-inject] Warning: " .. #orphan_ids .. " orphan start marker(s) found, closing at document end\n") + for _, id in ipairs(orphan_ids) do + debug("[comment-inject] - Orphan comment id=" .. id .. "\n") + comment_states[id] = "point" + end + + -- Inject the end+reference markers at the very end of the document + if #doc.blocks > 0 then + local last_block = doc.blocks[#doc.blocks] + + -- Create the closing XML for all orphan comments + local closing_inlines = {} + for _, id in ipairs(orphan_ids) do + table.insert(closing_inlines, pandoc.RawInline('openxml', comment_end_xml(id))) + end + + -- Append to last block based on its type + if last_block.t == "Para" or last_block.t == "Plain" then + for _, inline in ipairs(closing_inlines) do + table.insert(last_block.content, inline) + end + else + -- For other block types, add a new Plain block with the closures + table.insert(doc.blocks, pandoc.Plain(closing_inlines)) + end + end + + return doc +end + +return { + -- First pass: process inline elements (populates comment_states) + { RawInline = RawInline }, + -- Second pass: handle orphan comments at document level + { Pandoc = Pandoc } +} diff --git a/docs/_extensions/docstyle/default.css b/docs/_extensions/docstyle/default.css new file mode 100644 index 0000000..320ba97 --- /dev/null +++ b/docs/_extensions/docstyle/default.css @@ -0,0 +1,339 @@ +/* docstyle Default Styles + * CIHR-compliant formatting for Canadian health research documents + * + * Based on CIHR Application Formatting Requirements: + * https://cihr-irsc.gc.ca/e/29300.html + * + * Requirements: + * - Font: minimum 12pt Times New Roman, black (can be larger) + * - Margins: 2cm (0.79in) minimum, strictly enforced + * - Line spacing: single minimum + * - Page size: letter (8.5" x 11") + */ + +/* ========================================================================== + TYPOGRAPHY - CIHR Compliant + ========================================================================== */ + +/* Body text - 12pt Times New Roman, single spaced */ +p, body { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; + line-height: 1; +} + +/* Headings - Times New Roman, bold, same size hierarchy */ +h1 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +h2 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +h3 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + font-style: italic; + color: #000000; +} + +h4 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + font-style: italic; + color: #000000; +} + +h5 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + text-decoration: underline; + color: #000000; +} + +/* Links - blue for visibility */ +a { + color: #0000EE; +} + +/* ========================================================================== + DOCUMENT STRUCTURE + ========================================================================== */ + +/* Title - bold, slightly larger */ +.title { + font-family: "Times New Roman", "Times", serif; + font-size: 14pt; + font-weight: bold; + color: #000000; +} + +/* Subtitle */ +.subtitle { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; +} + +/* Author and affiliation blocks */ +.author { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + text-align: center; +} + +.affiliation { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-style: italic; + text-align: center; + color: #000000; +} + +/* Date and version display */ +.date { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + text-align: center; +} + +.version { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + text-align: center; +} + +/* Header and footer */ +.header { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + color: #000000; +} + +.footer { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + color: #000000; +} + +/* ========================================================================== + TABLE OF CONTENTS + ========================================================================== */ + +.toc-heading { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +.toc-1 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; + line-height: 1; +} + +.toc-2 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; + margin-left: 12pt; + line-height: 1; +} + +.toc-3 { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: normal; + color: #000000; + margin-left: 24pt; + line-height: 1; +} + +/* ========================================================================== + BODY TEXT VARIANTS + Pandoc assigns content to BodyText/FirstParagraph/Compact — not Normal. + These styles inherit from Normal via basedOn chains in reference.docx. + Use these selectors only when you need to override the inherited values. + ========================================================================== */ + +/* .body-text — inherits from Normal; override only if body paragraphs + need different formatting than headings or other Normal-based styles */ +/* .body-text { } */ + +/* .first-paragraph — first paragraph after a heading (basedOn BodyText) */ +/* .first-paragraph { } */ + +/* .compact — tight list paragraphs (basedOn BodyText) */ +/* .compact { margin-bottom: 0; } */ + +/* blockquote — block quotations (basedOn BodyText) */ +/* blockquote { margin-left: 0.5in; margin-right: 0.5in; } */ + +/* ========================================================================== + CAPTIONS AND FIGURES + ========================================================================== */ + +caption, .caption { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + color: #000000; +} + +.table-caption { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-weight: bold; + color: #000000; +} + +.image-caption { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-style: italic; + color: #000000; +} + +/* .figure — image container paragraph */ +/* .figure { text-align: center; } */ + +/* .captioned-figure — image with caption, keeps image and caption together */ +/* .captioned-figure { text-align: center; } */ + +/* ========================================================================== + BIBLIOGRAPHY + ========================================================================== */ + +.bibliography { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + color: #000000; + text-indent: -0.5in; + padding-left: 0.5in; +} + +/* ========================================================================== + DEFINITION LISTS + ========================================================================== */ + +dt { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + font-weight: bold; + color: #000000; +} + +dd { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + color: #000000; + margin-left: 0.25in; +} + +/* ========================================================================== + FOOTNOTES + ========================================================================== */ + +.footnote-text { + font-family: "Times New Roman", "Times", serif; + font-size: 10pt; + font-weight: normal; + color: #000000; + line-height: 1; +} + +/* ========================================================================== + LISTS + ========================================================================== */ + +ol { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; +} + +ul { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; +} + +/* ========================================================================== + TABLES + ========================================================================== */ + +/* Formal table - top/bottom borders, shaded header */ +.table-formal { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + border-top: 1pt solid #000000; + border-bottom: 1pt solid #000000; + border-left: none; + border-right: none; +} + +.table-formal th { + background-color: #D9D9D9; + font-weight: bold; + padding: 4pt; +} + +.table-formal td { + padding: 4pt; +} + +/* Grid table - all borders */ +.table-grid { + font-family: "Times New Roman", "Times", serif; + font-size: 12pt; + border: 1pt solid #000000; + border-collapse: collapse; +} + +.table-grid th, +.table-grid td { + border: 1pt solid #000000; + padding: 4pt; +} + +.table-grid th { + font-weight: bold; +} + +/* ========================================================================== + REVISION STYLES (Track Changes Preview) + ========================================================================== */ + +.del { + background-color: #ffebe9; + color: #6a737d; + text-decoration: line-through; +} + +.ins { + background-color: #e6ffec; + text-decoration: underline; +} + +/* ========================================================================== + COMMENT STYLES (Preview) + ========================================================================== */ + +.comment { + background-color: #fff3cd; + border-bottom: 2px solid #ffc107; +} diff --git a/docs/_extensions/docstyle/field-code-utils.lua b/docs/_extensions/docstyle/field-code-utils.lua new file mode 100644 index 0000000..48a131d --- /dev/null +++ b/docs/_extensions/docstyle/field-code-utils.lua @@ -0,0 +1,682 @@ +-- field-code-utils.lua +-- Shared utilities for ADDIN DOCSTYLE field code generation +-- +-- This module provides: +-- 1. Schema loading from inst/schema/docstyle-field-codes.json +-- 2. XML and JSON escaping functions +-- 3. Field code XML builders for all types (char, div, list, section) +-- +-- All Lua filters should require this module instead of reimplementing +-- these functions locally. + +local M = {} + +-- Current schema version (must match R's DOCSTYLE_SCHEMA_VERSION) +-- v2: R-First Assembly - Lua emits text markers, R builds sectPr +M.SCHEMA_VERSION = 2 + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function log_debug(msg) + if DEBUG then + io.stderr:write("[field-code-utils] " .. msg .. "\n") + end +end + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Schema Loading +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Cached schema (loaded once per filter run) +local cached_schema = nil + +-- Find the schema file path relative to the extension directory +local function find_schema_path() + -- Try multiple locations: + -- 1. Installed R package: system.file("schema/docstyle-field-codes.json", package = "docstyle") + -- 2. Development: relative to _extensions/docstyle/ + -- 3. Quarto extension: QUARTO_PROJECT_DIR/_extensions/docstyle/../../inst/schema/ + + local paths_to_try = {} + + -- Get the directory of this Lua file + local source = debug.getinfo(1, "S").source + if source:sub(1, 1) == "@" then + local lua_dir = source:sub(2):match("(.*/)") + if lua_dir then + -- Development layout: _extensions/docstyle/ -> ../../inst/schema/ + table.insert(paths_to_try, lua_dir .. "../../inst/schema/docstyle-field-codes.json") + -- Installed extension layout (schema copied to extension dir) + table.insert(paths_to_try, lua_dir .. "docstyle-field-codes.json") + end + end + + -- Try QUARTO_PROJECT_DIR + local project_dir = os.getenv("QUARTO_PROJECT_DIR") + if project_dir then + table.insert(paths_to_try, project_dir .. "/_extensions/docstyle/docstyle-field-codes.json") + table.insert(paths_to_try, project_dir .. "/inst/schema/docstyle-field-codes.json") + end + + for _, path in ipairs(paths_to_try) do + local f = io.open(path, "r") + if f then + f:close() + log_debug("Found schema at: " .. path) + return path + end + end + + return nil +end + +-- Simple JSON parser for our schema (handles objects, arrays, strings, numbers, booleans) +-- This avoids requiring external JSON libraries in Pandoc Lua filters +local function parse_json(str) + local pos = 1 + local function skip_whitespace() + pos = str:match("^%s*()", pos) + end + + local function parse_value() + skip_whitespace() + local c = str:sub(pos, pos) + + if c == '"' then + -- String + local start = pos + 1 + pos = pos + 1 + while pos <= #str do + local ch = str:sub(pos, pos) + if ch == '"' then + local result = str:sub(start, pos - 1) + pos = pos + 1 + -- Unescape basic sequences + result = result:gsub("\\n", "\n"):gsub("\\t", "\t"):gsub('\\"', '"'):gsub("\\\\", "\\") + return result + elseif ch == "\\" then + pos = pos + 2 + else + pos = pos + 1 + end + end + elseif c == "{" then + -- Object + pos = pos + 1 + local obj = {} + skip_whitespace() + if str:sub(pos, pos) == "}" then + pos = pos + 1 + return obj + end + while true do + skip_whitespace() + local key = parse_value() + skip_whitespace() + pos = pos + 1 -- skip ':' + local value = parse_value() + obj[key] = value + skip_whitespace() + local sep = str:sub(pos, pos) + pos = pos + 1 + if sep == "}" then break end + end + return obj + elseif c == "[" then + -- Array + pos = pos + 1 + local arr = {} + skip_whitespace() + if str:sub(pos, pos) == "]" then + pos = pos + 1 + return arr + end + while true do + table.insert(arr, parse_value()) + skip_whitespace() + local sep = str:sub(pos, pos) + pos = pos + 1 + if sep == "]" then break end + end + return arr + elseif str:sub(pos, pos + 3) == "true" then + pos = pos + 4 + return true + elseif str:sub(pos, pos + 4) == "false" then + pos = pos + 5 + return false + elseif str:sub(pos, pos + 3) == "null" then + pos = pos + 4 + return nil + else + -- Number + local num_str = str:match("^-?%d+%.?%d*", pos) + if num_str then + pos = pos + #num_str + return tonumber(num_str) + end + end + error("JSON parse error at position " .. pos .. ": " .. str:sub(pos, pos + 20)) + end + + return parse_value() +end + +-- Load and cache the schema +function M.load_schema() + if cached_schema then + return cached_schema + end + + local schema_path = find_schema_path() + if not schema_path then + log_debug("Schema file not found, using built-in defaults") + -- Return minimal built-in schema as fallback + cached_schema = { + schema_version = M.SCHEMA_VERSION, + char_classes = {}, + div_types = {}, + list_classes = {} + } + return cached_schema + end + + local f = io.open(schema_path, "r") + if not f then + log_debug("Could not open schema file: " .. schema_path) + return nil + end + + local content = f:read("*a") + f:close() + + local ok, schema = pcall(parse_json, content) + if not ok then + log_debug("Failed to parse schema JSON: " .. tostring(schema)) + return nil + end + + cached_schema = schema + log_debug("Loaded schema version " .. (schema.schema_version or "unknown")) + return cached_schema +end + +-- Get char class definition from schema +function M.get_char_class(class) + local schema = M.load_schema() + if schema and schema.char_classes then + return schema.char_classes[class] + end + return nil +end + +-- Get div type definition from schema +function M.get_div_type(name) + local schema = M.load_schema() + if schema and schema.div_types then + return schema.div_types[name] + end + return nil +end + +-- Get list class definition from schema +function M.get_list_class(class) + local schema = M.load_schema() + if schema and schema.list_classes then + return schema.list_classes[class] + end + return nil +end + +-- Get table class definition from schema +function M.get_table_class(class) + local schema = M.load_schema() + if schema and schema.table_classes then + return schema.table_classes[class] + end + return nil +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Escaping Functions +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Escape XML special characters for use in OOXML content +function M.xml_escape(text) + if not text then return "" end + text = text:gsub("&", "&") + text = text:gsub("<", "<") + text = text:gsub(">", ">") + text = text:gsub('"', """) + text = text:gsub("'", "'") + return text +end + +-- Escape a string for use inside a JSON string value +-- Handles backslash and double-quote +function M.json_escape(text) + if not text then return "" end + text = text:gsub('\\', '\\\\') + text = text:gsub('"', '\\"') + return text +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Field Code Builders +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Build JSON payload for field code instrText +-- @param payload_type: "char", "div", "list", or "section" +-- @param fields: table of additional fields to include +-- @return JSON string (not XML-escaped) +function M.build_payload_json(payload_type, fields) + local parts = {} + table.insert(parts, '"type":"' .. M.json_escape(payload_type) .. '"') + table.insert(parts, '"version":' .. M.SCHEMA_VERSION) + + for key, value in pairs(fields) do + if type(value) == "string" then + table.insert(parts, '"' .. key .. '":"' .. M.json_escape(value) .. '"') + elseif type(value) == "number" then + table.insert(parts, '"' .. key .. '":' .. value) + elseif type(value) == "boolean" then + table.insert(parts, '"' .. key .. '":' .. (value and "true" or "false")) + end + end + + return "{" .. table.concat(parts, ",") .. "}" +end + +-- Build the QMD source string for a char class +-- Uses source_template from schema if available, otherwise builds explicit form +function M.build_char_source(class, text) + local class_def = M.get_char_class(class) + if class_def and class_def.source_template then + return class_def.source_template + else + return "[" .. text .. "]{." .. class .. "}" + end +end + +-- Build complete ADDIN DOCSTYLE field code XML for char type +-- @param style_id: Word style ID (e.g., "Date") +-- @param text: Display text +-- @param class: CSS class name (e.g., "date") +-- @return OOXML string +function M.build_char_field_code(style_id, text, class) + local source = M.build_char_source(class, text) + local json = M.build_payload_json("char", { + class = class, + source = source + }) + local json_xml = M.xml_escape(json) + + local display_run = '' .. + '' .. + '' .. M.xml_escape(text) .. '' .. + '' + + return '' .. + ' ADDIN DOCSTYLE ' .. json_xml .. ' ' .. + '' .. + display_run .. + '' +end + +-- Build field code start marker for block types (div, list, section) +-- @param payload_type: "div", "list", or "section" +-- @param fields: payload fields (e.g., {name = "toc"} or {class = "list-alpha"}) +-- @return OOXML paragraph string +function M.build_block_field_start(payload_type, fields) + local json = M.build_payload_json(payload_type, fields) + local json_xml = M.xml_escape(json) + + return '' .. + ' ADDIN DOCSTYLE ' .. json_xml .. ' ' .. + '' +end + +-- Build field code end marker for block types +-- @return OOXML paragraph string +function M.build_block_field_end() + return '' +end + +-- Convenience: Build div field code start +function M.build_div_field_start(name) + return M.build_block_field_start("div", {name = name}) +end + +-- Convenience: Build list field code start +function M.build_list_field_start(class, start_num) + local fields = {class = class} + if start_num and start_num > 1 then + fields.start = start_num + end + return M.build_block_field_start("list", fields) +end + +-- Convenience: Build table field code start +-- @param class: table class (e.g., "table-formal") +-- @param attrs: optional attributes table (widths, width, font-size, etc.) +function M.build_table_field_start(class, attrs) + local fields = {class = class} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + return M.build_block_field_start("table", fields) +end + +-- Convenience: Build figure field code start +-- @param id: QMD figure ID (e.g. "fig-consort-flow") +-- @param attrs: optional attributes table (docpr_id, width, align, wrap, original_path) +function M.build_figure_field_start(id, attrs) + local fields = {id = id} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + return M.build_block_field_start("figure", fields) +end + +-- Convenience: Build section field code start +function M.build_section_field_start(class, attrs) + local fields = {class = class} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + return M.build_block_field_start("section", fields) +end + +-- Build complete section field code in a SINGLE paragraph for R-First Assembly. +-- This prevents the 3-line gap by emitting BEGIN/instrText/SEPARATE/marker/END +-- all in one paragraph rather than three separate paragraphs. +-- @param class: section class (e.g., "section-body") +-- @param attrs: optional attributes table +-- @param marker_text: the DOCSTYLE_SECTION::... marker text +-- @return OOXML paragraph string +function M.build_section_marker_para(class, attrs, marker_text) + local fields = {class = class} + if attrs then + for k, v in pairs(attrs) do + fields[k] = v + end + end + local json = M.build_payload_json("section", fields) + local json_xml = M.xml_escape(json) + local marker_xml = M.xml_escape(marker_text) + + return '' .. + '' .. + ' ADDIN DOCSTYLE ' .. json_xml .. ' ' .. + '' .. + '' .. marker_xml .. '' .. + '' +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Helper Functions +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Convert inline content to plain text (recursively handles nested spans) +function M.inlines_to_text(inlines) + local text = "" + for _, inline in ipairs(inlines) do + if inline.t == "Str" then + text = text .. inline.text + elseif inline.t == "Space" then + text = text .. " " + elseif inline.t == "SoftBreak" then + text = text .. " " + elseif inline.t == "Span" then + text = text .. M.inlines_to_text(inline.content) + end + end + return text +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Page Config Loading (shared across filters) +-- ═══════════════════════════════════════════════════════════════════════════ + +-- Cached page config (loaded once, shared by all filters in same render) +local cached_page_config = nil + +--- Load page-config.json from _docstyle/ directory. +-- Returns the parsed config table, or nil if not found. +-- Result is cached so multiple filters reading the same file pay I/O once. +function M.load_page_config() + if cached_page_config then return cached_page_config end + + local config_paths = { + "_docstyle/page-config.json", + "./_docstyle/page-config.json" + } + + for _, path in ipairs(config_paths) do + local file = io.open(path, "r") + if file then + local content = file:read("*a") + file:close() + local ok, config = pcall(function() + return pandoc.json.decode(content) + end) + if ok and config then + log_debug("Loaded page config from " .. path) + cached_page_config = config + return config + end + end + end + + log_debug("No page-config.json found") + return nil +end + + +-- ═══════════════════════════════════════════════════════════════════════════ +-- Inline Renderer: Pandoc AST → OOXML runs +-- ═══════════════════════════════════════════════════════════════════════════ +-- +-- Converts Pandoc inline elements to OOXML run XML strings. +-- Handles the pre-conversion AST forms present when table-style.lua runs +-- (before char-style.lua and comment-inject.lua in the filter chain). +-- +-- base_rPr_parts: array of XML fragments to include in every +-- e.g., {"", '', ''} + +-- Build ... from an array of parts, or "" if empty +local function build_rPr(parts) + if #parts == 0 then return "" end + return "" .. table.concat(parts) .. "" +end + +-- Build a single with given rPr parts and text +local function build_text_run(rPr_parts, text) + return "" .. build_rPr(rPr_parts) .. + '' .. M.xml_escape(text) .. "" +end + +-- Char-style class → Word style ID (via schema, with minimal fallback) +local char_style_fallback = { + date = "Date", version = "Version", author = "Author", + affiliation = "Affiliation", sc = "SmallCaps" +} +local function get_char_style_id(class) + local def = M.get_char_class(class) + if def and def.word_style then return def.word_style end + return char_style_fallback[class] +end + +-- Parse comment marker from HTML text +-- Returns id and type ("start", "end", "point"), or nil +-- Exported as M.parse_comment_marker for use by comment-inject.lua +local function parse_comment_marker(text) + if not text then return nil, nil end + local start_id = text:match('') + if start_id then return start_id, "start" end + local end_id = text:match('') + if end_id then return end_id, "end" end + local point_id = text:match('') + if point_id then return point_id, "point" end + return nil, nil +end + +-- Recurse into inline content with an extra rPr fragment appended +-- Returns array of XML strings +local function recurse_with_rPr(content, rPr_parts, extra_rPr) + local new_rPr = {} + for _, p in ipairs(rPr_parts) do table.insert(new_rPr, p) end + if type(extra_rPr) == "table" then + for _, e in ipairs(extra_rPr) do table.insert(new_rPr, e) end + else + table.insert(new_rPr, extra_rPr) + end + local results = {} + for _, child in ipairs(content) do + for _, xml in ipairs(render_inline(child, new_rPr)) do + table.insert(results, xml) + end + end + return results +end + +-- Render a single Pandoc inline element to OOXML run(s) +-- Returns array of XML strings +local function render_inline(inline, rPr_parts) + local results = {} + + if inline.t == "Str" then + table.insert(results, build_text_run(rPr_parts, inline.text)) + + elseif inline.t == "Space" or inline.t == "SoftBreak" then + table.insert(results, build_text_run(rPr_parts, " ")) + + elseif inline.t == "Strong" then + return recurse_with_rPr(inline.content, rPr_parts, "") + + elseif inline.t == "Emph" then + return recurse_with_rPr(inline.content, rPr_parts, "") + + elseif inline.t == "Strikeout" then + return recurse_with_rPr(inline.content, rPr_parts, "") + + elseif inline.t == "Superscript" then + return recurse_with_rPr(inline.content, rPr_parts, '') + + elseif inline.t == "Subscript" then + return recurse_with_rPr(inline.content, rPr_parts, '') + + elseif inline.t == "Span" then + -- Check for char-style class via schema lookup + local matched_class = nil + local matched_style_id = nil + for _, class in ipairs(inline.classes) do + local sid = get_char_style_id(class) + if sid then + matched_class = class + matched_style_id = sid + break + end + end + + if matched_class then + -- Emit char field code (replicates char-style.lua) + local text = M.inlines_to_text(inline.content) + if text ~= "" then + local field_xml = M.build_char_field_code( + matched_style_id, text, matched_class) + table.insert(results, field_xml) + end + else + -- Unknown span class — recurse into children with current rPr + for _, child in ipairs(inline.content) do + for _, xml in ipairs(render_inline(child, rPr_parts)) do + table.insert(results, xml) + end + end + end + + elseif inline.t == "Link" then + return recurse_with_rPr(inline.content, rPr_parts, + {'', ''}) + + elseif inline.t == "RawInline" then + if inline.format == "html" then + -- Check for comment markers (replicates comment-inject.lua) + local id, marker_type = parse_comment_marker(inline.text) + if id then + if marker_type == "start" then + table.insert(results, + '') + elseif marker_type == "end" then + table.insert(results, + '' .. + '') + elseif marker_type == "point" then + table.insert(results, + '' .. + '' .. + '') + end + end + -- Other HTML raw inlines are dropped (no meaningful OOXML equivalent) + elseif inline.format == "openxml" then + -- Already OOXML — pass through unchanged + table.insert(results, inline.text) + end + + elseif inline.t == "LineBreak" then + -- Line break within a paragraph + table.insert(results, "") + + elseif inline.t == "Code" then + table.insert(results, build_text_run(rPr_parts, inline.text)) + + -- Fallback: try to recurse into content, or stringify + elseif inline.content then + for _, child in ipairs(inline.content) do + for _, xml in ipairs(render_inline(child, rPr_parts)) do + table.insert(results, xml) + end + end + else + -- Leaf node we don't handle — stringify + local text = pandoc.utils.stringify(pandoc.Inlines({inline})) + if text ~= "" then + table.insert(results, build_text_run(rPr_parts, text)) + end + end + + return results +end + +--- Render an array of Pandoc Inlines to OOXML run XML. +-- @param inlines Array of Pandoc inline elements +-- @param base_rPr_parts Array of base run property XML fragments +-- @return Concatenated OOXML string (runs only, no paragraph wrapper) +function M.render_inlines(inlines, base_rPr_parts) + base_rPr_parts = base_rPr_parts or {} + local all_runs = {} + for _, inline in ipairs(inlines) do + for _, xml in ipairs(render_inline(inline, base_rPr_parts)) do + table.insert(all_runs, xml) + end + end + return table.concat(all_runs) +end + +-- Export parse_comment_marker for use by comment-inject.lua +M.parse_comment_marker = parse_comment_marker + + +return M diff --git a/docs/_extensions/docstyle/figure.lua b/docs/_extensions/docstyle/figure.lua new file mode 100644 index 0000000..79b9583 --- /dev/null +++ b/docs/_extensions/docstyle/figure.lua @@ -0,0 +1,108 @@ +-- figure.lua +-- Pandoc Lua filter that wraps .figure divs in ADDIN DOCSTYLE field codes +-- for round-trip harvest fidelity. +-- +-- Usage in QMD: +-- ::: {#fig-consort-flow .figure width="80%" align="center"} +-- ![](images/flow.png) +-- +-- **Figure 1.** Caption text with [@citation]. +-- ::: +-- +-- The filter: +-- 1. Detects divs with class "figure" +-- 2. Emits opening ADDIN DOCSTYLE field code carrying id and attributes +-- 3. Passes through all inner blocks (image + caption paragraph) unchanged +-- 4. Emits closing field code +-- +-- On re-harvest, detect_docstyle_field_codes() finds these markers, +-- handle_docstyle_figure() reconstructs the div_open with the original id, +-- and the harvest loop emits the figure div with the correct QMD id. + +local fcu = require("field-code-utils") + +-- Normalise FORMAT: Quarto passes "docx" at runtime; shadow and re-map to "openxml" +-- so all checks use the canonical name (same pattern as table-style.lua, list-style.lua). +local FORMAT = "openxml" + +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write("[figure] " .. msg .. "\n") + end +end + +-- Div attributes excluded from the field code payload (Pandoc-internal) +local skip_attr_keys = { ["data-pos"] = true } + +-- Process Div elements with class "figure" +function Div(div) + if FORMAT ~= "openxml" then + return nil + end + + -- Only handle divs with the "figure" class + local is_figure = false + for _, class in ipairs(div.classes) do + if class == "figure" then + is_figure = true + break + end + end + if not is_figure then + return nil + end + + -- Collect the QMD id (from div.identifier) and attributes + local fig_id = div.identifier + if not fig_id or fig_id == "" then + fig_id = "fig-unknown" + end + + local attrs = {} + for key, val in pairs(div.attributes) do + if val and val ~= "" and not skip_attr_keys[key] then + attrs[key] = val + end + end + + -- Extract image path from the first Para containing an Image inside the div. + -- This becomes original_path in the field code payload for re-harvest path restoration. + local original_path = nil + for _, block in ipairs(div.content) do + if block.t == "Para" then + for _, inline in ipairs(block.content) do + if inline.t == "Image" then + original_path = inline.src + break + end + end + end + if original_path then break end + end + if original_path and original_path ~= "" then + attrs["original_path"] = original_path + end + + debug("Processing .figure div: id=" .. fig_id) + + local field_start = fcu.build_figure_field_start(fig_id, attrs) + local field_end = fcu.build_block_field_end() + + -- Wrap: field_start | inner blocks | field_end + local result = pandoc.Blocks({ pandoc.RawBlock("openxml", field_start) }) + for _, block in ipairs(div.content) do + result:insert(block) + end + result:insert(pandoc.RawBlock("openxml", field_end)) + + return result +end + +-- Normalise FORMAT at document level: Quarto passes "docx", canonicalise to "openxml". +function Pandoc(_) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end diff --git a/docs/_extensions/docstyle/generate-reference.R b/docs/_extensions/docstyle/generate-reference.R new file mode 100644 index 0000000..614338b --- /dev/null +++ b/docs/_extensions/docstyle/generate-reference.R @@ -0,0 +1,330 @@ +#!/usr/bin/env Rscript +# Pre-render hook: Generate reference.docx from CSS +# +# This script is called by Quarto before rendering to generate a reference.docx +# from the docstyle CSS configuration. Uses hash-based caching to avoid +# regeneration when nothing has changed. +# +# Usage in _quarto.yml: +# project: +# pre-render: _extensions/docstyle/generate-reference.R +# +# Behaviour: +# - If user explicitly sets reference-doc in YAML, skip generation (use theirs) +# - Otherwise, generate reference.docx from docstyle.css configuration +# - Cache by hash: only regenerate when CSS or docstyle config changes +# +# Output: +# - _docstyle/reference.docx (cached reference document) +# - _docstyle/reference.docx.hash (hash of inputs for cache validation) + +# Null coalesce helper (define early since used throughout) +`%||%` <- function(x, y) if (is.null(x)) y else x + +# Resolve project root — prefers QUARTO_PROJECT_DIR, then walks upward +# looking for a _quarto.yml with project:/docstyle: or a .git anchor. +if (requireNamespace("docstyle", quietly = TRUE)) { + project_dir <- docstyle::find_project_root(getwd()) +} else { + # Inline fallback for environments without the package installed + env_dir <- Sys.getenv("QUARTO_PROJECT_DIR", "") + project_dir <- if (nzchar(env_dir)) env_dir else getwd() +} + +# Find _quarto.yml +quarto_yml <- file.path(project_dir, "_quarto.yml") +if (!file.exists(quarto_yml)) { + message("[generate-reference] No _quarto.yml found, skipping reference generation") + quit(save = "no", status = 0) +} + +# Parse _quarto.yml +config <- tryCatch({ + yaml::read_yaml(quarto_yml) +}, error = function(e) { + message("[generate-reference] Error reading _quarto.yml: ", e$message) + quit(save = "no", status = 0) +}) + +# Check if user explicitly set a custom reference-doc (not the generated one) +# If pointing to _docstyle/reference.docx, we still need to generate it +has_custom_reference_doc <- function(cfg, sidecar_dir) { + generated_path <- file.path(sidecar_dir, "reference.docx") + + check_path <- function(path) { + if (is.null(path)) return(FALSE) + # Normalize paths for comparison + norm_path <- normalizePath(path, mustWork = FALSE) + norm_generated <- normalizePath(generated_path, mustWork = FALSE) + # If it's the generated path, we should still generate + if (norm_path == norm_generated) return(FALSE) + # Also check relative path comparison + if (path == generated_path) return(FALSE) + if (basename(dirname(path)) == basename(sidecar_dir) && + basename(path) == "reference.docx") return(FALSE) + TRUE + } + + # Check format.docx.reference-doc + if (check_path(cfg$format$docx$`reference-doc`)) return(TRUE) + if (check_path(cfg$format$`docstyle-docx`$`reference-doc`)) return(TRUE) + # Check top-level reference-doc + if (check_path(cfg$`reference-doc`)) return(TRUE) + FALSE +} + +sidecar_dir_name <- config$docstyle$`sidecar-dir` %||% "_docstyle" +if (has_custom_reference_doc(config, sidecar_dir_name)) { + message("[generate-reference] User specified custom reference-doc, skipping CSS generation") + quit(save = "no", status = 0) +} + +# Check if docstyle configuration exists +if (is.null(config$docstyle)) { + message("[generate-reference] No docstyle: section found, skipping reference generation") + quit(save = "no", status = 0) +} + +# Resolve CSS path(s) - supports single path, array, or uses default +css_config <- config$docstyle$css + +if (is.null(css_config)) { + # No CSS specified - use default.css from extension + # Find the extension directory (where this script lives) + script_dir <- tryCatch({ + # When running as Rscript + script_path <- commandArgs(trailingOnly = FALSE) + file_arg <- grep("^--file=", script_path, value = TRUE) + if (length(file_arg) > 0) { + dirname(normalizePath(sub("^--file=", "", file_arg))) + } else { + # Fallback: look relative to project + file.path(project_dir, "_extensions", "docstyle") + } + }, error = function(e) { + file.path(project_dir, "_extensions", "docstyle") + }) + + default_css <- file.path(script_dir, "default.css") + if (file.exists(default_css)) { + css_paths <- default_css + message("[generate-reference] Using default CIHR-compliant CSS") + } else { + message("[generate-reference] No docstyle.css specified and default.css not found") + quit(save = "no", status = 0) + } +} else { + # User specified CSS - resolve paths + css_paths <- vapply(css_config, function(p) { + full_path <- file.path(project_dir, p) + if (file.exists(full_path)) full_path else p + }, character(1)) + + # Check all CSS files exist + missing_css <- css_paths[!file.exists(css_paths)] + if (length(missing_css) > 0) { + message("[generate-reference] CSS file(s) not found: ", paste(missing_css, collapse = ", ")) + quit(save = "no", status = 0) + } +} + +# Setup output paths +sidecar_dir <- config$docstyle$`sidecar-dir` %||% "_docstyle" +sidecar_path <- file.path(project_dir, sidecar_dir) +if (!dir.exists(sidecar_path)) { + dir.create(sidecar_path, recursive = TRUE) +} + +reference_path <- file.path(sidecar_path, "reference.docx") +hash_path <- file.path(sidecar_path, "reference.docx.hash") + +# Compute hash of inputs (CSS content + relevant docstyle config) +compute_input_hash <- function(css_paths, docstyle_config) { + # Read CSS content from all files + css_contents <- vapply(css_paths, function(p) { + paste(readLines(p, warn = FALSE), collapse = "\n") + }, character(1)) + css_content <- paste(css_contents, collapse = "\n---CSS-SEPARATOR---\n") + + # Extract config elements that affect reference.docx + # Note: page includes line-numbers sub-config + relevant_config <- list( + page = docstyle_config$page, + header = docstyle_config$header, + footer = docstyle_config$footer, + sections = docstyle_config$sections, + toc = docstyle_config$toc, + `base-doc` = docstyle_config$`base-doc` + ) + config_json <- jsonlite::toJSON(relevant_config, auto_unbox = TRUE) + + # Include template version so template changes trigger regeneration + template_version <- "" + if (requireNamespace("docstyle", quietly = TRUE)) { + template_version <- as.character(utils::packageVersion("docstyle")) + } + + # Combine and hash + combined <- paste0(css_content, "\n---\n", config_json, + "\n---TEMPLATE---\n", template_version) + digest::digest(combined, algo = "sha256") +} + +# Check if regeneration is needed +current_hash <- compute_input_hash(css_paths, config$docstyle) +cached_hash <- "" +if (file.exists(hash_path)) { + cached_hash <- trimws(readLines(hash_path, n = 1, warn = FALSE)) +} + +if (current_hash == cached_hash && file.exists(reference_path)) { + message("[generate-reference] Reference doc up to date (hash match)") + quit(save = "no", status = 0) +} + +message("[generate-reference] Generating reference.docx from CSS...") + +# Try to load docstyle +docstyle_loaded <- FALSE + +if (requireNamespace("docstyle", quietly = TRUE)) { + docstyle_loaded <- TRUE +} else { + # Try to find and load from development source + search_dirs <- c( + project_dir, + dirname(project_dir), + dirname(dirname(project_dir)), + dirname(dirname(dirname(project_dir))), + dirname(dirname(dirname(dirname(project_dir)))) + ) + + for (dir in search_dirs) { + desc_path <- file.path(dir, "DESCRIPTION") + if (file.exists(desc_path)) { + desc_content <- readLines(desc_path, n = 1, warn = FALSE) + if (grepl("Package:\\s*docstyle", desc_content)) { + if (requireNamespace("devtools", quietly = TRUE)) { + tryCatch({ + devtools::load_all(dir, quiet = TRUE) + docstyle_loaded <- TRUE + break + }, error = function(e) NULL) + } + } + } + } +} + +if (!docstyle_loaded) { + message("[generate-reference] docstyle package not found, skipping reference generation") + quit(save = "no", status = 0) +} + +# Generate reference.docx +tryCatch({ + docstyle::generate_reference_doc( + config_path = quarto_yml, + output_path = reference_path + ) + + # Write hash file + writeLines(current_hash, hash_path) + + message("[generate-reference] Generated: ", reference_path) + message("[generate-reference] Hash: ", substr(current_hash, 1, 12), "...") +}, error = function(e) { + message("[generate-reference] Error generating reference.docx: ", e$message) + quit(save = "no", status = 1) +}) + +# Generate page-config.json for Lua filters and R finisher +# Exports page layout, named sections, and header/footer config with pre-computed rPr_xml +tryCatch({ + page_config_path <- file.path(sidecar_path, "page-config.json") + + # Read CSS and extract page config + css_styles <- docstyle::read_css(css_paths) + page_config <- attr(css_styles, "page") + + if (is.null(page_config)) page_config <- list() + + # Helper: compute rPr_xml from a CSS style name + resolve_rPr <- function(style_name) { + if (is.null(style_name) || is.null(css_styles)) return("") + selector <- paste0(".", style_name) + if (!is.null(css_styles[[selector]])) { + rPr <- docstyle::css_to_rPr(css_styles[[selector]]) + return(docstyle::build_rPr_xml(rPr)) + } + "" + } + + # Export footer config with pre-computed rPr_xml and default text + ds <- config$docstyle + if (!is.null(ds$footer) && isTRUE(ds$footer$enabled)) { + page_config$footer <- list( + enabled = TRUE, + first_page = ds$footer$`first-page` %||% TRUE, + style = ds$footer$style %||% NULL, + rPr_xml = resolve_rPr(ds$footer$style), + left = ds$footer$left %||% "", + center = ds$footer$center %||% ds$footer$content %||% "", + right = ds$footer$right %||% "" + ) + } + + # Export header config with pre-computed rPr_xml and default text + if (!is.null(ds$header) && isTRUE(ds$header$enabled)) { + page_config$header <- list( + enabled = TRUE, + first_page = ds$header$`first-page` %||% TRUE, + style = ds$header$style %||% NULL, + rPr_xml = resolve_rPr(ds$header$style), + left = ds$header$left %||% "", + center = ds$header$center %||% ds$header$content %||% "", + right = ds$header$right %||% "" + ) + } + + # Export per-section style overrides with pre-computed rPr_xml + if (!is.null(ds$sections)) { + section_exports <- list() + for (sec_name in names(ds$sections)) { + sec <- ds$sections[[sec_name]] + section_exports[[sec_name]] <- list( + footer_style = sec$`footer-style` %||% NULL, + footer_rPr_xml = resolve_rPr(sec$`footer-style`), + header_style = sec$`header-style` %||% NULL, + header_rPr_xml = resolve_rPr(sec$`header-style`) + ) + } + page_config$sections <- section_exports + } + + # Extract table styles from CSS (e.g., .table-formal, .table-grid) + table_styles <- docstyle::extract_table_styles(css_styles) + if (length(table_styles) > 0) { + page_config$table_styles <- table_styles + message("[generate-reference] Table styles: ", paste(names(table_styles), collapse = ", ")) + } + + # Write page config as JSON + jsonlite::write_json( + page_config, + page_config_path, + auto_unbox = TRUE, + pretty = TRUE + ) + + # Report available named page styles + if (!is.null(page_config$named)) { + named_styles <- names(page_config$named) + if (length(named_styles) > 0) { + message("[generate-reference] Named page styles: ", paste(named_styles, collapse = ", ")) + } + } +}, error = function(e) { + # Non-fatal: page-config.json is optional + message("[generate-reference] Note: Could not generate page-config.json: ", e$message) +}) diff --git a/docs/_extensions/docstyle/list-style.lua b/docs/_extensions/docstyle/list-style.lua new file mode 100644 index 0000000..41838f7 --- /dev/null +++ b/docs/_extensions/docstyle/list-style.lua @@ -0,0 +1,166 @@ +-- list-style.lua +-- Pandoc Lua filter for CSS-defined list styles in Word output +-- +-- Approach: AST rewriting + ADDIN DOCSTYLE field code markers +-- 1. Converts BulletList → OrderedList with correct ListNumberStyle +-- (Pandoc's docx writer generates proper numbering.xml definitions) +-- 2. Wraps styled lists in ADDIN DOCSTYLE field codes +-- (harvest detects field codes to recover CSS class on round-trip) +-- +-- Usage in QMD: +-- ::: {.list-alpha} +-- - First item (renders as a.) +-- - Second item (renders as b.) +-- ::: +-- +-- Supported list classes: +-- .list-bullet - Bullet list (explicit) +-- .list-decimal - Numbered 1. 2. 3. at all levels +-- .list-alpha - Lettered a. b. c. at all levels +-- .list-roman - Roman i. ii. iii. at all levels +-- .list-formal - Hierarchical: 1. / a. / i. per level + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write("[list-style] " .. msg .. "\n") + end +end + +local FORMAT = "openxml" + +-- Map CSS class → Pandoc ListNumberStyle per indent level +-- Pandoc styles: DefaultStyle, Decimal, LowerAlpha, UpperAlpha, LowerRoman, UpperRoman +local list_styles = { + ["list-bullet"] = nil, -- keep as BulletList + ["list-decimal"] = { + [0] = "Decimal", [1] = "Decimal", [2] = "Decimal" + }, + ["list-alpha"] = { + [0] = "LowerAlpha", [1] = "LowerAlpha", [2] = "LowerAlpha" + }, + ["list-roman"] = { + [0] = "LowerRoman", [1] = "LowerRoman", [2] = "LowerRoman" + }, + ["list-formal"] = { + [0] = "Decimal", [1] = "LowerAlpha", [2] = "LowerRoman" + } +} + +-- Find list style class in div classes +local function find_list_style(classes) + for _, class in ipairs(classes) do + if list_styles[class] ~= nil then + return class + end + end + for _, class in ipairs(classes) do + if class == "list-bullet" then + return "list-bullet" + end + end + return nil +end + +-- Convert a BulletList or OrderedList to an OrderedList with the specified style +-- Handles nested lists recursively with level tracking +-- div_start: optional start value from div attribute (applied at level 0 only) +local function convert_list(block, style_name, level, div_start) + level = level or 0 + local style_def = list_styles[style_name] + + -- list-bullet: keep as-is + if not style_def then + return block + end + + local pandoc_style = style_def[level] or style_def[0] + + -- Process items, converting nested lists (nested lists don't inherit div_start) + local new_items = {} + for _, item in ipairs(block.content) do + local new_blocks = {} + for _, b in ipairs(item) do + if b.t == "BulletList" or b.t == "OrderedList" then + table.insert(new_blocks, convert_list(b, style_name, level + 1, nil)) + else + table.insert(new_blocks, b) + end + end + table.insert(new_items, new_blocks) + end + + -- Determine start number: div_start at level 0, then block's own start, then 1 + local start_num = 1 + if div_start and level == 0 then + start_num = div_start + elseif block.t == "OrderedList" and block.listAttributes then + start_num = block.listAttributes[1] or 1 + end + + return pandoc.OrderedList(new_items, pandoc.ListAttributes(start_num, pandoc_style, "Period")) +end + +-- Process Div elements looking for list style classes +function Div(div) + if FORMAT ~= "openxml" then + return nil + end + + local style_name = find_list_style(div.classes) + if not style_name then + return nil + end + + -- Read optional start attribute for list continuation + local div_start = tonumber(div.attributes.start) or nil + + debug("Found ." .. style_name .. " div" .. + (div_start and (" start=" .. div_start) or "")) + + -- Convert all lists in the div + local converted_blocks = {} + local modified = false + + for _, block in ipairs(div.content) do + if block.t == "BulletList" or block.t == "OrderedList" then + table.insert(converted_blocks, convert_list(block, style_name, 0, div_start)) + modified = true + else + table.insert(converted_blocks, block) + end + end + + if not modified then + debug("No lists found in ." .. style_name .. " div") + return nil + end + + -- Wrap with ADDIN DOCSTYLE field code markers using shared utility + local result = {} + table.insert(result, pandoc.RawBlock("openxml", fcu.build_list_field_start(style_name, div_start))) + for _, block in ipairs(converted_blocks) do + table.insert(result, block) + end + table.insert(result, pandoc.RawBlock("openxml", fcu.build_block_field_end())) + + debug("Converted lists in ." .. style_name .. " div (field code marker added)") + + return result +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +return { + { Pandoc = Pandoc }, + { Div = Div } +} diff --git a/docs/_extensions/docstyle/page-section.lua b/docs/_extensions/docstyle/page-section.lua new file mode 100644 index 0000000..03d85b0 --- /dev/null +++ b/docs/_extensions/docstyle/page-section.lua @@ -0,0 +1,643 @@ +-- page-section.lua +-- Pandoc Lua filter that injects Word section breaks for named page styles +-- +-- Usage in QMD (use .section-* class prefix): +-- ::: {.section-landscape} +-- | Wide | Table | Here | +-- ::: +-- +-- ::: {.section-body page-break="true" line-numbers="continuous"} +-- ::: +-- +-- Attributes: +-- page-break="true" Start section on new page (default: false) +-- line-numbers="page" Line numbers restart each page +-- line-numbers="section" Line numbers restart each section +-- line-numbers="continuous" Line numbers never restart +-- line-numbers="false" Disable line numbers for this section +-- +-- CSS configuration (optional - attributes can override): +-- @page landscape { +-- size: letter landscape; +-- margin: 0.5in; +-- } +-- @page body { +-- --docstyle-line-numbers: every 1; +-- --docstyle-line-numbers-restart: page; +-- } +-- +-- The filter reads named page rules from a JSON file generated by the pre-render +-- hook. If no @page rule exists for a section name, the filter falls back to +-- default page properties (allowing sections to work without explicit CSS). +-- +-- Section breaks and Pandoc's docx writer +-- ---------------------------------------- +-- Word's section model: sectPr defines properties for the section that ENDS at +-- that point. The document's final sectPr (in ) defines the last section. +-- Pandoc's docx writer always emits this final sectPr from the reference document. +-- +-- This filter inserts mid-document sectPr elements to create section breaks. The +-- final section's properties (including line numbers) come from the reference +-- document, generated by generate-reference.R with settings from page-config.json. +-- +-- IMPORTANT: Page breaks use an explicit paragraph followed +-- by a continuous sectPr, NOT the nextPage section type. The nextPage type alone +-- is unreliable when Pandoc's docx writer inserts bookmark elements around the +-- break. The explicit break + continuous sectPr pattern matches how Word itself +-- creates page breaks in natively-authored documents. +-- +-- IMPORTANT: Do NOT insert an additional sectPr at document end (in the Pandoc() +-- function). For empty marker divs this creates three sections instead of two, +-- and Word silently drops the earlier page break. Line numbers for the final +-- section must be configured in the reference document, not via an extra sectPr. +-- +-- Wrapping divs (non-empty) DO insert a closing sectPr after their content. +-- This creates three sections (before | wrapped content | after), which is the +-- correct structure for scoping line numbers to the wrapped content only. +-- +-- Round-trip support +-- ------------------ +-- Section divs are wrapped in ADDIN DOCSTYLE field codes for harvest round-trip. +-- The JSON payload preserves the class name, page-break, and line-numbers +-- attributes so they can be reconstructed during docx_to_qmd() harvest. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write("[page-section] " .. msg .. "\n") + end +end + +local FORMAT = "openxml" + +-- Deep copy a table (for nested structures like line-numbers) +-- Prevents reference aliasing when multiple markers use the same named style +local function deep_copy(t) + if type(t) ~= "table" then return t end + local copy = {} + for k, v in pairs(t) do + copy[k] = deep_copy(v) + end + return copy +end + +-- Page configuration from JSON +local page_config = nil +local default_page = nil +local final_section_style = nil -- Track the last .section-* style for final sectPr +local current_section_props = nil -- Track current section for correct sectPr emission + +-- Unit conversion: CSS units to twips (1/20th of a point) +-- 1 inch = 1440 twips, 1 pt = 20 twips, 1 cm = 567 twips, 1 mm = 56.7 twips +local function css_to_twips(value) + if not value then return nil end + + local num, unit = string.match(value, "^([%d%.]+)(%a+)$") + if not num then + -- Try just a number (assume inches) + num = tonumber(value) + if num then return math.floor(num * 1440) end + return nil + end + + num = tonumber(num) + if not num then return nil end + + unit = string.lower(unit) + if unit == "in" then + return math.floor(num * 1440) + elseif unit == "pt" then + return math.floor(num * 20) + elseif unit == "cm" then + return math.floor(num * 567) + elseif unit == "mm" then + return math.floor(num * 56.7) + elseif unit == "px" then + -- CSS standard: 96px = 1in + return math.floor(num * 15) + end + + return nil +end + +-- Get page dimensions in twips for a given size +local function get_page_size(size, orientation) + -- Standard page sizes in twips (width x height in portrait) + local sizes = { + letter = { w = 12240, h = 15840 }, -- 8.5" x 11" + a4 = { w = 11906, h = 16838 }, -- 210mm x 297mm + legal = { w = 12240, h = 20160 } -- 8.5" x 14" + } + + local dims = sizes[size] or sizes.letter + + if orientation == "landscape" then + return dims.h, dims.w -- Swap width and height + else + return dims.w, dims.h + end +end + +-- Build Word section properties XML +local function build_sect_pr(page_props, sect_type) + sect_type = sect_type or "nextPage" -- nextPage, continuous, evenPage, oddPage + + local size = page_props.size or "letter" + local orientation = page_props.orientation or "portrait" + local margins = page_props.margins or {} + + local w, h = get_page_size(size, orientation) + + -- Default margins (1 inch = 1440 twips) + local margin_top = css_to_twips(margins.top) or 1440 + local margin_bottom = css_to_twips(margins.bottom) or 1440 + local margin_left = css_to_twips(margins.left) or 1440 + local margin_right = css_to_twips(margins.right) or 1440 + local gutter = css_to_twips(margins.gutter) or 0 + + -- Build the sectPr XML + local xml_parts = { + '' + } + + -- Section type + table.insert(xml_parts, '') + + -- Page size with orientation + local orient_attr = "" + if orientation == "landscape" then + orient_attr = ' w:orient="landscape"' + end + table.insert(xml_parts, string.format( + '', + w, h, orient_attr + )) + + -- Page margins + table.insert(xml_parts, string.format( + '', + margin_top, margin_right, margin_bottom, margin_left, gutter + )) + + -- Line numbers if configured + if page_props["line-numbers"] and page_props["line-numbers"].enabled then + local ln = page_props["line-numbers"] + local count_by = ln["count-by"] or 1 + local restart = ln.restart or "newPage" + local distance = css_to_twips(ln.distance) or 360 -- Default 0.25in + + debug(" build_sect_pr: adding line numbers with restart=" .. tostring(restart)) + + -- Map restart values to Word + local restart_map = { + page = "newPage", + section = "newSection", + continuous = "continuous" + } + restart = restart_map[restart] or "newPage" + + table.insert(xml_parts, string.format( + '', + count_by, restart, distance + )) + else + debug(" build_sect_pr: no line numbers (page_props['line-numbers']=" .. + tostring(page_props["line-numbers"]) .. ")") + end + + table.insert(xml_parts, '') + + return table.concat(xml_parts) +end + +-- Build section break paragraphs as a list of XML strings. +-- Returns a table of XML strings, each to be emitted as a separate RawBlock. +-- +-- IMPORTANT: Each XML string must be a separate RawBlock. When concatenated +-- into a single RawBlock, Pandoc's docx writer may not process the page break +-- correctly (the break is silently dropped). Separate RawBlocks match how +-- raw openxml blocks in markdown are processed. +-- +-- For page breaks: Word reliably renders an explicit +-- followed by a continuous sectPr. The nextPage sect type alone is unreliable +-- in some contexts (e.g., when Pandoc bookmark elements surround the break). +-- This matches the pattern Word itself uses in natively-authored documents. +local function build_section_break_paras(page_props, sect_type) + local sect_pr = build_sect_pr(page_props, "continuous") + if sect_type == "nextPage" then + -- Two separate paragraphs: page break + continuous sectPr + return { + '', + '' .. sect_pr .. '' + } + else + return { + '' .. sect_pr .. '' + } + end +end + +-- Read page configuration from JSON file (delegates to shared loader) +local function load_page_config() + return fcu.load_page_config() +end + +-- Read configuration from metadata +function Meta(meta) + -- Try to load from JSON file first + page_config = load_page_config() + + -- Also check metadata for inline config (for testing) + if meta.docstyle and meta.docstyle.page then + local page = meta.docstyle.page + + -- Parse metadata into page_config structure + if not page_config then + page_config = { named = {} } + end + + -- Store default page settings + default_page = { + size = page.size and pandoc.utils.stringify(page.size) or "letter", + orientation = page.orientation and pandoc.utils.stringify(page.orientation) or "portrait", + margins = {} + } + + if page.margins then + for k, v in pairs(page.margins) do + default_page.margins[k] = pandoc.utils.stringify(v) + end + end + end + + -- Set default page from config if available + if page_config and not default_page then + default_page = { + size = page_config.size or "letter", + orientation = page_config.orientation or "portrait", + margins = page_config.margins or {}, + ["line-numbers"] = page_config["line-numbers"] + } + end + + -- Ultimate fallback + if not default_page then + default_page = { + size = "letter", + orientation = "portrait", + margins = { top = "1in", bottom = "1in", left = "1in", right = "1in" } + } + end + + current_section_props = deep_copy(default_page) + + debug("Default page: " .. (default_page.size or "letter") .. + " " .. (default_page.orientation or "portrait")) + + if page_config and page_config.named then + for name, _ in pairs(page_config.named) do + debug("Named page style available: " .. name) + end + end + + return nil +end + +-- Process Div elements looking for .section-* classes +-- +-- Word Section Model: +-- - A section runs from one section break to the next (or document end) +-- - Section properties are defined by the sectPr that ENDS the section +-- - The document's final sectPr defines properties for the LAST section +-- +-- Usage (empty div as marker - recommended): +-- ::: section-body +-- ::: +-- +-- # 1. Introduction +-- Content here is in the body section... +-- +-- Usage (div wrapping content - also supported): +-- ::: {.section-body} +-- # 1. Introduction +-- Content here is in the body section... +-- ::: +-- +-- The section marker inserts a section break that ENDS the previous section. +-- Everything after the marker is in the NEW section until the next marker or document end. +-- +-- Add page-break="true" to start the new section on a new page: +-- ::: {.section-body page-break="true"} +-- ::: + +function Div(div) + -- Only process for docx output + if FORMAT ~= "openxml" then + return nil + end + + -- Look for section-* classes + local section_style = nil + for _, class in ipairs(div.classes) do + local name = string.match(class, "^section%-(.+)$") + if name then + section_style = name + break + end + end + + -- Handle standalone page break: ::: {.page-break} ::: + -- Emits explicit that Pandoc passes through reliably. + -- Use this instead of \newpage which Pandoc drops near headings/bookmarks. + -- Harvest detects and restores ::: {.page-break} ::: + if not section_style then + for _, class in ipairs(div.classes) do + if class == "page-break" then + debug("Found .page-break div") + local blocks = {} + table.insert(blocks, pandoc.RawBlock("openxml", + '')) + -- Pass through any content inside the div + for _, block in ipairs(div.content) do + table.insert(blocks, block) + end + return blocks + end + end + return nil + end + + debug("Found .section-" .. section_style .. " div") + + -- Get the named page properties for the NEW section + -- IMPORTANT: Use deep_copy to avoid aliasing issues when multiple markers + -- use the same named style. Without copy, modifying new_section_props + -- (e.g., setting line-numbers) would corrupt the shared config table. + local new_section_props = nil + if page_config and page_config.named and page_config.named[section_style] then + new_section_props = deep_copy(page_config.named[section_style]) + debug(" Using @page " .. section_style .. " properties") + else + -- No named @page rule found - fall back to default with style-specific inference + debug(" No @page " .. section_style .. " rule found, using defaults") + + if section_style == "landscape" then + -- Landscape: swap orientation + new_section_props = { + size = default_page.size or "letter", + orientation = "landscape", + margins = default_page.margins or {} + } + else + -- Other styles (body, appendix, etc.): inherit from default_page + -- This allows sections to work even without explicit @page rules + new_section_props = { + size = default_page.size or "letter", + orientation = default_page.orientation or "portrait", + margins = default_page.margins or {}, + ["line-numbers"] = default_page["line-numbers"] + } + end + end + + -- Line numbers: opt-in only via div attribute. + -- Default is NO line numbers. The @page CSS config provides page geometry + -- (size, margins, orientation) but line numbers require explicit opt-in: + -- ::: {.section-body line-numbers="continuous"} + -- This matches user expectation: "open it, start writing" = no line numbers. + -- Supports: line-numbers="true", "false", "page", "section", "continuous" + local ln_attr = div.attributes["line-numbers"] + if ln_attr then + ln_attr = pandoc.utils.stringify(ln_attr) + end + + -- Clear any inherited line numbers from CSS config; only div attribute controls + new_section_props["line-numbers"] = nil + + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + if ln_attr == "true" or ln_attr == "page" then + new_section_props["line-numbers"] = { + enabled = true, + ["count-by"] = 1, + restart = "page" + } + debug(" Line numbers enabled (restart per page) via attribute") + elseif ln_attr == "section" then + new_section_props["line-numbers"] = { + enabled = true, + ["count-by"] = 1, + restart = "section" + } + debug(" Line numbers enabled (restart per section) via attribute") + elseif ln_attr == "continuous" then + new_section_props["line-numbers"] = { + enabled = true, + ["count-by"] = 1, + restart = "continuous" + } + debug(" Line numbers enabled (continuous) via attribute") + end + else + debug(" Line numbers: off (default, no attribute)") + end + + -- In Word, sectPr defines properties for the section that ENDS at that point. + -- To start a new section: + -- 1. Insert sectPr with PREVIOUS section's properties (ends the previous section) + -- 2. Content after that sectPr is in the new section + -- 3. New section's properties come from the NEXT sectPr (or document's final sectPr) + + -- Check for page-break attribute: ::: {.section-body page-break="true"} + local sect_type = "continuous" + if pandoc.utils.stringify(div.attributes["page-break"] or "") == "true" then + sect_type = "nextPage" + debug(" Using nextPage section break") + end + + -- Build result blocks + local blocks = {} + + -- For page breaks: emit the explicit BEFORE the field code + -- and sectPr. This prevents the page break from being sandwiched between two + -- consecutive sectPr elements (e.g., a closing sectPr from a previous wrapping + -- div and this opening sectPr), which causes Word to silently drop the break. + if sect_type == "nextPage" then + table.insert(blocks, pandoc.RawBlock("openxml", + '')) + debug(" Page break emitted before section break") + end + + -- === R-FIRST ASSEMBLY (v2) === + -- Instead of emitting complex sectPr XML that Pandoc wraps in container + -- paragraphs (causing the 3-line gap), emit a simple text marker that + -- the R finisher will find and process. + -- + -- The R finisher will: + -- 1. Find this marker + -- 2. Build sectPr using page-config.json + -- 3. Attach sectPr to the PRECEDING paragraph + -- 4. Delete the marker paragraph (eliminates the gap) + + -- Determine line-numbers for marker + local ln_for_marker = "none" + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + ln_for_marker = ln_attr + end + + -- Build text marker: DOCSTYLE_SECTION::{class}::{page-break}::{line-numbers} + local marker_text = string.format("DOCSTYLE_SECTION::section-%s::%s::%s", + section_style, + sect_type == "nextPage" and "true" or "false", + ln_for_marker + ) + debug(" Emitting marker: " .. marker_text) + + -- Build attributes for field code + local field_attrs = {} + if sect_type == "nextPage" then + field_attrs["page-break"] = true + end + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + field_attrs["line-numbers"] = ln_attr + end + -- Pass through all remaining div attributes (footer-left, header-left, + -- page-start, etc.) so the R finisher can read them from the JSON payload + local skip_attrs = {["line-numbers"]=true, ["page-break"]=true, ["page-break-after"]=true} + for k, v in pairs(div.attributes) do + if not field_attrs[k] and not skip_attrs[k] then + field_attrs[k] = pandoc.utils.stringify(v) + end + end + + -- Emit field code + marker in a SINGLE paragraph to prevent 3-line gap + -- Uses build_section_marker_para which combines BEGIN/instrText/SEPARATE/marker/END + table.insert(blocks, pandoc.RawBlock("openxml", + fcu.build_section_marker_para("section-" .. section_style, field_attrs, marker_text))) + + -- For wrapping divs (non-empty): emit content, then closing marker. + -- The opening marker already contains complete field code (BEGIN/SEPARATE/marker/END). + -- For empty marker divs: field code is already complete, nothing more needed. + if #div.content > 0 then + -- Div content + for _, block in ipairs(div.content) do + table.insert(blocks, block) + end + + -- Closing marker: R finisher will attach sectPr to last content paragraph + local close_page_break = pandoc.utils.stringify(div.attributes["page-break-after"] or "") == "true" + local close_marker = string.format("DOCSTYLE_SECTION_END::section-%s::%s::%s", + section_style, + close_page_break and "true" or "false", + ln_for_marker + ) + debug(" Emitting closing marker: " .. close_marker) + + -- Page break after content if requested + if close_page_break then + table.insert(blocks, pandoc.RawBlock("openxml", + '')) + end + + -- Closing marker in single paragraph with field code wrapper + -- Strip footer/header/page-start attributes from closing markers — the + -- finisher reads these from opening markers only (via payload shift) + local close_skip = {} + for k, v in pairs(skip_attrs) do close_skip[k] = v end + close_skip["footer-left"]=true; close_skip["footer-center"]=true; close_skip["footer-right"]=true + close_skip["header-left"]=true; close_skip["header-center"]=true; close_skip["header-right"]=true + close_skip["footer"]=true; close_skip["header"]=true + close_skip["page-start"]=true + local close_attrs = {} + if close_page_break then + close_attrs["page-break"] = true + end + if ln_attr and ln_attr ~= "false" and ln_attr ~= "none" then + close_attrs["line-numbers"] = ln_attr + end + for k, v in pairs(div.attributes) do + if not close_attrs[k] and not close_skip[k] then + close_attrs[k] = pandoc.utils.stringify(v) + end + end + table.insert(blocks, pandoc.RawBlock("openxml", + fcu.build_section_marker_para("section-" .. section_style .. "-end", close_attrs, close_marker))) + + debug("Wrapping div: section '" .. section_style .. "' opened and closed") + else + -- Empty marker div: field code already complete in single paragraph + debug("Empty marker: section '" .. section_style .. "' started") + end + + return blocks +end + +-- Check output format and apply final section style if needed +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + + -- NOTE: We intentionally do NOT insert an extra sectPr here for line numbers. + -- + -- Previously, this function inserted a sectPr paragraph at the end to apply + -- line number properties to the final section. However, this creates THREE + -- sections in the document: + -- 1. Mid-document sectPr (from Div()) - ends front matter + -- 2. Filter's final sectPr (from here) - ends body section + -- 3. Pandoc's body sectPr - ends document + -- + -- This confuses Word's page break rendering - the explicit + -- before sectPr #1 gets silently ignored. + -- + -- Instead, line numbers should be configured in the reference document via + -- generate-reference.R, which properly sets in Pandoc's final + -- body sectPr. This approach: + -- - Keeps only 2 sections (front matter + body) + -- - Page breaks work reliably + -- - Line numbers still apply to body content + -- + -- See: R/page_layout.R apply_line_numbers() function + + if final_section_style and FORMAT == "openxml" then + debug("Final section style tracked: " .. (final_section_style["line-numbers"] and "with line numbers" or "no line numbers")) + debug("Line numbers should be configured in reference doc, not via extra sectPr") + end + + return nil +end + +-- Consume stray ":::" paragraphs that appear when users add standalone ::: +-- markers in QMD (which Pandoc parses as literal text, not fenced div closers). +-- This ensures users only need to mark section STARTS - no closing markers needed. +function Para(para) + -- Only process for docx output + if FORMAT ~= "openxml" then + return nil + end + + -- Check if paragraph contains only ":::" (possibly with whitespace) + if #para.content == 1 and + para.content[1].t == "Str" and + para.content[1].text:match("^:::?$") then + debug("Consuming stray ':::' paragraph") + return {} -- Remove the paragraph + end + + return nil -- Keep unchanged +end + +-- Filter execution order: +-- 1. Meta - load configuration +-- 2. Div - process .page-* and .section-* divs +-- 3. Para - consume stray ::: paragraphs +-- 4. Pandoc - apply final section style if needed +return { + { Meta = Meta }, + { Div = Div }, + { Para = Para }, + { Pandoc = Pandoc } +} diff --git a/docs/_extensions/docstyle/reference.docx b/docs/_extensions/docstyle/reference.docx new file mode 100644 index 0000000..590ff7d Binary files /dev/null and b/docs/_extensions/docstyle/reference.docx differ diff --git a/docs/_extensions/docstyle/revisions-inject.lua b/docs/_extensions/docstyle/revisions-inject.lua new file mode 100644 index 0000000..94e6f33 --- /dev/null +++ b/docs/_extensions/docstyle/revisions-inject.lua @@ -0,0 +1,315 @@ +-- revisions-inject.lua +-- Pandoc Lua filter that converts revision spans to OpenXML track changes +-- +-- Usage in QMD: +-- Insertions: [inserted text]{.ins id="rev_101"} +-- Deletions: [~~deleted text~~]{.del id="rev_102"} +-- +-- The filter reads revision metadata from a sidecar JSON file (revisions.json) +-- which contains author, date, and other metadata for each revision. +-- +-- Metadata loading (in priority order): +-- 1. -M revisions-file:path/to/revisions.json (explicit path) +-- 2. Auto-detect _docstyle/revisions.json (convention-based) +-- +-- Note: Deletions use strikethrough syntax with a .del class wrapper. +-- This is achieved via a Span around the Strikeout: +-- [~~deleted~~]{.del id="x"} + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Metadata storage for revisions (loaded from revisions.json) +local revisions_meta = {} +local revisions_loaded = false + +-- Helper function to escape XML special characters +local function xml_escape(text) + if not text then return "" end + text = text:gsub("&", "&") + text = text:gsub("<", "<") + text = text:gsub(">", ">") + text = text:gsub('"', """) + text = text:gsub("'", "'") + return text +end + +-- Helper to generate xml:space attribute for whitespace preservation +-- Word requires xml:space="preserve" when text has leading/trailing whitespace +local function get_space_attr(text) + if text and (text:match("^%s") or text:match("%s$") or text:match("%s%s")) then + return ' xml:space="preserve"' + end + return "" +end + +-- Helper to extract numeric ID from revision ID string (e.g., "rev_9" -> "9") +-- Word requires numeric w:id values +local function get_numeric_id(id) + if not id then return "0" end + local num = id:match("rev_(%d+)") + if num then return num end + -- If already numeric or doesn't match pattern, return as-is + return id:match("^%d+$") and id or "0" +end + +-- Helper to get revision metadata by ID +local function get_revision(id) + if revisions_meta[id] then + return revisions_meta[id] + end + -- Return defaults if not found + return { + author = "Unknown", + date = "2025-01-01T00:00:00Z" + } +end + +-- Extract text and RawInlines from inline elements +-- Returns: { text = "plain text", raw_inlines = { {pos="before|after", el=RawInline}, ... } } +-- RawInlines (like comment markers) are preserved for output outside the deletion +local function extract_deletion_content(inlines) + local text_parts = {} + local raw_inlines_before = {} -- RawInlines that appear before any text + local raw_inlines_after = {} -- RawInlines that appear after text starts + local seen_text = false + + local function process_inlines(items) + for _, inline in ipairs(items) do + if inline.t == "Str" then + table.insert(text_parts, inline.text) + seen_text = true + elseif inline.t == "Space" then + table.insert(text_parts, " ") + seen_text = true + elseif inline.t == "SoftBreak" then + table.insert(text_parts, " ") + seen_text = true + elseif inline.t == "LineBreak" then + table.insert(text_parts, "\n") + seen_text = true + elseif inline.t == "RawInline" and inline.format == "openxml" then + -- Preserve OpenXML RawInlines (e.g., comment markers from comment-inject.lua) + if seen_text then + table.insert(raw_inlines_after, inline) + else + table.insert(raw_inlines_before, inline) + end + elseif inline.t == "Strikeout" then + -- Recursively process strikeout content + process_inlines(inline.content) + elseif inline.content then + process_inlines(inline.content) + end + end + end + + process_inlines(inlines) + + return { + text = table.concat(text_parts), + raw_before = raw_inlines_before, + raw_after = raw_inlines_after + } +end + +-- Legacy function for backward compatibility (insertions still use this) +local function stringify_inlines(inlines) + local result = extract_deletion_content(inlines) + return result.text +end + +-- Process Span elements with .ins class (insertions) +function Span(el) + -- Only process for Word output + if FORMAT ~= "docx" and FORMAT ~= "openxml" then + return nil + end + + -- Handle insertions (.ins class) + if el.classes:includes('ins') then + -- Pandoc parses {.ins id="x"} with "id" as the identifier, not an attribute + local id = el.identifier + if (not id or id == "") then + id = el.attributes['id'] or "0" + end + local rev = get_revision(id) + + debug("[revisions-inject] Processing insertion id=" .. id .. "\n") + + -- Build w:ins wrapper (use numeric ID for Word compatibility) + local numeric_id = get_numeric_id(id) + local start_xml = string.format( + '', + xml_escape(numeric_id), + xml_escape(rev.author), + xml_escape(rev.date) + ) + local end_xml = '' + + local result = { pandoc.RawInline('openxml', start_xml) } + + -- Add content + for _, item in ipairs(el.content) do + table.insert(result, item) + end + + table.insert(result, pandoc.RawInline('openxml', end_xml)) + return result + end + + -- Handle deletions (.del class wrapping strikethrough) + -- Pattern: [~~deleted text~~]{.del id="x"} + if el.classes:includes('del') then + -- Pandoc parses {.del id="x"} with "id" as the identifier, not an attribute + local id = el.identifier + if (not id or id == "") then + id = el.attributes['id'] or "0" + end + local rev = get_revision(id) + + debug("[revisions-inject] Processing deletion id=" .. id .. "\n") + + -- Extract text and any RawInlines (like comment markers) from content + local content = extract_deletion_content(el.content) + local del_text = content.text + + -- Remove any remaining strikethrough markers (~~ ) that may have leaked through + del_text = del_text:gsub("~~", "") + + -- Build w:del with w:delText (use numeric ID for Word compatibility) + -- Include xml:space="preserve" if text has significant whitespace + local numeric_id = get_numeric_id(id) + local space_attr = get_space_attr(del_text) + local del_xml = string.format( + '' .. + '%s' .. + '', + xml_escape(numeric_id), + xml_escape(rev.author), + xml_escape(rev.date), + space_attr, + xml_escape(del_text) + ) + + -- Build result: RawInlines before + deletion + RawInlines after + -- This preserves comment markers that were inside the deletion + local result = {} + + -- Add any RawInlines that appeared before text (e.g., comment start markers) + for _, raw in ipairs(content.raw_before) do + table.insert(result, raw) + debug("[revisions-inject] Preserving RawInline before deletion\n") + end + + -- Add the deletion itself + table.insert(result, pandoc.RawInline('openxml', del_xml)) + + -- Add any RawInlines that appeared after text started (e.g., comment end markers) + for _, raw in ipairs(content.raw_after) do + table.insert(result, raw) + debug("[revisions-inject] Preserving RawInline after deletion\n") + end + + -- Return single element or list depending on whether we have RawInlines + if #result == 1 then + return result[1] + else + return result + end + end + + return nil +end + +-- Parse JSON file content into revisions_meta table +-- Uses regex-based parsing that handles our flat JSON structure +local function parse_revisions_json(content, source_path) + local count = 0 + + -- Pattern matches revision entries with author and date fields + -- Handles both orderings: author before date, or date before author + for id, block in content:gmatch('"(rev_[^"]+)":%s*(%b{})') do + local author = block:match('"author":%s*"([^"]*)"') + local date = block:match('"date":%s*"([^"]*)"') + local rev_type = block:match('"type":%s*"([^"]*)"') + + if author then + revisions_meta[id] = { + author = author, + date = date or os.date("!%Y-%m-%dT%H:%M:%SZ"), + type = rev_type + } + count = count + 1 + debug("[revisions-inject] Loaded revision: " .. id .. " by " .. author .. "\n") + end + end + + if count > 0 then + debug("[revisions-inject] Loaded " .. count .. " revisions from: " .. source_path .. "\n") + revisions_loaded = true + end + + return count +end + +-- Try to load revisions from a file path +local function try_load_revisions(path) + local file = io.open(path, "r") + if file then + local content = file:read("*all") + file:close() + return parse_revisions_json(content, path) + end + return 0 +end + +-- Load revision metadata from document metadata or auto-detect +-- Priority: +-- 1. -M revisions-file:path (explicit) +-- 2. _docstyle/revisions.json (convention) +function Meta(meta) + -- Skip if already loaded + if revisions_loaded then + return nil + end + + -- Priority 1: Explicit path via metadata + if meta['revisions-file'] then + local path = pandoc.utils.stringify(meta['revisions-file']) + debug("[revisions-inject] Trying explicit path: " .. path .. "\n") + if try_load_revisions(path) > 0 then + return nil + end + debug("[revisions-inject] Warning: Could not open revisions file: " .. path .. "\n") + end + + -- Priority 2: Auto-detect _docstyle/revisions.json + local auto_path = "_docstyle/revisions.json" + debug("[revisions-inject] Trying auto-detect: " .. auto_path .. "\n") + if try_load_revisions(auto_path) > 0 then + return nil + end + + debug("[revisions-inject] No revisions.json found (checked _docstyle/revisions.json)\n") + return nil +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + debug("[revisions-inject] Filter active for Word output\n") + end + return nil +end + +return { + { Meta = Meta }, + { Pandoc = Pandoc }, + { Span = Span } +} diff --git a/docs/_extensions/docstyle/strip-docstyle.lua b/docs/_extensions/docstyle/strip-docstyle.lua new file mode 100644 index 0000000..2ab390f --- /dev/null +++ b/docs/_extensions/docstyle/strip-docstyle.lua @@ -0,0 +1,132 @@ +--- strip-docstyle.lua +--- Lua filter for preprint-typst rendering from docstyle QMD sources. +--- Extracts body-level abstract to metadata and strips docstyle-specific +--- div wrappers so the same QMD renders cleanly via quarto-preprint. + +--- Pass 1: Extract abstract and keywords from body to metadata +function Pandoc(doc) + local dominated_blocks = doc.blocks + local abstract_blocks = pandoc.List() + local keyword_inlines = nil + local in_abstract = false + local in_keywords = false + local abstract_start = nil + local abstract_end = nil + + for i, block in ipairs(dominated_blocks) do + if block.t == "Header" and block.level == 1 then + if block.content and pandoc.utils.stringify(block.content) == "Abstract" then + in_abstract = true + in_keywords = false + abstract_start = i + elseif in_abstract then + -- Hit the next level-1 heading: abstract section is over + abstract_end = i - 1 + in_abstract = false + in_keywords = false + break + end + elseif in_abstract then + if block.t == "Header" and block.level == 2 then + local heading_text = pandoc.utils.stringify(block.content) + if heading_text == "Keywords" then + in_keywords = true + else + -- Convert abstract subsection headings to bold paragraphs + in_keywords = false + abstract_blocks:insert(pandoc.Para( + {pandoc.Strong(block.content)} + )) + end + elseif in_keywords then + if block.t == "Para" then + keyword_inlines = block.content + end + else + abstract_blocks:insert(block) + end + end + end + + -- If abstract_end wasn't set (abstract runs to end of doc), set it now + if in_abstract and not abstract_end then + abstract_end = #dominated_blocks + end + + -- Move abstract to metadata and remove from body + if abstract_start and abstract_end and #abstract_blocks > 0 then + doc.meta.abstract = pandoc.MetaBlocks(abstract_blocks) + + if keyword_inlines then + -- Split comma-separated keywords into a MetaList + local kw_text = pandoc.utils.stringify(keyword_inlines) + local keywords = pandoc.List() + for kw in kw_text:gmatch("[^,]+") do + local trimmed = kw:match("^%s*(.-)%.?%s*$") + if trimmed and trimmed ~= "" then + keywords:insert(pandoc.MetaInlines({pandoc.Str(trimmed)})) + end + end + if #keywords > 0 then + doc.meta.keywords = pandoc.MetaList(keywords) + end + end + + -- Remove abstract blocks from body (iterate in reverse to preserve indices) + for i = abstract_end, abstract_start, -1 do + dominated_blocks:remove(i) + end + end + + -- Insert a #refs div after the References heading so citeproc places the + -- bibliography there instead of at the end of the document + local new_blocks = pandoc.List() + for i, block in ipairs(dominated_blocks) do + new_blocks:insert(block) + if block.t == "Header" and block.level == 1 then + local text = pandoc.utils.stringify(block.content) + if text:match("[Rr]eferences") then + new_blocks:insert(pandoc.Div({}, pandoc.Attr("refs"))) + end + end + end + + doc.blocks = new_blocks + return doc +end + +--- Pass 2: Handle docstyle divs and date/version paragraphs + +function Div(el) + local classes = el.classes + + -- Page breaks → Typst pagebreak + if classes:includes("page-break") then + return pandoc.RawBlock("typst", "#pagebreak()") + end + + -- Drop divs that are generated by docstyle Lua filters (empty in typst) + if classes:includes("version-history") or + classes:includes("author-plate") or + classes:includes("toc") then + return {} + end + + -- Strip section wrapper divs, pass through content + for _, cls in ipairs(classes) do + if cls:match("^section%-") then + return el.content + end + end + + return nil +end + +function Para(el) + local text = pandoc.utils.stringify(el) + -- Drop date/version line: "2026-02-24 | Version: 0.2.5" + if text:match("^%d%d%d%d%-%d%d%-%d%d%s*|%s*Version:") then + return {} + end + return nil +end diff --git a/docs/_extensions/docstyle/table-style.lua b/docs/_extensions/docstyle/table-style.lua new file mode 100644 index 0000000..70aae5f --- /dev/null +++ b/docs/_extensions/docstyle/table-style.lua @@ -0,0 +1,598 @@ +-- table-style.lua +-- Pandoc Lua filter that applies CSS-defined table styles to Word output +-- +-- Usage in QMD: +-- ::: {.table-formal} +-- | Column 1 | Column 2 | +-- |----------|----------| +-- | Data | Data | +-- ::: +-- +-- Supported table classes: +-- .table-formal - Top/bottom borders, shaded header row +-- .table-grid - Full grid borders on all cells +-- +-- Table styles are loaded from page-config.json (CSS-derived) at runtime. +-- Built-in defaults are used as fallback when no CSS config is available. + +-- Load field-code-utils for ADDIN DOCSTYLE field code emission +local fcu = require("field-code-utils") + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +local FORMAT = "openxml" + +-- Built-in fallback table style definitions (used when CSS config not available) +local builtin_table_styles = { + ["table-formal"] = { + borders = { + top = { val = "single", sz = "4", color = "7F7F7F" }, + bottom = { val = "single", sz = "4", color = "7F7F7F" }, + left = nil, + right = nil, + insideH = nil, + insideV = nil + }, + header_shading = "D9D9D9" + }, + ["table-grid"] = { + borders = { + top = { val = "single", sz = "4", color = "000000" }, + bottom = { val = "single", sz = "4", color = "000000" }, + left = { val = "single", sz = "4", color = "000000" }, + right = { val = "single", sz = "4", color = "000000" }, + insideH = { val = "single", sz = "4", color = "000000" }, + insideV = { val = "single", sz = "4", color = "000000" } + }, + header_shading = nil, + header_bold = true + } +} + +-- Active table styles (populated from CSS config or fallback) +local table_styles = nil + +-- Load table styles from page-config.json (CSS-derived) via shared loader +local function load_table_styles() + local config = fcu.load_page_config() + if config and config.table_styles then + debug("[table-style] Loaded CSS table styles from page-config.json\n") + return config.table_styles + end + debug("[table-style] No CSS table config found, using built-in defaults\n") + return nil +end + +-- Initialise table_styles: CSS config with built-in fallback +local function init_table_styles() + if table_styles then return end + + local css_styles = load_table_styles() + if css_styles then + -- Start with built-in defaults, then deep-merge CSS values + table_styles = {} + -- Deep-copy all built-in styles (avoids mutating builtin_table_styles + -- when the CSS overlay loop writes into nested tables like borders) + for name, style in pairs(builtin_table_styles) do + table_styles[name] = {} + for k, v in pairs(style) do + if type(v) == "table" then + table_styles[name][k] = {} + for sub_k, sub_v in pairs(v) do + table_styles[name][k][sub_k] = sub_v + end + else + table_styles[name][k] = v + end + end + end + -- Overlay CSS-derived styles field-by-field (preserves built-in + -- fields not covered by CSS, e.g. header_shading when CSS only + -- defines borders). Deep-merges nested tables like borders. + for name, css_style in pairs(css_styles) do + if not table_styles[name] then + table_styles[name] = {} + end + for k, v in pairs(css_style) do + if type(v) == "table" and type(table_styles[name][k]) == "table" then + -- Deep merge: overlay CSS sub-keys over built-in sub-keys + for sub_k, sub_v in pairs(v) do + table_styles[name][k][sub_k] = sub_v + end + else + table_styles[name][k] = v + end + end + end + else + table_styles = builtin_table_styles + end +end + +-- Build border XML element +local function build_border_xml(name, border) + if not border then return "" end + return string.format('', + name, border.val, border.sz, border.color) +end + +-- Build table borders XML +local function build_tblBorders_xml(borders) + if not borders then return "" end + + local parts = { "" } + if borders.top then table.insert(parts, build_border_xml("top", borders.top)) end + if borders.left then table.insert(parts, build_border_xml("left", borders.left)) end + if borders.bottom then table.insert(parts, build_border_xml("bottom", borders.bottom)) end + if borders.right then table.insert(parts, build_border_xml("right", borders.right)) end + if borders.insideH then table.insert(parts, build_border_xml("insideH", borders.insideH)) end + if borders.insideV then table.insert(parts, build_border_xml("insideV", borders.insideV)) end + table.insert(parts, "") + + return table.concat(parts) +end + +-- Build cell shading XML +local function build_shading_xml(color) + if not color then return "" end + return string.format('', color) +end + + +-- Parse widths attribute (e.g., "30,70" or "25,50,25") +-- Returns array of percentages or nil if not specified +local function parse_widths(widths_str) + if not widths_str or widths_str == "" then + return nil + end + + local widths = {} + for w in string.gmatch(widths_str, "([^,]+)") do + local num = tonumber(w) + if num then + table.insert(widths, num) + end + end + + return #widths > 0 and widths or nil +end + +-- Convert Pandoc table to OpenXML with custom styling +-- widths_str: optional comma-separated percentages (e.g., "30,70") +-- width_pct: optional table width as percentage of page (e.g., "50" for half width) +-- font_size_pt: optional font size in points (e.g., 9) +-- overrides: optional table of per-table overrides (header_bold, header_shading) +local function styled_table_to_openxml(tbl, style_name, widths_str, width_pct, font_size_pt, overrides) + local style = table_styles[style_name] + if not style then + debug("[table-style] Unknown table style: " .. style_name .. "\n") + return nil + end + + -- Apply per-table overrides from div attributes (header-bold, header-shading) + overrides = overrides or {} + local eff_header_bold = style.header_bold + local eff_header_shading = style.header_shading + if overrides.header_bold ~= nil then + eff_header_bold = overrides.header_bold + end + if overrides.header_shading then + eff_header_shading = overrides.header_shading + end + + debug("[table-style] Applying style '" .. style_name .. "' to table\n") + + -- Get table dimensions + local num_cols = 0 + local rows = {} + + -- Process table head + if tbl.head and tbl.head.rows then + for _, row in ipairs(tbl.head.rows) do + local cells = {} + for _, cell in ipairs(row.cells) do + table.insert(cells, { content = cell, is_header = true }) + num_cols = math.max(num_cols, #row.cells) + end + table.insert(rows, { cells = cells, is_header_row = true }) + end + end + + -- Process table body + if tbl.bodies then + for _, body in ipairs(tbl.bodies) do + if body.body then + for _, row in ipairs(body.body) do + local cells = {} + for _, cell in ipairs(row.cells) do + table.insert(cells, { content = cell, is_header = false }) + num_cols = math.max(num_cols, #row.cells) + end + table.insert(rows, { cells = cells, is_header_row = false }) + end + end + end + end + + -- Calculate table width (default 9000 twips = ~6.25 inches = full text width) + local full_width = 9000 + local total_width = full_width + + -- Apply width percentage if specified (e.g., "50" for half width) + if width_pct then + local pct = tonumber(width_pct) + if pct and pct > 0 and pct <= 100 then + total_width = math.floor(full_width * pct / 100) + debug("[table-style] Using table width: " .. pct .. "%\n") + end + end + + -- Calculate column widths + local col_widths = {} + local widths = parse_widths(widths_str) + + if widths and #widths == num_cols then + -- Use specified percentages + local total_pct = 0 + for _, w in ipairs(widths) do + total_pct = total_pct + w + end + for i, w in ipairs(widths) do + col_widths[i] = math.floor(total_width * w / total_pct) + end + debug("[table-style] Using custom column widths: " .. widths_str .. "\n") + else + -- Auto-compute widths from cell content. + -- For each column: find the longest single word (minimum width to avoid + -- mid-word breaks), then distribute remaining space by total text volume. + + -- Approximate characters that fit in the full table width + -- ~11 chars/inch at 10pt Calibri, scale inversely with font size + local base_font = font_size_pt or 10 + local chars_per_inch = 11 * (10 / base_font) + local total_chars = math.floor(6.5 * chars_per_inch) + + -- Collect text per column (header + all body cells) + local col_texts = {} + for i = 1, num_cols do col_texts[i] = {} end + for _, row in ipairs(rows) do + for col_idx, cell in ipairs(row.cells) do + if col_idx <= num_cols then + local text = "" + if cell.content then + text = pandoc.utils.stringify(cell.content) + end + table.insert(col_texts[col_idx], text) + end + end + end + + local min_chars = {} + local volume = {} + for i = 1, num_cols do + -- Longest single word in this column (determines minimum width) + local max_word = 1 + for _, text in ipairs(col_texts[i]) do + for word in text:gmatch("%S+") do + max_word = math.max(max_word, #word) + end + end + min_chars[i] = max_word + 1 -- +1 char padding + + -- Total text volume (drives proportional allocation) + local vol = 0 + for _, text in ipairs(col_texts[i]) do + vol = vol + #text + end + volume[i] = math.max(vol, 1) + end + + -- Convert minimum chars to percentage of page + local min_pct = {} + local sum_min = 0 + for i = 1, num_cols do + min_pct[i] = min_chars[i] / total_chars * 100 + sum_min = sum_min + min_pct[i] + end + + local auto_widths = {} + if sum_min >= 100 then + -- Minimums fill the page; scale proportionally + for i = 1, num_cols do + auto_widths[i] = min_pct[i] / sum_min * 100 + end + else + -- Allocate minimums, distribute remaining space by volume + local remaining = 100 - sum_min + local total_vol = 0 + for i = 1, num_cols do total_vol = total_vol + volume[i] end + for i = 1, num_cols do + auto_widths[i] = min_pct[i] + (volume[i] / total_vol * remaining) + end + end + + -- Convert percentages to twips, adjusting for rounding + local sum_tw = 0 + for i = 1, num_cols do + col_widths[i] = math.floor(total_width * auto_widths[i] / 100) + sum_tw = sum_tw + col_widths[i] + end + -- Give rounding remainder to the widest column + local widest = 1 + for i = 2, num_cols do + if col_widths[i] > col_widths[widest] then widest = i end + end + col_widths[widest] = col_widths[widest] + (total_width - sum_tw) + + -- Log the computed widths + local pcts = {} + for i = 1, num_cols do + table.insert(pcts, tostring(math.floor(auto_widths[i] + 0.5))) + end + debug("[table-style] Auto-computed column widths: " .. table.concat(pcts, ",") .. "\n") + end + + -- Build table properties XML + -- Add small bottom cell margin (~0.5 line = 120 twips) for breathing room + local cell_margin_xml = '' + + local tblPr_parts = { + "", + '', + build_tblBorders_xml(style.borders), + '', + cell_margin_xml, + "" + } + + -- Build grid columns + local grid_parts = { "" } + for i = 1, num_cols do + table.insert(grid_parts, '') + end + table.insert(grid_parts, "") + + -- Build rows + -- Pre-compute font size string once (table-level constant) + local half_pts = font_size_pt and tostring(font_size_pt * 2) or nil + + local row_parts = {} + for _, row in ipairs(rows) do + local row_xml = { "" } + + -- Build row-level run properties (same for all cells in this row) + local rPr_parts = {} + if row.is_header_row and eff_header_bold then + table.insert(rPr_parts, "") + end + if half_pts then + table.insert(rPr_parts, '') + table.insert(rPr_parts, '') + end + local rPr = "" + if #rPr_parts > 0 then + rPr = "" .. table.concat(rPr_parts) .. "" + end + + -- Paragraph properties for single line spacing (no space after) + local pPr = '' + + -- Helper: render a list of inlines to a Word paragraph + local function build_rich_para(inlines) + if #inlines == 0 then return nil end + local runs_xml = fcu.render_inlines(inlines, rPr_parts) + if runs_xml == "" then return nil end + return "" .. pPr .. runs_xml .. "" + end + + for col_idx, cell in ipairs(row.cells) do + -- Cell properties + local tcPr_parts = { + "", + '' + } + + -- Add header shading if this is a header row + if row.is_header_row and eff_header_shading then + table.insert(tcPr_parts, build_shading_xml(eff_header_shading)) + end + + table.insert(tcPr_parts, "") + + -- Build paragraphs for the cell using the inline renderer + -- This preserves bold, italic, comments, char-style spans, etc. + local paragraphs = {} + + -- Get the cell's content blocks + local cell_blocks = {} + if cell.content and cell.content.contents then + cell_blocks = cell.content.contents + elseif cell.content then + cell_blocks = cell.content + end + + -- Process each block in the cell + for _, block in ipairs(cell_blocks) do + if block.content then + -- Split content on LineBreak elements to create separate Word paragraphs + local current_line = {} + + for _, inline in ipairs(block.content) do + if inline.t == "LineBreak" then + local para = build_rich_para(current_line) + if para then table.insert(paragraphs, para) end + current_line = {} + else + table.insert(current_line, inline) + end + end + + -- Last line (after final LineBreak or if no LineBreak) + if #current_line > 0 then + local para = build_rich_para(current_line) + if para then table.insert(paragraphs, para) end + end + else + -- Block without inline content — stringify as fallback + local text = pandoc.utils.stringify(block) + if text ~= "" then + table.insert(paragraphs, + "" .. pPr .. "" .. rPr .. + '' .. fcu.xml_escape(text) .. "") + end + end + end + + -- If no paragraphs found (shouldn't happen), add empty paragraph + if #paragraphs == 0 then + table.insert(paragraphs, "" .. pPr .. "" .. rPr .. "") + end + + -- Build cell XML with all paragraphs + local cell_xml = "" .. + table.concat(tcPr_parts) .. + table.concat(paragraphs) .. + "" + + table.insert(row_xml, cell_xml) + end + + table.insert(row_xml, "") + table.insert(row_parts, table.concat(row_xml)) + end + + -- Assemble complete table XML + local table_xml = "" .. + table.concat(tblPr_parts) .. + table.concat(grid_parts) .. + table.concat(row_parts) .. + "" + + return table_xml +end + +-- Find table style class in div classes +local function find_table_style(classes) + for _, class in ipairs(classes) do + if table_styles and table_styles[class] then + return class + end + end + return nil +end + +-- Keys to skip when collecting div attributes for field code payload +-- (Pandoc-internal keys that should not be serialised) +local skip_attr_keys = { id = true, ["data-pos"] = true } + +-- Process Div elements looking for table style classes +function Div(div) + -- Check if this div has a table style class + local style_name = find_table_style(div.classes) + if not style_name then + return nil + end + + -- Only process for docx output + if FORMAT ~= "openxml" then + return nil + end + + -- Extract attributes if present + -- Usage: ::: {.table-formal widths="30,70" width="50" font-size="9"} + local widths_str = div.attributes["widths"] -- column widths (e.g., "30,70") + local width_pct = div.attributes["width"] -- table width % (e.g., "50") + local font_size_str = div.attributes["font-size"] -- font size in pt (e.g., "9") + + -- Find Table element inside the div (search recursively through nested Divs, + -- since Quarto wraps R code chunk output in .cell > .cell-output-display divs) + local function find_table(blocks) + for _, block in ipairs(blocks) do + if block.t == "Table" then + return block + elseif block.t == "Div" and block.content then + local found = find_table(block.content) + if found then return found end + end + end + return nil + end + local tbl = find_table(div.content) + + if not tbl then + debug("[table-style] No table found in ." .. style_name .. " div\n") + return nil + end + + -- Parse font size (points) + local font_size_pt = nil + if font_size_str then + font_size_pt = tonumber(font_size_str) + if font_size_pt then + debug("[table-style] Using font size: " .. font_size_pt .. "pt\n") + end + end + + -- Also check for CSS-config font size if not specified as div attribute + if not font_size_pt then + local style = table_styles[style_name] + if style and style.font_size_half_pts then + font_size_pt = style.font_size_half_pts / 2 + debug("[table-style] Using CSS font size: " .. font_size_pt .. "pt\n") + end + end + + -- Parse per-table header overrides from div attributes + local overrides = {} + local hb = div.attributes["header-bold"] + if hb then + overrides.header_bold = (hb == "true" or hb == "1") + end + local hs = div.attributes["header-shading"] + if hs and hs ~= "" then + overrides.header_shading = hs:gsub("^#", "") -- strip leading # if present + end + + -- Convert to styled OpenXML + local table_xml = styled_table_to_openxml(tbl, style_name, widths_str, width_pct, font_size_pt, overrides) + if not table_xml then + return nil + end + + -- Build field code payload and wrap table with ADDIN DOCSTYLE markers + -- Filter out Pandoc-internal keys before passing to field code builder + local attrs = {} + for key, val in pairs(div.attributes) do + if val and val ~= "" and not skip_attr_keys[key] then + attrs[key] = val + end + end + local field_start = fcu.build_table_field_start(style_name, attrs) + local field_end = fcu.build_block_field_end() + + return pandoc.Blocks({ + pandoc.RawBlock("openxml", field_start), + pandoc.RawBlock("openxml", table_xml), + pandoc.RawBlock("openxml", field_end) + }) +end + +-- Initialise format and load table styles once +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + init_table_styles() + return nil +end + +return { + { Pandoc = Pandoc }, + { Div = Div } +} diff --git a/docs/_extensions/docstyle/toc-field.lua b/docs/_extensions/docstyle/toc-field.lua new file mode 100644 index 0000000..12c221a --- /dev/null +++ b/docs/_extensions/docstyle/toc-field.lua @@ -0,0 +1,214 @@ +-- toc-field.lua +-- Pandoc Lua filter that injects Word TOC field codes +-- +-- Usage in QMD: +-- ::: {.toc} +-- ::: +-- +-- Configuration in _quarto.yml (under docstyle.toc): +-- title: "Contents" # Optional heading above TOC +-- title-level: 1 # Heading level for title (default: 1) +-- levels: "1-3" # Which heading levels to include +-- page-numbers: true # Show page numbers +-- hyperlinks: true # Make entries clickable +-- tab-leader: "dot" # dot, dash, underscore, none +-- +-- This filter finds Div elements with class "toc" and replaces them with +-- Word TOC field codes, enabling dynamic table of contents in Word. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local FORMAT = "openxml" + +-- Default configuration +local toc_config = { + title = nil, -- No title by default + title_level = 1, -- # heading + levels = "1-3", + page_numbers = true, + hyperlinks = true, + tab_leader = "dot" +} + +-- Read configuration from metadata +function Meta(meta) + if meta.docstyle and meta.docstyle.toc then + local toc = meta.docstyle.toc + + if toc.title then + toc_config.title = pandoc.utils.stringify(toc.title) + end + + if toc["title-level"] then + toc_config.title_level = tonumber(pandoc.utils.stringify(toc["title-level"])) or 1 + end + + if toc.levels then + toc_config.levels = pandoc.utils.stringify(toc.levels) + end + + if toc["page-numbers"] ~= nil then + local val = toc["page-numbers"] + if type(val) == "boolean" then + toc_config.page_numbers = val + else + toc_config.page_numbers = pandoc.utils.stringify(val) ~= "false" + end + end + + if toc.hyperlinks ~= nil then + local val = toc.hyperlinks + if type(val) == "boolean" then + toc_config.hyperlinks = val + else + toc_config.hyperlinks = pandoc.utils.stringify(val) ~= "false" + end + end + + if toc["tab-leader"] then + toc_config.tab_leader = pandoc.utils.stringify(toc["tab-leader"]) + end + + io.stderr:write("[toc-field] Config: levels=" .. toc_config.levels .. + ", page-numbers=" .. tostring(toc_config.page_numbers) .. + ", hyperlinks=" .. tostring(toc_config.hyperlinks) .. + ", tab-leader=" .. toc_config.tab_leader .. "\n") + end + + return nil +end + +-- Normalize levels to a range format (Word requires "1-3" not just "1") +local function normalize_levels(levels) + -- If already a range (contains "-"), return as-is + if string.find(levels, "-") then + return levels + end + -- Single number: convert to range "n-n" + return levels .. "-" .. levels +end + +-- Build the TOC field instruction text +local function build_toc_instr() + -- TOC field switches: + -- \o "1-3" - Include heading levels 1-3 + -- \h - Hyperlink entries to headings + -- \z - Hide tab leader and page numbers in Web Layout view + -- \u - Use applied paragraph outline level + -- \n - Suppress page numbers (if page-numbers: false) + + local switches = {} + + -- Heading levels (normalize to range format) + local levels_range = normalize_levels(toc_config.levels) + table.insert(switches, '\\o "' .. levels_range .. '"') + + -- Hyperlinks + if toc_config.hyperlinks then + table.insert(switches, "\\h") + end + + -- Hide formatting in web view + table.insert(switches, "\\z") + + -- Use outline levels + table.insert(switches, "\\u") + + -- Suppress page numbers if disabled + if not toc_config.page_numbers then + table.insert(switches, "\\n") + end + + return "TOC " .. table.concat(switches, " ") +end + +-- Build the OpenXML for a TOC field code +local function build_toc_field_xml() + local instr = build_toc_instr() + + -- Pad instruction text (Word requires leading/trailing spaces) + instr = " " .. instr .. " " + + -- Build the 5-part Word field code structure + local xml = '' .. + '' .. + '' .. instr .. '' .. + '' .. + '[Update field to generate table of contents]' .. + '' .. + '' + + return xml +end + +-- Build a heading element for the TOC title +-- Uses the configured title-level to determine the Word style +-- title-level: 1 -> Heading1, 2 -> Heading2, etc. +local function build_title_blocks() + if not toc_config.title then + return {} + end + + -- Map title-level to Word heading style + -- Default to Heading1 if title_level is 1 or not specified + local style_id = "Heading" .. tostring(toc_config.title_level) + + -- Build OpenXML paragraph with the appropriate Heading style + local title_xml = '' .. + '' .. + '' .. toc_config.title .. '' .. + '' + + return { pandoc.RawBlock("openxml", title_xml) } +end + +-- Process Div elements looking for .toc class +function Div(div) + -- Check if this div has the "toc" class + if not div.classes:includes("toc") then + return nil + end + + -- Only process for docx output + if not FORMAT or FORMAT ~= "openxml" then + io.stderr:write("[toc-field] Skipping TOC injection (not docx output)\n") + return nil + end + + io.stderr:write("[toc-field] Found .toc div, injecting TOC field code\n") + + -- Build the result blocks + local blocks = {} + + -- ADDIN DOCSTYLE field code begin (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_div_field_start("toc"))) + + -- Add title heading if configured + local title_blocks = build_title_blocks() + for _, block in ipairs(title_blocks) do + table.insert(blocks, block) + end + + -- Add the TOC field code + local toc_xml = build_toc_field_xml() + table.insert(blocks, pandoc.RawBlock("openxml", toc_xml)) + + -- ADDIN DOCSTYLE field code end (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_block_field_end())) + + return blocks +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +return { + { Meta = Meta }, + { Div = Div } +} diff --git a/docs/_extensions/docstyle/update-field-codes.R b/docs/_extensions/docstyle/update-field-codes.R new file mode 100755 index 0000000..006dfd3 --- /dev/null +++ b/docs/_extensions/docstyle/update-field-codes.R @@ -0,0 +1,405 @@ +#!/usr/bin/env Rscript +# Post-render hook: Inject comments, Zotero components, and update field-codes.json +# +# This script is called by Quarto after rendering to: +# 1. Inject comments from comments.json into the rendered DOCX +# 2. Inject Zotero components (ZOTERO_PREF) for full round-trip support +# 3. Extract Zotero field codes and merge into field-codes.json (for caching) +# 4. Validate the rendered document (optional) +# +# The comment-inject.lua filter creates comment markers in document.xml, +# but the actual comments.xml must be built from the JSON sidecar file. +# +# Usage in _quarto.yml: +# project: +# post-render: _extensions/docstyle/update-field-codes.R +# +# Environment variables (set by Quarto): +# QUARTO_PROJECT_OUTPUT_FILES - newline-separated list of output files +# +# Optional environment variables: +# DOCSTYLE_VALIDATE=1 - Enable DOCX structure validation +# DOCSTYLE_VALIDATE_COMMENTS=1 - Enable comment validation +# DOCSTYLE_VALIDATE_ZOTERO=1 - Enable Zotero field code validation +# DOCSTYLE_DEBUG=1 - Enable verbose debug output + +# Get output files from Quarto +output_files_env <- Sys.getenv("QUARTO_PROJECT_OUTPUT_FILES", "") + +if (nchar(output_files_env) == 0) { + + # Not running as Quarto hook, exit silently + quit(save = "no", status = 0) +} + +output_files <- strsplit(output_files_env, "\n")[[1]] +docx_files <- output_files[grepl("\\.docx$", output_files, ignore.case = TRUE)] + +if (length(docx_files) == 0) { + # No DOCX files rendered, nothing to do + quit(save = "no", status = 0) +} + +# Try to load docstyle (check installed package first, then try devtools::load_all) +docstyle_loaded <- FALSE + +if (requireNamespace("docstyle", quietly = TRUE)) { + docstyle_loaded <- TRUE +} else { + # Try to find and load from development source + # First, try relative to this script (follows symlinks to find package root) + script_path <- tryCatch({ + args <- commandArgs(trailingOnly = FALSE) + file_arg <- grep("^--file=", args, value = TRUE) + if (length(file_arg) > 0) { + normalizePath(sub("^--file=", "", file_arg), mustWork = FALSE) + } else { + NULL + } + }, error = function(e) NULL) + + # Build search paths: script location parents + project parents + project_dir <- Sys.getenv("QUARTO_PROJECT_DIR", getwd()) + search_dirs <- c( + project_dir, + dirname(project_dir), + dirname(dirname(project_dir)), + dirname(dirname(dirname(project_dir))) + ) + + # Add script-relative paths (for symlinked extensions) + if (!is.null(script_path) && file.exists(script_path)) { + script_dir <- dirname(script_path) + # Script is in _extensions/docstyle/, package root is 2 levels up + search_dirs <- c( + dirname(dirname(script_dir)), # Package root (e.g., /path/to/docstyle) + search_dirs + ) + } + + search_dirs <- unique(search_dirs) + + for (dir in search_dirs) { + desc_path <- file.path(dir, "DESCRIPTION") + if (file.exists(desc_path)) { + desc_content <- readLines(desc_path, n = 1, warn = FALSE) + if (grepl("Package:\\s*docstyle", desc_content)) { + if (requireNamespace("devtools", quietly = TRUE)) { + tryCatch({ + devtools::load_all(dir, quiet = TRUE) + docstyle_loaded <- TRUE + break + }, error = function(e) NULL) + } + } + } + } +} + +if (!docstyle_loaded) { + message("[post-render] docstyle package not found, skipping comment injection") + quit(save = "no", status = 0) +} + +# Resolve project root — uses docstyle::find_project_root() which prefers +# QUARTO_PROJECT_DIR, then walks upward for _quarto.yml/project: or .git. +project_dir <- docstyle::find_project_root(getwd()) + +# Read _quarto.yml for docstyle.zotero config (used to set ZOTERO_PREF style) +quarto_yml_path <- file.path(project_dir, "_quarto.yml") +zotero_config <- NULL +if (file.exists(quarto_yml_path)) { + cfg <- tryCatch(yaml::read_yaml(quarto_yml_path), error = function(e) NULL) + if (!is.null(cfg$docstyle$zotero)) { + zotero_config <- cfg$docstyle$zotero + } +} + +# Helper: resolve a docx path that may be relative to the document directory +# rather than the project root (happens when output-dir: ../_site/docs in a +# subdirectory _quarto.yml). QUARTO_PROJECT_OUTPUT_FILES is built by Quarto +# as relative3(projDir, outputFile) but when output-dir contains ".." the +# resolved path goes above projDir. QUARTO_DOCUMENT_PATH is always the +# document's directory — try that as a fallback base. +resolve_docx_path <- function(path, project_dir) { + if (file.exists(path)) return(path) + # Try relative to project root + attempt <- normalizePath(file.path(project_dir, path), mustWork = FALSE) + if (file.exists(attempt)) return(attempt) + # Try relative to document directory (handles output-dir: ../_site/... in subdirs) + doc_path <- Sys.getenv("QUARTO_DOCUMENT_PATH", "") + if (nzchar(doc_path)) { + attempt2 <- normalizePath(file.path(doc_path, path), mustWork = FALSE) + if (file.exists(attempt2)) return(attempt2) + } + path # return original; caller handles missing file +} + +# Process each DOCX file +for (docx_path in docx_files) { + docx_path <- resolve_docx_path(docx_path, project_dir) + if (!file.exists(docx_path)) { + next + } + + # Determine output directory for field-codes.json + # Use _docstyle/ in project root if it exists, otherwise same dir as DOCX + docstyle_dir <- file.path(project_dir, "_docstyle") + + if (dir.exists(docstyle_dir)) { + output_dir <- docstyle_dir + } else { + output_dir <- dirname(docx_path) + } + + # Collect summary info + n_comments <- 0 + zotero_pref_injected <- FALSE + + # Debug mode (used throughout) + debug_mode <- Sys.getenv("DOCSTYLE_DEBUG", "0") == "1" + + # Step 1: Inject comments from comments.json (if present) + comments_json <- file.path(output_dir, "comments.json") + if (file.exists(comments_json)) { + tryCatch({ + # Scan for comment IDs used in the rendered document + used_ids <- docstyle::scan_used_comment_ids(docx_path) + + if (length(used_ids) > 0) { + # Validate that used IDs exist in comments.json before injection + # This prevents corrupt DOCX when QMD and JSON are out of sync + comments <- docstyle::read_comments_json(comments_json) + json_ids <- names(comments) + missing_ids <- setdiff(used_ids, json_ids) + + if (length(missing_ids) > 0) { + # Critical error: QMD references comments not in JSON + message("[docstyle] ERROR: Comment ID mismatch detected!") + message(" Document references ", length(missing_ids), " comment ID(s) not in comments.json:") + message(" ", paste(missing_ids, collapse = ", ")) + message(" This would produce a corrupt DOCX file.") + message(" To fix: Run docstyle::sync_comment_ids() to re-sync IDs from source DOCX") + message(" Skipping comment injection to prevent corruption.") + # Don't inject - leave document without comments rather than corrupt it + } else { + docstyle::inject_comments( + docx_path = docx_path, + comments_json = comments_json, + used_ids = used_ids + ) + n_comments <- length(used_ids) + } + } + }, error = function(e) { + message("[docstyle] Error injecting comments: ", conditionMessage(e)) + }) + } + + # Step 1b: Fix comment-deletion nesting + # Comments attached to deleted text end up after the deletion due to Lua filter + # limitations. This repositions them to span the deletion properly. + if (n_comments > 0) { + tryCatch({ + n_fixed <- docstyle::fix_comment_deletion_nesting( + docx_path = docx_path, + verbose = debug_mode + ) + if (n_fixed > 0 && debug_mode) { + message("[docstyle] Fixed ", n_fixed, " comment-deletion nesting issue(s)") + } + }, error = function(e) { + message("[docstyle] Error fixing comment nesting: ", conditionMessage(e)) + }) + } + + # Step 1c: Inject Zotero citation field codes from markers + # The Lua filter emits DOCSTYLE_CITE:: markers; this replaces them with + # real Word field code XML using data from field-codes.json. + n_citations_injected <- 0L + field_codes_json <- file.path(output_dir, "field-codes.json") + if (file.exists(field_codes_json)) { + tryCatch({ + cite_result <- docstyle::inject_zotero_citations( + docx_path = docx_path, + field_codes_path = field_codes_json, + verbose = debug_mode + ) + n_citations_injected <- cite_result$n_injected + }, error = function(e) { + message("[docstyle] Error injecting Zotero citations: ", conditionMessage(e)) + }) + } + + # Step 2: Validate comments (if enabled via DOCSTYLE_VALIDATE_COMMENTS=1) + validate_comments <- Sys.getenv("DOCSTYLE_VALIDATE_COMMENTS", "0") + if (validate_comments == "1" && file.exists(comments_json)) { + tryCatch({ + result <- docstyle::validate_comments( + docx_path = docx_path, + comments_json = comments_json, + verbose = TRUE + ) + if (!result$valid) { + message("[docstyle] Comment validation failed") + } + }, error = function(e) { + message("[docstyle] Error validating comments: ", conditionMessage(e)) + }) + } + + # Step 2b: Validate DOCX structure (if enabled via DOCSTYLE_VALIDATE=1) + # Catches XML issues, malformed tracked changes, duplicate IDs, etc. + validate_structure <- Sys.getenv("DOCSTYLE_VALIDATE", "0") + if (debug_mode) { + message("[docstyle] DOCSTYLE_VALIDATE=", validate_structure) + } + if (validate_structure == "1") { + tryCatch({ + result <- docstyle::validate_docx_structure( + docx_path = docx_path, + verbose = debug_mode + ) + if (!result$valid) { + message("[docstyle] Structure validation: ", length(result$errors), " issue(s) found") + for (err in result$errors) { + message(" - ", err) + } + } else if (debug_mode) { + message("[docstyle] Structure validation: passed all checks") + } + }, error = function(e) { + message("[docstyle] Error validating structure: ", conditionMessage(e)) + }) + } + + # Step 3: Inject Zotero components (ZOTERO_PREF if missing) + # This ensures rendered documents have full Zotero functionality for round-trip editing + tryCatch({ + result <- docstyle::inject_zotero_components( + docx_path = docx_path, + field_codes_json = if (file.exists(field_codes_json)) field_codes_json else NULL, + zotero_config = zotero_config, + validate = FALSE, # Will validate separately if enabled + verbose = debug_mode + ) + if (result$zotero_pref_injected) { + zotero_pref_injected <- TRUE + if (debug_mode) { + message("[docstyle] Injected ZOTERO_PREF (style: ", result$style_id, ")") + } + } + }, error = function(e) { + if (debug_mode) { + message("[docstyle] Error injecting Zotero components: ", conditionMessage(e)) + } + }) + + # Step 3b: Validate Zotero field codes (if enabled via DOCSTYLE_VALIDATE_ZOTERO=1) + validate_zotero <- Sys.getenv("DOCSTYLE_VALIDATE_ZOTERO", "0") + if (validate_zotero == "1") { + tryCatch({ + result <- docstyle::validate_zotero( + docx_path = docx_path, + verbose = debug_mode + ) + if (!result$valid) { + message("[docstyle] Zotero validation: ", length(result$issues$errors), " error(s)") + for (err in result$issues$errors) { + message(" - ", err) + } + } else if (debug_mode) { + message("[docstyle] Zotero validation: passed all checks") + } + }, error = function(e) { + message("[docstyle] Error validating Zotero: ", conditionMessage(e)) + }) + } + + # Note: Step 4 (extract and merge field codes) was removed in v0.7.6. + # The render pipeline is read-only with respect to field-codes.json. + # New citations only enter via harvest (docx_to_qmd), not via render. + # See: https://github.com/DougManuel/docstyle/issues/38 + + # Step 5: Finalize section structure + # Post-process sectPr elements: remove leaked line numbers from body sectPr, + # validate opening/closing sectPr have correct properties + n_sections_fixed <- 0L + body_sectPr_fixed <- FALSE + tryCatch({ + result <- docstyle::finalize_docx( + docx_path = docx_path, + sidecar_path = output_dir, + verbose = debug_mode + ) + n_sections_fixed <- result$fixed + body_sectPr_fixed <- isTRUE(result$body_fixed) + }, error = function(e) { + message("[docstyle] Error finalizing sections: ", conditionMessage(e)) + }) + + # Step 6: Prune unused styles (remove Pandoc bloat) + n_styles_pruned <- 0L + tryCatch({ + n_styles_pruned <- docstyle::prune_styles_file( + docx_path = docx_path, + sidecar_dir = output_dir, + verbose = debug_mode + ) + }, error = function(e) { + message("[docstyle] Error pruning styles: ", conditionMessage(e)) + }) + + # Step 7: Scan for unresolved citations (always runs) + # Any [@citekey] text remaining in the output means the citation could not + # be resolved to a Zotero field code. This catches both Lua-filter misses + # (citekey not in field-codes.json) and R-finisher fallbacks. + unresolved_cites <- character() + tryCatch({ + unresolved_cites <- docstyle::scan_unresolved_citations(docx_path) + }, error = function(e) { + if (debug_mode) { + message("[docstyle] Error scanning for unresolved citations: ", conditionMessage(e)) + } + }) + + # Partition unresolved citations into staged vs unknown. + # Staged: metadata exists in field-codes.json citations catalog but no citationGroup + # (added via add_citations_from_zotero() or QMD-first drafting — expected during drafting) + # Unknown: no metadata at all — likely a typo or missing harvest + staged_cites <- character() + unknown_cites <- character() + if (length(unresolved_cites) > 0 && file.exists(field_codes_json)) { + tryCatch({ + fc_obj <- jsonlite::fromJSON(field_codes_json, simplifyVector = FALSE) + known_keys <- names(fc_obj$citations %||% list()) + staged_cites <- unresolved_cites[unresolved_cites %in% known_keys] + unknown_cites <- unresolved_cites[!unresolved_cites %in% known_keys] + }, error = function(e) { + unknown_cites <<- unresolved_cites + }) + } else { + unknown_cites <- unresolved_cites + } + + # Print single summary line + parts <- character() + if (n_comments > 0) parts <- c(parts, sprintf("%d comment%s", n_comments, if (n_comments == 1) "" else "s")) + if (n_citations_injected > 0) parts <- c(parts, sprintf("%d citation%s injected", n_citations_injected, if (n_citations_injected == 1) "" else "s")) + if (zotero_pref_injected) parts <- c(parts, "ZOTERO_PREF injected") + if (body_sectPr_fixed) parts <- c(parts, "section structure finalized") + if (n_styles_pruned > 0) parts <- c(parts, sprintf("%d style%s pruned", n_styles_pruned, if (n_styles_pruned == 1) "" else "s")) + if (length(parts) > 0) { + message("[docstyle] Processed: ", paste(parts, collapse = ", ")) + } + if (length(staged_cites) > 0) { + message("[docstyle] Info: ", length(staged_cites), + " staged citation(s) pending Zotero insertion in Word: ", + paste(staged_cites, collapse = ", ")) + } + if (length(unknown_cites) > 0) { + message("[docstyle] Warning: ", length(unknown_cites), + " unresolved citation(s) with no metadata — check citekeys or re-harvest: ", + paste(unknown_cites, collapse = ", ")) + } +} diff --git a/docs/_extensions/docstyle/validate-markup.R b/docs/_extensions/docstyle/validate-markup.R new file mode 100755 index 0000000..f13d016 --- /dev/null +++ b/docs/_extensions/docstyle/validate-markup.R @@ -0,0 +1,144 @@ +#!/usr/bin/env Rscript +# Pre-render hook: Validate QMD markup before rendering +# +# This script validates comment markers, revision spans, and other +# docstyle-specific markup before Quarto renders the document. +# It catches issues that would cause Word "unreadable content" errors. +# +# Usage in _quarto.yml: +# project: +# pre-render: +# - _extensions/docstyle/validate-markup.R +# - _extensions/docstyle/generate-reference.R +# +# Environment variables (set by Quarto): +# QUARTO_PROJECT_DIR - project root directory +# QUARTO_PROJECT_INPUT_FILES - files being rendered +# +# Exit codes: +# 0 - Validation passed (or skipped) +# 1 - Validation failed (stops render) + +# Get input files from Quarto +input_files_env <- Sys.getenv("QUARTO_PROJECT_INPUT_FILES", "") +project_dir <- Sys.getenv("QUARTO_PROJECT_DIR", getwd()) + +if (nchar(input_files_env) == 0) { + # Not running as Quarto hook, exit silently + quit(save = "no", status = 0) +} + +# Parse input files (newline-separated) +input_files <- strsplit(input_files_env, "\n")[[1]] +qmd_files <- input_files[grepl("\\.qmd$", input_files, ignore.case = TRUE)] + +if (length(qmd_files) == 0) { + # No QMD files being rendered, nothing to validate + quit(save = "no", status = 0) +} + +# Try to load docstyle +docstyle_loaded <- FALSE + +if (requireNamespace("docstyle", quietly = TRUE)) { + docstyle_loaded <- TRUE +} else { + # Try to find and load from development source + search_dirs <- c( + project_dir, + dirname(project_dir), + dirname(dirname(project_dir)), + dirname(dirname(dirname(project_dir))), + dirname(dirname(dirname(dirname(project_dir)))) + ) + + for (dir in search_dirs) { + desc_path <- file.path(dir, "DESCRIPTION") + if (file.exists(desc_path)) { + desc_content <- readLines(desc_path, n = 1, warn = FALSE) + if (grepl("Package:\\s*docstyle", desc_content)) { + if (requireNamespace("devtools", quietly = TRUE)) { + tryCatch({ + devtools::load_all(dir, quiet = TRUE) + docstyle_loaded <- TRUE + break + }, error = function(e) NULL) + } + } + } + } +} + +if (!docstyle_loaded) { + message("[validate-markup] docstyle package not found, skipping validation") + quit(save = "no", status = 0) +} + +# Find sidecar directory for comments.json +sidecar_dir <- file.path(project_dir, "_docstyle") +if (!dir.exists(sidecar_dir)) { + # Try relative to first QMD file + sidecar_dir <- file.path(dirname(qmd_files[1]), "_docstyle") +} + +comments_json <- if (dir.exists(sidecar_dir)) { + json_path <- file.path(sidecar_dir, "comments.json") + if (file.exists(json_path)) json_path else NULL +} else { + NULL +} + +# Validate each QMD file +all_valid <- TRUE +total_errors <- 0 +total_warnings <- 0 + +cat("\n") +cat("=== docstyle Markup Validation ===\n") + +for (qmd_path in qmd_files) { + # Make path absolute if needed + if (!startsWith(qmd_path, "/")) { + qmd_path <- file.path(project_dir, qmd_path) + } + + if (!file.exists(qmd_path)) { + next + } + + cat(sprintf("\nValidating: %s\n", basename(qmd_path))) + + result <- tryCatch({ + docstyle::validate_qmd( + qmd_path = qmd_path, + comments_json = comments_json, + verbose = TRUE + ) + }, error = function(e) { + message("[validate-markup] Error: ", conditionMessage(e)) + list(valid = FALSE, issues = list(errors = conditionMessage(e), warnings = character())) + }) + + if (!result$valid) { + all_valid <- FALSE + } + total_errors <- total_errors + length(result$issues$errors) + total_warnings <- total_warnings + length(result$issues$warnings) +} + +cat("\n") +cat("=== Validation Summary ===\n") +cat(sprintf("Files: %d | Errors: %d | Warnings: %d\n", + length(qmd_files), total_errors, total_warnings)) + +if (!all_valid) { + cat("\n") + cat("ERROR: Validation failed. Fix errors before rendering.\n") + cat("Hint: Convert deprecated [text]{.comment id=\"X\"} to:\n") + cat(" - Range: text\n") + cat(" - Point: \n") + cat("\n") + quit(save = "no", status = 1) +} + +cat("\n") diff --git a/docs/_extensions/docstyle/version-history.lua b/docs/_extensions/docstyle/version-history.lua new file mode 100644 index 0000000..c820a89 --- /dev/null +++ b/docs/_extensions/docstyle/version-history.lua @@ -0,0 +1,326 @@ +-- version-history.lua +-- Pandoc Lua filter that generates a version history table from YAML metadata +-- +-- Usage in QMD: +-- ::: version-history +-- ::: +-- +-- Configuration in _quarto.yml (under docstyle.version-history): +-- title: "Version history" # Heading text (or false to disable) +-- title-level: 1 # 1-6: uses Heading1-Heading6 style +-- widths: "15,70,15" # Column width percentages (Version, Description, Date) +-- style: "table-grid" # Table style: table-grid (all borders) or table-formal (top/bottom) +-- +-- Version entries in QMD YAML front matter: +-- version-history: +-- - version: "1.0.0" +-- date: "2025-01-15" +-- description: "Final release" +-- +-- This filter finds Div elements with class "version-history" and replaces them +-- with a Word table generated from the version-history metadata. + +-- Load shared field code utilities +local fcu = require("field-code-utils") + +local FORMAT = "openxml" + +-- Built-in table style definitions (matching table-style.lua) +local table_styles = { + ["table-grid"] = { + borders = { + top = { val = "single", sz = "4", color = "000000" }, + bottom = { val = "single", sz = "4", color = "000000" }, + left = { val = "single", sz = "4", color = "000000" }, + right = { val = "single", sz = "4", color = "000000" }, + insideH = { val = "single", sz = "4", color = "000000" }, + insideV = { val = "single", sz = "4", color = "000000" } + }, + header_shading = nil, + header_bold = true + }, + ["table-formal"] = { + borders = { + top = { val = "single", sz = "4", color = "7F7F7F" }, + bottom = { val = "single", sz = "4", color = "7F7F7F" }, + left = nil, + right = nil, + insideH = nil, + insideV = nil + }, + header_shading = "D9D9D9", + header_bold = true + } +} + +-- Store version history from metadata +local version_history = nil +local div_found = false +local config = { + title = "Version history", + title_level = 1, + widths = {15, 70, 15}, -- Default: Version 15%, Description 70%, Date 15% + style = "table-grid" -- Default table style +} + +-- Use shared xml_escape from field-code-utils +local xml_escape = fcu.xml_escape + +-- Parse widths string "15,70,15" into table {15, 70, 15} +local function parse_widths(widths_str) + local widths = {} + for w in string.gmatch(widths_str, "([^,]+)") do + local num = tonumber(w) + if num then + table.insert(widths, num) + end + end + -- Ensure we have exactly 3 widths + if #widths ~= 3 then + return {15, 70, 15} -- Default + end + return widths +end + +-- Read configuration from metadata +function Meta(meta) + -- Get version history entries + if meta["version-history"] then + version_history = meta["version-history"] + io.stderr:write("[version-history] Found " .. #version_history .. " version entries in metadata\n") + end + + -- Get optional config from docstyle.version-history + if meta.docstyle and meta.docstyle["version-history"] then + local vh_config = meta.docstyle["version-history"] + + -- Title (string or false to disable) + if vh_config.title ~= nil then + local title_val = vh_config.title + if type(title_val) == "boolean" and not title_val then + config.title = nil -- Disable title + else + config.title = pandoc.utils.stringify(title_val) + end + end + + -- Title level (1-6) + if vh_config["title-level"] then + config.title_level = tonumber(pandoc.utils.stringify(vh_config["title-level"])) or 1 + end + + -- Column widths + if vh_config.widths then + local widths_str = pandoc.utils.stringify(vh_config.widths) + config.widths = parse_widths(widths_str) + io.stderr:write("[version-history] Column widths: " .. table.concat(config.widths, ", ") .. "\n") + end + + -- Table style + if vh_config.style then + local style_name = pandoc.utils.stringify(vh_config.style) + if table_styles[style_name] then + config.style = style_name + io.stderr:write("[version-history] Table style: " .. style_name .. "\n") + else + io.stderr:write("[version-history] Unknown table style '" .. style_name .. "', using default\n") + end + end + end + + return nil +end + +-- Build border XML element +local function build_border_xml(name, border) + if not border then return "" end + return string.format('', + name, border.val, border.sz, border.color) +end + +-- Build table borders XML from style definition +local function build_tblBorders_xml(borders) + if not borders then return "" end + + local parts = { "" } + if borders.top then table.insert(parts, build_border_xml("top", borders.top)) end + if borders.left then table.insert(parts, build_border_xml("left", borders.left)) end + if borders.bottom then table.insert(parts, build_border_xml("bottom", borders.bottom)) end + if borders.right then table.insert(parts, build_border_xml("right", borders.right)) end + if borders.insideH then table.insert(parts, build_border_xml("insideH", borders.insideH)) end + if borders.insideV then table.insert(parts, build_border_xml("insideV", borders.insideV)) end + table.insert(parts, "") + + return table.concat(parts) +end + +-- Build a table cell XML with optional width and shading +local function build_cell(text, bold, width_pct, shading) + local rPr = "" + if bold then + rPr = "" + end + + -- Width in fiftieths of a percent (5000 = 100%) + local tcPr_parts = { "" } + if width_pct then + local width_val = math.floor(width_pct * 50) -- Convert % to fiftieths + table.insert(tcPr_parts, '') + end + if shading then + table.insert(tcPr_parts, '') + end + table.insert(tcPr_parts, "") + + return '' .. + table.concat(tcPr_parts) .. + '' .. + '' .. rPr .. + '' .. xml_escape(text) .. '' .. + '' .. + '' .. + '' +end + +-- Build the version history table XML +local function build_table_xml() + if not version_history or #version_history == 0 then + return nil + end + + local w = config.widths + local style = table_styles[config.style] or table_styles["table-grid"] + + -- Header row with column widths (bold header if style specifies, with optional shading) + local header_bold = style.header_bold + local header_shading = style.header_shading + local header_row = '' .. + build_cell("Version", header_bold, w[1], header_shading) .. + build_cell("Description", header_bold, w[2], header_shading) .. + build_cell("Date", header_bold, w[3], header_shading) .. + '' + + -- Data rows + local data_rows = {} + for _, entry in ipairs(version_history) do + local version = "" + local description = "" + local date = "" + + if entry.version then + version = pandoc.utils.stringify(entry.version) + end + if entry.description then + description = pandoc.utils.stringify(entry.description) + end + if entry.date then + date = pandoc.utils.stringify(entry.date) + end + + local row = '' .. + build_cell(version, false, w[1], nil) .. + build_cell(description, false, w[2], nil) .. + build_cell(date, false, w[3], nil) .. + '' + table.insert(data_rows, row) + end + + -- Build table borders from style + local borders_xml = build_tblBorders_xml(style.borders) + + -- Complete table with style-defined borders + local table_xml = '' .. + '' .. + '' .. -- 100% width + borders_xml .. + '' .. + header_row .. + table.concat(data_rows) .. + '' + + return table_xml +end + +-- Build heading for the title +local function build_title_xml() + if not config.title then + return nil + end + + local style_id = "Heading" .. tostring(config.title_level) + + return '' .. + '' .. + '' .. xml_escape(config.title) .. '' .. + '' +end + +-- Process Div elements looking for .version-history class +function Div(div) + -- Check if this div has the "version-history" class + if not div.classes:includes("version-history") then + return nil + end + + div_found = true + + -- Only process for docx output + if FORMAT ~= "openxml" then + io.stderr:write("[version-history] Skipping (not docx output)\n") + return nil + end + + if not version_history or #version_history == 0 then + io.stderr:write("[version-history] No version-history metadata found\n") + return {} -- Remove the div entirely + end + + io.stderr:write("[version-history] Generating table with " .. #version_history .. " entries\n") + + -- Build the result blocks + local blocks = {} + + -- ADDIN DOCSTYLE field code begin (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_div_field_start("version-history"))) + + -- Add title heading + local title_xml = build_title_xml() + if title_xml then + table.insert(blocks, pandoc.RawBlock("openxml", title_xml)) + end + + -- Add the table + local table_xml = build_table_xml() + if table_xml then + table.insert(blocks, pandoc.RawBlock("openxml", table_xml)) + end + + -- ADDIN DOCSTYLE field code end (using shared utility) + table.insert(blocks, pandoc.RawBlock("openxml", fcu.build_block_field_end())) + + return blocks +end + +-- Check output format +function Pandoc(doc) + if FORMAT == "docx" or FORMAT == "openxml" then + FORMAT = "openxml" + end + return nil +end + +-- Warn if version-history metadata exists but no div was found +local function CheckUnused(doc) + if version_history and #version_history > 0 and not div_found then + io.stderr:write("[version-history] Warning: " .. #version_history .. + " version-history entries in metadata but no ::: version-history ::: " .. + "div in document. Add the div where you want the table to appear.\n") + end + return nil +end + +return { + { Meta = Meta, Pandoc = Pandoc }, + { Div = Div }, + { Pandoc = CheckUnused } +} diff --git a/docs/_extensions/docstyle/zotero-inject.lua b/docs/_extensions/docstyle/zotero-inject.lua new file mode 100644 index 0000000..e24b95a --- /dev/null +++ b/docs/_extensions/docstyle/zotero-inject.lua @@ -0,0 +1,136 @@ +-- zotero-inject.lua +-- Pandoc Lua filter that emits text markers for Zotero citation field codes. +-- +-- The R finisher (inject_zotero_citations) replaces these markers with real +-- Word field code XML after Pandoc has finished rendering to docx. +-- +-- Markers: +-- DOCSTYLE_CITE::key1;key2 – citation (single or grouped) +-- DOCSTYLE_CITE_BIBL – bibliography placeholder +-- +-- Usage: +-- pandoc --lua-filter=zotero-inject.lua -M field-codes=path/to/field-codes.json ... + +-- Debug logging (set DOCSTYLE_DEBUG=1 to enable) +local DEBUG = os.getenv("DOCSTYLE_DEBUG") == "1" +local function debug(msg) + if DEBUG then + io.stderr:write(msg) + end +end + +-- Citekey existence lookup (populated from field-codes.json citations section) +local known_citekeys = {} + +-- Check if file exists +local function file_exists(path) + local f = io.open(path, "r") + if f then + f:close() + return true + end + return false +end + +-- Read field-codes.json at startup; populate known_citekeys +function Meta(meta) + local field_codes_path = nil + + -- Get path from metadata (explicit override) + if meta["field-codes"] then + field_codes_path = pandoc.utils.stringify(meta["field-codes"]) + end + + -- Auto-detect common locations if not specified + if not field_codes_path then + debug("[zotero-inject] Looking for field-codes.json...\n") + local search_paths = { + "_docstyle/field-codes.json", + "field-codes.json", + "../_docstyle/field-codes.json" + } + for _, path in ipairs(search_paths) do + debug("[zotero-inject] Checking: " .. path .. "\n") + if file_exists(path) then + field_codes_path = path + debug("[zotero-inject] Found field-codes.json: " .. path .. "\n") + break + end + end + end + + if not field_codes_path then + debug("[zotero-inject] No field-codes.json found; markers will not be emitted\n") + return nil + end + + -- Read and parse the JSON file + local file = io.open(field_codes_path, "r") + if not file then + debug("[zotero-inject] Could not open: " .. field_codes_path .. "\n") + return nil + end + + local content = file:read("*all") + file:close() + + local ok, parsed = pcall(function() + return pandoc.json.decode(content) + end) + + if not ok then + debug("[zotero-inject] Failed to parse field-codes.json\n") + return nil + end + + -- Build citekey existence set from citations catalog + local count = 0 + if parsed.citations then + for citekey, _ in pairs(parsed.citations) do + known_citekeys[citekey] = true + count = count + 1 + end + end + debug("[zotero-inject] Loaded " .. count .. " citekey(s) from field-codes.json\n") + + return nil +end + +-- Process Cite elements: emit text markers instead of raw OpenXML +function Cite(cite) + local citekeys = {} + for _, citation in ipairs(cite.citations) do + table.insert(citekeys, citation.id) + end + + if #citekeys == 0 then + return nil + end + + -- All citekeys must be known; otherwise fall back to Pandoc default rendering + for _, citekey in ipairs(citekeys) do + if not known_citekeys[citekey] then + debug("[zotero-inject] Skipping (unknown citekey): " .. citekey .. "\n") + return nil + end + end + + local marker = "DOCSTYLE_CITE::" .. table.concat(citekeys, ";") + debug("[zotero-inject] Emitting marker: " .. marker .. "\n") + return pandoc.Str(marker) +end + +-- Process Div elements: emit bibliography marker for bibliography placeholder +function Div(div) + if div.classes:includes("bibliography") then + debug("[zotero-inject] Emitting bibliography marker from div\n") + return pandoc.Para({ pandoc.Str("DOCSTYLE_CITE_BIBL") }) + end + return nil +end + +return { + { Meta = Meta }, + { Cite = Cite }, + { Div = Div } +} diff --git a/docs/_quarto.yml b/docs/_quarto.yml new file mode 100644 index 0000000..f6503ed --- /dev/null +++ b/docs/_quarto.yml @@ -0,0 +1,87 @@ +project: + type: default + pre-render: _extensions/docstyle/generate-reference.R + post-render: _extensions/docstyle/update-field-codes.R + output-dir: ../_site/docs + +bibliography: ../references.bib + +format: + docstyle-docx: + toc: false + number-sections: false + reference-doc: ../_docstyle/reference.docx + +docstyle: + css: + - ../popcorn-base.css + - ../pop-draft-manuscript.css + sidecar-dir: ../_docstyle + header: + enabled: true + left: "CSHM Study Protocol" + first-page: false + style: header + footer: + enabled: true + left: "DRAFT" + right: "Page {page} of {pages}" + first-page: false + style: footer + toc: + title: "Table of contents" + levels: "1-3" + author-plate: + enabled: false + version-history: + enabled: true + title: "Version history" + style: "table-formal" + authors: + - name: + given: "Douglas" + family: "Manuel" + email: "dmanuel@ohri.ca" + orcid: "0000-0003-0912-0845" + corresponding: true + affiliations: + - ref: ohri + - name: + given: "Rafael" + family: "Meza" + orcid: "0000-0002-1076-5037" + affiliations: + - ref: bccancer + - ref: ubc + - name: + given: "Rochelle E." + family: "Garner" + email: "rochelle.garner@statcan.gc.ca" + affiliations: + - ref: statscan + - name: + given: "Maikol" + family: "Diasparra" + email: "maikol.diasparra@statcan.gc.ca" + affiliations: + - ref: statscan + affiliations: + - id: ohri + name: "Ottawa Hospital Research Institute" + city: "Ottawa" + country: "Canada" + - id: bccancer + name: "BC Cancer Research Institute" + city: "Vancouver" + country: "Canada" + - id: ubc + name: "University of British Columbia" + department: "School of Population and Public Health" + city: "Vancouver" + country: "Canada" + - id: statscan + name: "Statistics Canada" + department: "Health Analysis Division" + city: "Ottawa" + country: "Canada" + diff --git a/docs/explanation/apc-method.qmd b/docs/explanation/apc-method.qmd new file mode 100644 index 0000000..0786c67 --- /dev/null +++ b/docs/explanation/apc-method.qmd @@ -0,0 +1,50 @@ +--- +title: "Age-Period-Cohort methodology" +subtitle: "Understanding the statistical approach behind CSHM" +--- + +# Age-Period-Cohort methodology + +This document explains the Age-Period-Cohort (APC) methodology used in the CSHM. + +*This page is under development. Content coming soon.* + +## Overview + +The Age-Period-Cohort (APC) model is a statistical approach used to separate the effects of three time-related variables on an outcome of interest. + +## The three temporal dimensions + +The three key dimensions in an APC model are: + +1. **Age effects**: How behavior changes as individuals age +2. **Period effects**: How behavior changes across calendar time (affecting all age groups) +3. **Cohort effects**: How behavior differs across birth cohorts (groups born in the same time period) + +## The identification problem + +A fundamental challenge in APC models is the linear dependency between the three dimensions: + +``` +Cohort = Period - Age +``` + +This creates an identification problem that requires constraints or additional modeling approaches to solve. + +## APC in CSHM + +The CSHM implements APC modeling using: + +1. Natural cubic splines to model age, period, and cohort effects +2. Strategic constraints based on empirical research +3. Separate models for smoking initiation and cessation +4. Sex-specific modeling to capture gender differences + +## Statistical implementation + +The statistical approach involves: + +1. Using generalized linear models with a logit link function +2. Incorporating natural cubic splines for flexible effect estimation +3. Applying constraints to address the identification problem +4. Accounting for complex survey design and weighting \ No newline at end of file diff --git a/docs/explanation/index.qmd b/docs/explanation/index.qmd new file mode 100644 index 0000000..092452e --- /dev/null +++ b/docs/explanation/index.qmd @@ -0,0 +1,12 @@ +--- +title: "Explanation" +--- + +This section provides conceptual explanations of the methodology and approach used in CSHM: + +- [Smoking history modelling](smoking-history.qmd): Conceptual overview of smoking history modelling +- [APC methodology](apc-method.qmd): Explanation of the Age-Period-Cohort methodology +- [Validation approaches](validation.qmd): Discussion of validation approaches and considerations +- [Research applications](research-applications.qmd): Use cases in population health research + +Use this section when you want to understand the concepts and theory behind the project. \ No newline at end of file diff --git a/docs/explanation/research-applications.qmd b/docs/explanation/research-applications.qmd new file mode 100644 index 0000000..02aee5d --- /dev/null +++ b/docs/explanation/research-applications.qmd @@ -0,0 +1,42 @@ +--- +title: "Research applications" +subtitle: "Using CSHM in population health research" +--- + +# Research applications + +This document discusses ways the Canadian Smoking Histories Model can be applied in research. + +*This page is under development. Content coming soon.* + +## Overview + +The CSHM has applications in various fields of research, policy analysis, and public health planning. + +## Population health research + +Applications in population health research include: + +1. **Smoking-attributable disease burden**: Estimating the burden of disease attributable to smoking +2. **Health inequality assessment**: Analyzing disparities in smoking behavior across population groups +3. **Temporal trend analysis**: Understanding how smoking patterns have changed over time + +## Health policy research + +Applications in health policy include: + +1. **Policy evaluation**: Assessing the impact of past tobacco control policies +2. **Policy simulation**: Modeling the potential effects of proposed policies +3. **Economic analysis**: Estimating costs associated with smoking and benefits of interventions + +## Future research directions + +Promising areas for future research using the CSHM include: + +1. Integration with e-cigarette and vaping behavior models +2. Incorporation of social network effects on smoking behavior +3. Analysis of interactions between smoking and other health behaviors + +## Case studies + +*This section will include examples of published research using the CSHM or similar approaches.* \ No newline at end of file diff --git a/docs/explanation/smoking-history.qmd b/docs/explanation/smoking-history.qmd new file mode 100644 index 0000000..0faaac2 --- /dev/null +++ b/docs/explanation/smoking-history.qmd @@ -0,0 +1,41 @@ +--- +title: "Smoking history modeling" +subtitle: "Conceptual overview of smoking behavior modeling approaches" +--- + +# Smoking history modeling + +This document provides a conceptual overview of smoking history modeling approaches. + +*This page is under development. Content coming soon.* + +## Overview + +Smoking history modeling is a method to understand and predict patterns of smoking behavior in populations over time. + +## Key concepts + +Important concepts in smoking history modeling include: + +1. **Smoking states**: Different states individuals can occupy (never, current, former smoker) +2. **Transition probabilities**: The likelihood of moving between smoking states +3. **Temporal effects**: How age, time period, and birth cohort influence smoking behavior +4. **Population heterogeneity**: Different patterns across demographic groups + +## Modeling approaches + +Different approaches to smoking history modeling include: + +1. **Descriptive approaches**: Using survey data to directly estimate prevalence +2. **Statistical approaches**: Using regression models to identify patterns and trends +3. **Microsimulation approaches**: Simulating individual smoking histories +4. **Age-Period-Cohort models**: Separating three temporal effects on smoking behavior + +## Applications + +Smoking history models have various applications: + +1. Projecting future smoking prevalence +2. Estimating disease burden attributable to smoking +3. Evaluating tobacco control policies +4. Understanding smoking behavior dynamics \ No newline at end of file diff --git a/docs/explanation/validation.qmd b/docs/explanation/validation.qmd new file mode 100644 index 0000000..9acef2f --- /dev/null +++ b/docs/explanation/validation.qmd @@ -0,0 +1,51 @@ +--- +title: "Validation approaches" +subtitle: "Methods for assessing model accuracy and reliability" +--- + +# Validation approaches + +This document explains the validation approaches used in the CSHM. + +*This page is under development. Content coming soon.* + +## Overview + +Validation is a critical step in ensuring that the CSHM produces accurate and reliable results that reflect real-world smoking patterns. + +## Validation goals + +The primary goals of validation are to ensure: + +1. **Internal validity**: The model produces results that are consistent with the data used to build it +2. **External validity**: The model can generalize to new data and scenarios +3. **Face validity**: The results align with expert knowledge and historical trends +4. **Predictive validity**: The model can make accurate predictions about future smoking patterns + +## Validation methods + +The CSHM employs several validation methods: + +1. **Historical comparison**: Comparing model-generated prevalence with historical survey data +2. **Cross-validation**: Testing the model on different subsets of data +3. **Sensitivity analysis**: Examining how results change when model parameters are varied +4. **Expert review**: Engaging subject matter experts to review the results + +## Validation metrics + +Key metrics used for validation include: + +1. Smoking prevalence by age, sex, and calendar year +2. Age-specific initiation rates +3. Age-specific cessation rates +4. Duration of smoking distributions +5. Cigarettes per day distributions + +## Validation challenges + +Common challenges in validating smoking history models include: + +1. Limited historical data for some time periods +2. Changes in smoking behavior definitions over time +3. Recall bias in self-reported smoking histories +4. Underreporting of smoking in surveys \ No newline at end of file diff --git a/docs/how-to/custom-models.qmd b/docs/how-to/custom-models.qmd new file mode 100644 index 0000000..f5f7a7c --- /dev/null +++ b/docs/how-to/custom-models.qmd @@ -0,0 +1,41 @@ +--- +title: "Creating custom models" +subtitle: "Extending the CSHM for specialized analyses" +--- + +# Creating custom models + +This guide explains how to create custom models that extend the core functionality of the CSHM. + +*This page is under development. Content coming soon.* + +## Overview + +The CSHM can be extended in various ways to address specific research questions or incorporate additional factors. + +## Customization approaches + +Common customization approaches include: + +1. **Adding covariates**: Including additional variables like education or income +2. **Alternative spline specifications**: Using different knot placements or spline types +3. **Interaction terms**: Modeling interactions between temporal components +4. **Stratified analyses**: Creating separate models for specific subpopulations + +## Example extensions + +```r +# Example custom model code (placeholder) +# custom_apc_model <- function(data, covariates = NULL) { +# # Custom model implementation would go here +# } +``` + +## Best practices + +When creating custom models: + +1. Document model specifications clearly +2. Validate custom models against baseline models +3. Perform sensitivity analyses +4. Consider computational efficiency for complex models \ No newline at end of file diff --git a/docs/how-to/data-loading-and-harmonizing.qmd b/docs/how-to/data-loading-and-harmonizing.qmd new file mode 100644 index 0000000..adbb97c --- /dev/null +++ b/docs/how-to/data-loading-and-harmonizing.qmd @@ -0,0 +1,312 @@ +--- +title: "Data loading and harmonizing" +subtitle: "Preparing CCHS data for the Smoking Histories Model" +author: "CSHM Development Team" +date: "Last Updated: `r Sys.Date()`" +format: + html: + toc: true + toc-depth: 3 + number-sections: true + theme: cosmo + code-fold: show +execute: + echo: true + warning: false + message: false +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE) +# Load required packages +library(dplyr) +library(ggplot2) +# If you have installed the cshgm package, uncomment this: +# library(cshm) +``` + +# Introduction + +This guide focuses on the initial steps of the CSHM workflow: loading Canadian Community Health Survey (CCHS) data and harmonizing variables across survey cycles. These steps are critical for ensuring consistent analysis across different time periods. + +## Purpose of data harmonization + +Variable names, coding, and survey design have changed across CCHS cycles. Harmonization ensures that: + +1. Variables have consistent names across cycles +2. Response codes are standardized +3. Derived variables are calculated consistently +4. Missing values are handled appropriately + +# Required data sources + +## Canadian Community Health Survey (CCHS) + +The CCHS is the primary data source for the smoking history model. We typically use multiple cycles: + +- CCHS 2001 (Cycle 1.1) +- CCHS 2003 (Cycle 2.1) +- CCHS 2005 (Cycle 3.1) +- CCHS 2007-2008 +- CCHS 2009-2010 +- CCHS 2011-2012 +- CCHS 2013-2014 +- CCHS 2015-2016 +- CCHS 2017-2018 + +## Accessing CCHS data + +CCHS data can be accessed through: + +1. **Statistics Canada Research Data Centres (RDCs)**: For researchers who need access to the detailed microdata +2. **Public Use Microdata Files (PUMFs)**: Available through academic institutions +3. **Sample files**: For demonstration purposes, sample datasets are included with this package + +# Loading CCHS data + +## Step 1: Set up your environment + +First, set up your environment with the necessary packages: + +```{r load-packages, eval=FALSE} +# Load required packages +library(cshm) +library(dplyr) +library(cchsflow) # For harmonizing CCHS variables +library(haven) # For reading SAS or SPSS files + +# Configure paths using the config package +library(config) +cfg <- config::get() +data_path <- cfg$data_path +``` + +## Step 2: Load individual CCHS cycles + +Load each CCHS cycle file. The format will depend on how your data is stored: + +```{r load-cycles, eval=FALSE} +# Example: Loading RData files +cchs2001 <- readRDS(file.path(data_path, "cchs2001_p.RData")) +cchs2003 <- readRDS(file.path(data_path, "cchs2003_p.RData")) +cchs2005 <- readRDS(file.path(data_path, "cchs2005_p.RData")) +cchs2007_2008 <- readRDS(file.path(data_path, "cchs2007_2008_p.RData")) +cchs2009_2010 <- readRDS(file.path(data_path, "cchs2009_2010_p.RData")) +cchs2011_2012 <- readRDS(file.path(data_path, "cchs2012_p.RData")) +cchs2013_2014 <- readRDS(file.path(data_path, "cchs2013_2014_p.RData")) + +# For SAS or SPSS files, you would use: +# cchs2001 <- haven::read_sas(file.path(data_path, "cchs2001.sas7bdat")) +# or +# cchs2001 <- haven::read_spss(file.path(data_path, "cchs2001.sav")) +``` + +## Step 3: Data preparation + +Before harmonizing, prepare the data by adding cycle-specific identifiers: + +```{r prepare-data, eval=FALSE} +# Add cycle identifier to each dataset +cchs2001 <- cchs2001 %>% mutate(cycle = "2001") +cchs2003 <- cchs2003 %>% mutate(cycle = "2003") +cchs2005 <- cchs2005 %>% mutate(cycle = "2005") +cchs2007_2008 <- cchs2007_2008 %>% mutate(cycle = "2007-2008") +cchs2009_2010 <- cchs2009_2010 %>% mutate(cycle = "2009-2010") +cchs2011_2012 <- cchs2011_2012 %>% mutate(cycle = "2011-2012") +cchs2013_2014 <- cchs2013_2014 %>% mutate(cycle = "2013-2014") + +# Create a list of all datasets +cchs_list <- list( + cchs2001, cchs2003, cchs2005, cchs2007_2008, + cchs2009_2010, cchs2011_2012, cchs2013_2014 +) +``` + +# Variable harmonization + +## Core smoking variables + +For the CSHM, we need to harmonize several key smoking-related variables: + +| Type | Variables | Description | +|------|-----------|-------------| +| Status | SMK_01A, SMK_202, SMKDSTY | Basic smoking status indicators | +| Initiation | SMKG01C_cont, SMKG203_cont, SMKG207_cont | Age of smoking initiation | +| Cessation | SMK_09A_cont, SMKG09C | When smoking cessation occurred | +| Intensity | SMK_204, SMK_208, SMK_05B, SMK_05C | Quantity of cigarettes smoked | + +## Step 4: Harmonize variables using cchsflow + +The `cchsflow` package provides tools for harmonizing CCHS variables across cycles: + +```{r harmonize, eval=FALSE} +# Define the variables needed for CSHM +smoking_vars <- c( + "SMK_01A", # In lifetime, smoked 100 or more cigarettes + "SMK_202", # Current smoking status + "SMKDSTY", # Type of smoker + "SMKG01C_cont", # Age smoked first cigarette + "SMKG203_cont", # Age started smoking daily (daily smokers) + "SMKG207_cont", # Age started smoking daily (former daily smokers) + "SMK_09A_cont", # When stopped smoking daily (former daily) + "SMKG09C", # Years since stopped smoking daily + "SMK_204", # Number of cigarettes smoked daily (daily smokers) + "SMK_208", # Number of cigarettes smoked daily (former daily smokers) + "SMK_05B", # Number of cigarettes smoked daily (occasional smokers) + "SMK_05C" # Number of days smoked in past month (occasional smokers) +) + +# Demographic variables +demographic_vars <- c( + "DHH_SEX", # Sex of respondent + "DHH_AGE", # Age of respondent + "WTS_M" # Survey weight +) + +# Variables for timing +timing_vars <- c( + "SAMPLEID" # Contains year and month of survey +) + +# Combine all variables +all_vars <- c(smoking_vars, demographic_vars, timing_vars) + +# Process each dataset with cchsflow +harmonized_list <- lapply(cchs_list, function(dataset) { + rec_with_table(dataset, all_vars) +}) + +# Combine all harmonized datasets +harmonized_data <- bind_rows(harmonized_list) +``` + +## Step 5: Create derived variables + +Some additional variables need to be created for the CSHM: + +```{r derived-vars, eval=FALSE} +# Create survey date and additional variables +harmonized_data <- harmonized_data %>% + mutate( + # Extract survey year and month from SAMPLEID + survey_year = as.numeric(substr(as.character(SAMPLEID), 1, 4)), + survey_month = as.numeric(substr(as.character(SAMPLEID), 5, 6)), + + # Create a date for the survey (use middle of month as approximation) + cchsbdate = as.Date(paste(survey_year, survey_month, "15", sep = "-")), + + # Rename age of first cigarette for consistency with original code + agefirst = SMKG01C_cont, + + # Create survey age variable (age at time of survey) + surveyage = DHH_AGE, + + # Calculate birth year + birth_year = survey_year - surveyage, + + # Create weight variable with consistent name + weighting = WTS_M, + + # Create respondent ID + ont_id = row_number() # Create sequential ID if none exists + ) +``` + +## Step 6: Clean and validate the data + +Data cleaning is essential to ensure valid analyses: + +```{r cleaning, eval=FALSE} +# Remove cases with missing key variables +cleaned_data <- harmonized_data %>% + filter(!is.na(DHH_SEX)) %>% # Remove cases missing sex + filter(!is.na(surveyage)) %>% # Remove cases missing age + filter(surveyage >= 12) %>% # Include only respondents aged 12+ + filter(!is.na(weighting)) # Remove cases missing weights + +# Recode sex to match CSHM requirements (M/F) +cleaned_data <- cleaned_data %>% + mutate(sex = ifelse(DHH_SEX == 1, "M", "F")) +``` + +## Step 7: Check variable distributions + +Verify that the harmonization worked correctly by checking key variable distributions: + +```{r check-distributions, eval=FALSE} +# Check smoking status distribution +cleaned_data %>% + count(SMKDSTY) %>% + mutate( + label = case_when( + SMKDSTY == 1 ~ "Daily smoker", + SMKDSTY == 2 ~ "Occasional smoker", + SMKDSTY == 3 ~ "Former daily smoker", + SMKDSTY == 4 ~ "Former occasional smoker", + SMKDSTY == 5 ~ "Never smoker", + TRUE ~ "Unknown" + ), + percentage = 100 * n / sum(n) + ) %>% + arrange(SMKDSTY) + +# Check distribution by cycle +cleaned_data %>% + group_by(cycle) %>% + count() %>% + mutate(percentage = 100 * n / sum(n)) + +# Check age distribution +cleaned_data %>% + mutate(age_group = cut(surveyage, + breaks = c(12, 20, 30, 40, 50, 60, 70, 80, 999), + labels = c("12-19", "20-29", "30-39", "40-49", + "50-59", "60-69", "70-79", "80+"))) %>% + count(age_group) %>% + mutate(percentage = 100 * n / sum(n)) +``` + +# Save the processed data + +Once your data is harmonized and validated, save it for future use: + +```{r save-data, eval=FALSE} +# Save the processed data +saveRDS(cleaned_data, file.path(data_path, "harmonized_cchs_data.rds")) +``` + +# Additional considerations + +## Variable mapping challenges + +CCHS variables may not always harmonize cleanly. Here are some common challenges and solutions: + +1. **Variable availability**: Not all variables are available in all cycles. Check which cycles include your variables of interest. + +2. **Coding differences**: Response codes may differ across cycles, even after harmonization. Verify code mappings using `cchsflow` documentation. + +3. **Skip patterns**: Survey skip patterns have changed over time, affecting the population asked certain questions. + +4. **Variable granularity**: Some cycles may have more detailed responses than others. Harmonization usually adopts the least granular version. + +## Working with secure environments + +When working in Statistics Canada Research Data Centres (RDCs) or other secure environments: + +1. Use relative file paths or configuration files to manage data locations +2. Avoid storing large intermediate files if storage is limited +3. Follow the RDC's guidelines for output review +4. Consider batch processing if interactive sessions are limited + +# Next steps + +After harmonizing your CCHS data, you can proceed to: + +1. [Process smoking variables](processing-cchs-data.qmd) in more detail +2. Begin [APC modeling](reproducing-manuel-study.qmd) using the harmonized data + +# References + +Canadian Community Health Survey (CCHS) - Annual Component. Statistics Canada. + +Onysko, J., & MacKenzie, A. (2015). The cchsflow R package: Standardizing variables across CCHS cycles. Statistics Canada. \ No newline at end of file diff --git a/docs/how-to/generating-histories.qmd b/docs/how-to/generating-histories.qmd new file mode 100644 index 0000000..cdb06b5 --- /dev/null +++ b/docs/how-to/generating-histories.qmd @@ -0,0 +1,40 @@ +--- +title: "Generating smoking histories" +subtitle: "Creating synthetic smoking histories from APC model results" +--- + +# Generating smoking histories + +This guide explains how to generate synthetic smoking histories using the results from the Age-Period-Cohort model. + +*This page is under development. Content coming soon.* + +## Overview + +After fitting the APC model, you can generate complete smoking histories for simulated individuals. These histories can then be used in microsimulation models of smoking-related diseases. + +## Simulation process + +The simulation process involves: + +1. Creating a population with defined birth cohorts +2. Simulating smoking initiation based on age-specific probabilities +3. Simulating cessation for those who initiate +4. Recording complete lifetime smoking histories + +## Example code + +```r +# Example code (placeholder) +# generate_smoking_histories <- function(n_people = 10000, birth_cohort_range = 1920:2000) { +# # Simulation code would go here +# } +``` + +## Validation + +It's important to validate the generated smoking histories against: + +1. Historical smoking prevalence data +2. Age-specific initiation patterns +3. Duration of smoking patterns \ No newline at end of file diff --git a/docs/how-to/index.qmd b/docs/how-to/index.qmd new file mode 100644 index 0000000..68c86b7 --- /dev/null +++ b/docs/how-to/index.qmd @@ -0,0 +1,12 @@ +--- +title: "How-to guides" +--- + +This section provides practical instructions for specific tasks with CSHM: + +- [Processing CCHS data](processing-cchs-data.qmd): How to process and prepare CCHS data +- [Running the APC model](running-apc-model.qmd): How to set up and run the APC model +- [Generating smoking histories](generating-histories.qmd): How to generate complete smoking histories +- [Validating results](validating-results.qmd): How to validate model results against reference data + +Use this section when you need to accomplish specific tasks with CSHM. \ No newline at end of file diff --git a/docs/how-to/integration.qmd b/docs/how-to/integration.qmd new file mode 100644 index 0000000..17551ee --- /dev/null +++ b/docs/how-to/integration.qmd @@ -0,0 +1,36 @@ +--- +title: "Integrating with other models" +subtitle: "Using CSHM outputs in broader health and policy models" +--- + +# Integrating with other models + +This guide explains how to integrate the CSHM with other health and policy models. + +*This page is under development. Content coming soon.* + +## Overview + +The CSHM can serve as an input to various health policy and disease models, providing realistic smoking histories for population simulations. + +## Integration scenarios + +Common integration scenarios include: + +1. **Disease risk models**: Using smoking histories to predict cancer, cardiovascular, and respiratory disease risks +2. **Health economic evaluations**: Assessing the cost-effectiveness of tobacco control policies +3. **Population health forecasting**: Projecting future health outcomes based on smoking trends +4. **Policy simulations**: Modeling the impact of tobacco control interventions + +## Data exchange formats + +```r +# Example integration code (placeholder) +# export_smoking_histories <- function(histories, format = "csv") { +# # Export code would go here +# } +``` + +## Case studies + +*This section will include examples of successful integration with other models.* \ No newline at end of file diff --git a/docs/how-to/interpreting-results.qmd b/docs/how-to/interpreting-results.qmd new file mode 100644 index 0000000..8e0a4a3 --- /dev/null +++ b/docs/how-to/interpreting-results.qmd @@ -0,0 +1,44 @@ +--- +title: "Interpreting APC model results" +subtitle: "Understanding the output of Age-Period-Cohort models" +--- + +# Interpreting APC model results + +This guide explains how to interpret the results from the Age-Period-Cohort model. + +*This page is under development. Content coming soon.* + +## Overview + +After fitting the APC model, you'll need to interpret various coefficients and visualize the results to understand smoking patterns. + +## Key metrics + +The key metrics from the APC model include: + +1. Age effects - how smoking behavior varies with age +2. Period effects - how smoking behavior changes over time +3. Cohort effects - how birth cohorts differ in smoking patterns + +## Visualizing results + +Creating visualizations can help with interpretation: + +```r +# Example plot (placeholder) +# ggplot(apc_results, aes(x = age, y = age_effect)) + +# geom_line() + +# theme_minimal() + +# labs(title = "Age Effect on Smoking Initiation", +# x = "Age", +# y = "Log-odds of Initiation") +``` + +## Common interpretation challenges + +Some challenges in interpreting APC models include: + +1. The identification problem (linear dependency) +2. Distinguishing between the three temporal effects +3. Interpreting interaction effects \ No newline at end of file diff --git a/docs/how-to/processing-cchs-data.qmd b/docs/how-to/processing-cchs-data.qmd new file mode 100644 index 0000000..6851253 --- /dev/null +++ b/docs/how-to/processing-cchs-data.qmd @@ -0,0 +1,201 @@ +--- +title: "Processing CCHS data" +--- + +This guide explains how to process Canadian Community Health Survey (CCHS) data for use with the CSHM. + +## Overview + +The Canadian Community Health Survey (CCHS) is conducted by Statistics Canada and collects information on health status, health care utilization, and health determinants for the Canadian population. For CSHM, we're particularly interested in the smoking-related variables, which need to be harmonized across different survey cycles. + +## Obtaining CCHS data + +CCHS data can be accessed through: + +1. **Statistics Canada Research Data Centres (RDCs)**: For researchers who need access to the detailed microdata +2. **Public Use Microdata Files (PUMFs)**: Available through academic institutions +3. **Sample files**: For demonstration purposes, sample datasets are included with this package + +For this guide, we'll assume you have access to CCHS data files for the following cycles: + +- CCHS 2001 (Cycle 1.1) +- CCHS 2003 (Cycle 2.1) +- CCHS 2005 (Cycle 3.1) +- CCHS 2007-2008 +- CCHS 2009-2010 +- CCHS 2011-2012 +- CCHS 2013-2014 +- And optionally newer cycles + +## Step 1: Loading CCHS data + +First, load the CCHS data files: + +```r +# Load required packages +library(cshm) +library(dplyr) +library(cchsflow) # For harmonizing CCHS variables + +# Path to your data files (modify as needed) +cchs_files <- c( + "path/to/cchs2001.rds", + "path/to/cchs2003.rds", + "path/to/cchs2005.rds", + "path/to/cchs2007_2008.rds", + "path/to/cchs2009_2010.rds", + "path/to/cchs2011_2012.rds", + "path/to/cchs2013_2014.rds" +) + +# Load and combine CCHS datasets +cchs_data <- list() +for (i in seq_along(cchs_files)) { + cchs_data[[i]] <- readRDS(cchs_files[i]) +} + +# Combine datasets (assuming they have compatible structures) +# In practice, you may need more complex data preparation +combined_cchs <- bind_rows(cchs_data) +``` + +## Step 2: Harmonizing variables across cycles + +CCHS variable names have changed across cycles. We use the `cchsflow` package to harmonize them: + +```r +# List of smoking-related variables needed for CSHM +smoking_vars <- c( + "SMK_01A", # In lifetime, smoked 100 or more cigarettes + "SMK_202", # Current smoking status + "SMKDSTY", # Type of smoker + "SMKG01C_cont", # Age smoked first cigarette + "SMKG203_cont", # Age started smoking daily (daily smokers) + "SMKG207_cont", # Age started smoking daily (former daily smokers) + "SMK_09A_cont", # When stopped smoking daily (former daily) + "SMKG09C", # Years since stopped smoking daily + "SMK_204", # Number of cigarettes smoked daily (daily smokers) + "SMK_208", # Number of cigarettes smoked daily (former daily smokers) + "SMK_05B", # Number of cigarettes smoked daily (occasional smokers) + "SMK_05C" # Number of days smoked in past month (occasional smokers) +) + +# Demographic variables +demographic_vars <- c( + "DHH_SEX", # Sex of respondent + "DHH_AGE", # Age of respondent + "WTS_M" # Survey weight +) + +# Combine all variables +all_vars <- c(smoking_vars, demographic_vars) + +# Harmonize variables using cchsflow +harmonized_data <- rec_with_table( + combined_cchs, + all_vars +) +``` + +## Step 3: Creating derived variables + +Some variables need to be derived for the CSHM: + +```r +# Create survey date +harmonized_data <- harmonized_data %>% + mutate( + # Convert survey year and month to a date + survey_year = as.numeric(substr(as.character(SAMPLEID), 1, 4)), + survey_month = as.numeric(substr(as.character(SAMPLEID), 5, 6)), + cchsbdate = as.Date(paste(survey_year, survey_month, "15", sep = "-")) + ) + +# Calculate additional derived variables +harmonized_data <- harmonized_data %>% + mutate( + # Age of first cigarette (can be NA for non-smokers) + agefirst = SMKG01C_cont, + + # Survey age (age at time of survey) + surveyage = DHH_AGE, + + # Birth cohort (year) + birth_year = year(cchsbdate) - surveyage, + + # Create weighting variable + weighting = WTS_M, + + # Respondent ID + ont_id = PERSONID + ) +``` + +## Step 4: Data cleaning and validation + +Check for data quality issues and prepare the final dataset: + +```r +# Remove cases with missing key variables +cleaned_data <- harmonized_data %>% + filter(!is.na(DHH_SEX)) %>% # Remove cases missing sex + filter(!is.na(surveyage)) %>% # Remove cases missing age + filter(surveyage >= 12) %>% # Include only respondents aged 12+ + filter(!is.na(weighting)) # Remove cases missing weights + +# Recode sex to match CSHM requirements (M/F) +cleaned_data <- cleaned_data %>% + mutate(sex = ifelse(DHH_SEX == 1, "M", "F")) + +# Save the processed data +saveRDS(cleaned_data, "harmonized_cchs_data.rds") +``` + +## Step 5: Verify variable distributions + +It's important to check the distributions of key variables to ensure the harmonization worked as expected: + +```r +# Check smoking status distribution +smoking_distribution <- cleaned_data %>% + count(SMKDSTY) %>% + mutate( + label = case_when( + SMKDSTY == 1 ~ "Daily smoker", + SMKDSTY == 2 ~ "Occasional smoker", + SMKDSTY == 3 ~ "Former daily smoker", + SMKDSTY == 4 ~ "Former occasional smoker", + SMKDSTY == 5 ~ "Never smoker", + TRUE ~ "Unknown" + ), + percentage = 100 * n / sum(n) + ) + +print(smoking_distribution) + +# Check age distribution +age_distribution <- cleaned_data %>% + mutate(age_group = cut(surveyage, + breaks = c(12, 20, 30, 40, 50, 60, 70, 80, 999), + labels = c("12-19", "20-29", "30-39", "40-49", + "50-59", "60-69", "70-79", "80+"))) %>% + count(age_group) %>% + mutate(percentage = 100 * n / sum(n)) + +print(age_distribution) +``` + +## Next steps + +After processing the CCHS data, you can proceed to: + +1. [Analyze smoking initiation patterns](../tutorials/basic-usage.qmd) +2. [Run the Age-Period-Cohort model](running-apc-model.qmd) + +## Common issues and solutions + +**Missing data in key variables**: If you encounter high levels of missing data in key smoking variables, check whether the variables were included in all survey cycles. Some variables may be unavailable in certain cycles. + +**Inconsistent variable coding**: Despite harmonization, some variables may have inconsistent coding across cycles. Always check the value distributions before proceeding with analysis. + +**Survey design effects**: CCHS uses a complex survey design. For proper population estimates, use the survey weights provided and consider the design effect in variance estimation. \ No newline at end of file diff --git a/docs/how-to/reproducing-ontario-study.qmd b/docs/how-to/reproducing-ontario-study.qmd new file mode 100644 index 0000000..ec375e9 --- /dev/null +++ b/docs/how-to/reproducing-ontario-study.qmd @@ -0,0 +1,303 @@ +--- +title: "Reproducing the Canadian Smoking Histories Model" +subtitle: "A Guide to Variable Derivation and Analysis" +author: "CSHM Development Team" +date: "Last Updated: `r Sys.Date()`" +format: + html: + toc: true + toc-depth: 3 + number-sections: true + theme: cosmo + code-fold: show +execute: + echo: true + warning: false + message: false +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE) +# Load required packages +library(dplyr) +library(ggplot2) +# If you have installed the cshgm package, uncomment this: +# library(cshm) +``` + +# Introduction + +This document provides a guide to reproducing the Canadian Smoking Histories Model as described in @Manuel_HR_2020. The model uses Age-Period-Cohort (APC) analysis to estimate smoking initiation and cessation probabilities across different birth cohorts, which are then used to generate complete smoking histories. + +## Purpose of This Guide + +This guide aims to: + +1. Describe the key variables needed from the Canadian Community Health Survey (CCHS) +2. Show how to derive the necessary variables for the model +3. Provide R code implementations of the original SAS procedures +4. Explain how to interpret and validate the results + +## Original Study Overview + +The original study [@Manuel_HR_2020] developed a model to: + +- Generate individual smoking histories for a simulated population +- Estimate smoking prevalence across different time periods and birth cohorts +- Model both smoking initiation and cessation probabilities +- Account for age, period, and cohort effects in smoking behavior + +The approach used data from the Canadian Community Health Survey to construct smoking histories and applied statistical modeling to estimate probabilities of starting and quitting smoking. + +# Required Data Sources + +## Canadian Community Health Survey (CCHS) + +The CCHS is the primary data source for this analysis. Multiple cycles have been conducted: + +- CCHS 2001 (Cycle 1.1) +- CCHS 2003 (Cycle 2.1) +- CCHS 2005 (Cycle 3.1) +- CCHS 2007-2008 +- CCHS 2009-2010 +- CCHS 2011-2012 +- CCHS 2013-2014 +- CCHS 2015-2016 +- CCHS 2017-2018 + +## Variable Harmonization Across Cycles + +CCHS variable names have changed across cycles. We use the cchsflow package for variable harmonization: + +```{r harmonization-example, eval=FALSE} +# Example of harmonizing CCHS data using cchsflow +# library(cchsflow) +# harmonized_data <- rec_with_table( +# cchs_data, +# c("SMK_01A", "SMKG01C_cont", "SMKG203_cont", "SMK_204") +# ) +``` + +# Key Variables for Smoking History + +## Core Smoking Status Variables + +The following variables are critical for determining smoking status: + +| Harmonized Variable | Description | Values | +|----------------------------------|---------------------|-----------------| +| SMK_01A | In lifetime, smoked 100 or more cigarettes | 1=Yes, 2=No | +| SMK_202 | Current smoking status | 1=Daily, 2=Occasional, 3=Not at all | +| SMKDSTY | Type of smoker | 1=Daily, 2=Occasional, 3=Former daily, 4=Former occasional, 5=Never | + +## Smoking Initiation Variables + +Variables measuring when someone started smoking: + +| Harmonized Variable | Description | Type | +|-----------------------------------|---------------------|----------------| +| SMKG01C_cont | Age smoked first cigarette | Continuous | +| SMKG203_cont | Age started smoking daily (daily smokers) | Continuous | +| SMKG207_cont | Age started smoking daily (former daily smokers) | Continuous | + +## Smoking Cessation Variables + +Variables measuring when someone quit smoking: + +| Harmonized Variable | Description | Type | +|-----------------------------------|---------------------|----------------| +| SMK_09A_cont | When stopped smoking daily (former daily) | Continuous | +| SMKG09C | Years since stopped smoking daily (former daily) | Categorical | + +## Smoking Intensity Variables + +Variables measuring how much someone smokes/smoked: + +| Harmonized Variable | Description | Type | +|-----------------------------------|---------------------|----------------| +| SMK_204 | Number of cigarettes smoked daily (daily smokers) | Continuous | +| SMK_208 | Number of cigarettes smoked daily (former daily smokers) | Continuous | +| SMK_05B | Number of cigarettes smoked daily (occasional smokers) | Continuous | +| SMK_05C | Number of days smoked in past month (occasional smokers) | Continuous | + +## Demographic Variables + +Variables used for cohort assignment and stratification: + +| Harmonized Variable | Description | Type | +|---------------------|-------------------|-------------| +| DHH_SEX | Sex of respondent | Categorical | +| cchsbdate | CCHS survey date | Date | + +# Variable Derivation for Age-Period-Cohort Analysis + +## Smoking Initiation Process + +### Step 1: Identify Smoking Initiators + +The first step is to identify individuals who have initiated smoking, defined as having smoked at least 100 cigarettes in their lifetime. + +```{r smoking-initiators, eval=FALSE} +# Using our process_smoking_initiation function +inits_male <- process_smoking_initiation(harmonized_data, sex = "M") +inits_female <- process_smoking_initiation(harmonized_data, sex = "F") +``` + +The function shown above performs the following steps: + +1. Filters respondents by sex +2. Identifies never-smokers (SMK_01A = 2) and sets their initiation age to 101 (a flag value) +3. Creates an initiation indicator (init=1 for smokers, init=0 for never-smokers) +4. Filters to include only those born in 1920 or later +5. Creates a subset containing only those who initiated smoking +6. Applies age filter (age \>= 8) +7. Calculates period (year of initiation) as cohort + age +8. Returns a dataset with ont_id, weighting, age, cohort, period, and init variables + +### Step 2: Create Population Denominators + +To calculate initiation rates, we need the population at risk of initiation at each age, period, and cohort combination. + +```{r denominator-example, eval=FALSE} +# Example function for creating denominators (not fully implemented yet) +create_initiation_denominators <- function(dataset, sex = "M") { + # Function implementation would go here + # This creates population counts by age, period, and cohort +} +``` + +## Smoking Cessation Process + +### Step 1: Identify Smoking Cessation + +Similarly, we identify individuals who have quit smoking and when they quit. + +```{r cessation-example, eval=FALSE} +# Example function for processing cessation data +process_smoking_cessation <- function(dataset, sex = "M") { + # Function implementation would follow similar steps to initiation + # but with cessation-specific criteria +} +``` + +## Age-Period-Cohort Modeling + +The APC modeling approach uses splines to model age, period, and cohort effects: + +1. Natural cubic splines are constructed for age, period, and cohort +2. These splines are used in a generalized linear model with binomial errors +3. Survival probabilities are used to adjust for differential mortality +4. Separate models are fit for males and females + +```{r apc-splines, eval=FALSE} +# Example of creating splines for APC modeling +create_age_splines <- function(ages, knots) { + # Function to create natural cubic splines for ages + # Implementation would go here +} +``` + +# Applying the Model + +## Estimating Smoking Probabilities + +Once the APC models are fitted, they can be used to predict: + +1. Initiation probabilities by age, period, and cohort +2. Cessation probabilities by age, period, and cohort + +```{r predict-example, eval=FALSE} +# Example of predicting initiation probabilities +predict_initiation <- function(age, period, cohort, sex) { + # Implementation would use fitted coefficients from APC model +} +``` + +## Generating Smoking Histories + +Complete smoking histories can be generated using: + +1. A microsimulation approach based on the estimated probabilities +2. Monte Carlo methods to introduce appropriate stochasticity + +```{r history-example, eval=FALSE} +# Example of generating a smoking history +generate_smoking_history <- function(birth_year, sex) { + # Simulation implementation would go here +} +``` + +# Validation and Calibration + +## Comparing to Historical Data + +Model validation involves comparing the generated smoking histories to: + +1. Historical smoking prevalence data +2. Known patterns in smoking behavior by birth cohort +3. Other published estimates of smoking trends + +```{r validation-example, eval=FALSE} +# Example of validating model results +validate_smoking_prevalence <- function(simulated_data, reference_data) { + # Validation code would go here +} +``` + +## Calibration Procedures + +If necessary, model calibration can be performed by: + +1. Adjusting the baseline rates +2. Modifying the period effects +3. Fine-tuning cohort-specific parameters + +# Implementation Example + +Below is a simplified example of processing smoking initiation data using the function we've developed: + +```{r implementation-example, eval=FALSE} +# Create simulated data for testing +test_data <- data.frame( + ont_id = 1001:1010, + sex = rep(c("M", "F"), 5), + SMK_01A = c(1, 2, 1, 1, 1, 2, 1, 2, 1, 1), # 1=Yes, 2=No to 100+ cigarettes + agefirst = c(16, NA, 12, 21, 7, NA, 18, NA, 15, 22), + cchsbdate = as.Date(c("2001-06-15", "2001-07-20", "2001-08-10", + "2001-09-05", "2001-10-25", "2002-01-15", + "2002-02-20", "2002-03-10", "2002-04-15", "2002-05-20")), + weighting = round(runif(10, 100, 300)) +) + +# Process the initiation data +male_init <- process_smoking_initiation(test_data, sex = "M") +female_init <- process_smoking_initiation(test_data, sex = "F") + +# Examine the results +print(male_init) +print(female_init) +``` + +# Conclusion + +This guide has provided an overview of how to: + +1. Prepare CCHS data for smoking history analysis +2. Derive the key variables needed for APC modeling +3. Implement the core components of the Canadian Smoking Histories Model +4. Apply and validate the model + +Further development is ongoing to complete the full implementation of the model in R, including additional validation against historical data and extensions to incorporate more recent survey cycles. + +# References + +::: {#refs} +::: + +# Appendix: Additional Resources + + +For a complete mapping of variables across CCHS cycles, refer to the included variable sheets: + +- `worksheets/cshm-variables.csv` +- `worksheets/cshm-variable-details.csv` \ No newline at end of file diff --git a/docs/how-to/running-apc-model.qmd b/docs/how-to/running-apc-model.qmd new file mode 100644 index 0000000..b1b1cfb --- /dev/null +++ b/docs/how-to/running-apc-model.qmd @@ -0,0 +1,36 @@ +--- +title: "Running the APC model" +subtitle: "Applying Age-Period-Cohort modeling to smoking data" +--- + +# Running the APC model + +This guide explains how to run the Age-Period-Cohort model on processed CCHS data. + +*This page is under development. Content coming soon.* + +## Overview + +The Age-Period-Cohort (APC) model is a statistical approach used to disentangle the effects of age, time period, and birth cohort on health behaviors like smoking. + +## Prerequisites + +Before running the APC model, make sure you have: + +1. Harmonized and processed CCHS data +2. Derived all necessary variables for smoking initiation and cessation + +## Implementation steps + +The basic workflow includes: + +1. Preparing spline terms for age, period, and cohort +2. Fitting generalized linear models +3. Predicting probabilities for all age-period-cohort combinations + +## Next steps + +For more information on interpreting and using the model results, see: + +- [Interpreting APC results](interpreting-results.qmd) +- [Generating smoking histories](generating-histories.qmd) \ No newline at end of file diff --git a/docs/how-to/validating-results.qmd b/docs/how-to/validating-results.qmd new file mode 100644 index 0000000..bcc3e0d --- /dev/null +++ b/docs/how-to/validating-results.qmd @@ -0,0 +1,41 @@ +--- +title: "Validating model results" +subtitle: "Assessing the accuracy of CSHM predictions" +--- + +# Validating model results + +This guide explains how to validate the results from the Canadian Smoking Histories Model. + +*This page is under development. Content coming soon.* + +## Overview + +Validation is a critical step in ensuring that the CSHM accurately reflects historical smoking patterns and can generate plausible future scenarios. + +## Validation approaches + +Several approaches can be used for validation: + +1. **Historical comparison**: Comparing model-generated prevalence with historical survey data +2. **Out-of-sample testing**: Reserving some data for validation +3. **Cross-validation**: Testing the model on different subsets of data +4. **Expert review**: Having subject matter experts review the results + +## Example validation + +```r +# Example validation code (placeholder) +# compare_prevalence <- function(simulated_data, reference_data) { +# # Validation code would go here +# } +``` + +## Interpreting validation results + +When interpreting validation results, consider: + +1. Absolute and relative differences between model and reference data +2. Systematic patterns in discrepancies +3. Sensitivity to key parameters +4. Validation across different demographic groups \ No newline at end of file diff --git a/docs/images/workflow-diagram-ascii.txt b/docs/images/workflow-diagram-ascii.txt new file mode 100644 index 0000000..0f57459 --- /dev/null +++ b/docs/images/workflow-diagram-ascii.txt @@ -0,0 +1,14 @@ ++--------------------+ +--------------------+ +--------------------+ +| | | | | | +| Data Loading |--->| Data Harmonization|--->| Variable Derivation| +| (CCHS Cycles) | | (cchsflow) | | (Age, Cohort, etc) | +| | | | | | ++--------------------+ +--------------------+ +--------------------+ + | + v ++--------------------+ +--------------------+ +--------------------+ +| | | | | | +| Model Validation |<---| Smoking History |<---| APC Modeling | +| (Calibration) | | Generation | | (Splines) | +| | | | | | ++--------------------+ +--------------------+ +--------------------+ \ No newline at end of file diff --git a/docs/images/workflow-diagram.png b/docs/images/workflow-diagram.png new file mode 100644 index 0000000..2d691c7 --- /dev/null +++ b/docs/images/workflow-diagram.png @@ -0,0 +1,15 @@ +iVBORw0KGgoAAAANSUhEUgAAAlgAAAGQAQMAAABI+4zbAAAABlBMVEX///8AAABVwtN+AAADr0lEQVR42u2czWsTQRjGn2yT +ZrNJurVppcVWKK2i+FG0iCiKglA/QBD8ogjeRFARby14UTzowYNHL3pQb+JB0YNe/Ae8Ka3U+lFrk822abvbZpPd8bA7u7NJ +NtN9Ztg52PfUzPKS95nf7rz7vi8JYBiGYRiGYRiGYRiGYRiGYRiGYRiGYRiGYRiGYRiGYRiGYRiGYRiGYRhm25KOHen5+Pj2 +pNcOKWd2ydCFmXRB2I6QFGkqSoVUUZRKnkrD/6pUf1arB5/eGQMXjmTCuy7WRhZrNhZTxn9rSulK9d7HzwMPTtT/XUK20i+E +kGSjLevZyvWPj/oPf1AHBu87o9Pp9KcQJbm9ZTvbP7s0jx9M5Q/fd0YdKwxBo+y2c3jJMlvcQKbhXL2/5+6Fy4N3JhzKjpJS +lEW+uHmzp0vCXPlDVx98ufiufOmcNTDqTCGmSMlc0+yO2sNKdx0YOJ5IT/QvO5RiHcGCWFGLDZtdOjJeTgUXHcnxLtbQKhuG +rTG7OsK9q4dv29mJZAMXRxC+tlvrzUYeXJ1/9XrKfjgTDKBU7V3k+5r/+MOlxa/2tseCAJQs/VEfJWs/7G0vBgAowPVNGWQc +xfBqu9HhAFylbH30m5adRALYfql+0/KJgLl/d7HoEoDfLFu6sbGq+H8t2bwWx7+LLVrvVdQPl7Gy+Y/ELRf1w6UE/nblIhUO +ApeJKlTWxwEY39S2qQOomk0OJTJNd2JVRbG+y6Vvg3CtpKNcWkdLc2mhyxJVjV6WkLIuXJ0sFZ3svixR0ujLkuF+LZlRCJal +Gq1QojjK1otWxnG57lWKLrpCSOZ+5+Wy9bqVdLsVk1zfrDDplcwzxQwh+S2FPfvcMkp5k47jXC5nHH89z2UcFrPVG6K0Fc9a +G5m6zOVcL5erzzO1YpSMGWc1wk9Xw1zqeiZhzTu1shSk1FPJlDOPk9qSh1LPlrNJrpvLlY3OZcLTOCzbXJ5v9cbyPJccPpdt +83nBzpfn5YL7PO9K1e2OmuSp5A1JXkq+UchHSZcuVKv5S+mq6VfJSC3y40j7VSrhtFQCl+Oo9U7i9KukeCl5Q5KXkn+lqBVC +Hkp6QeaYK/SG20dJRKSoiJTPRaYERzm9KqpH5ZdXF8KE4cDZYnbcC2dLcbI82SIk2RKnuXCLkNwiJOcI/yVnqxzn0ufnKGdL +rZTTwdkCfZgSBThtAj/ICZqnDcMwDMMwDMMwDMMwDMMwDMMwDMMwDMMwDMMwDMMwDMMwDMMwDMMwDPOf+gUBomcNnZ8AbAAA +AABJRU5ErkJggg== diff --git a/docs/index.qmd b/docs/index.qmd new file mode 100644 index 0000000..96d3a67 --- /dev/null +++ b/docs/index.qmd @@ -0,0 +1,61 @@ +--- +title: "Canadian Smoking Histories Model" +subtitle: "An R implementation of Age-Period-Cohort smoking behavior analysis" +--- + +# Canadian Smoking Histories Model + +This website provides information about using and extending the Canadian Smoking Histories Model (CSHM) documentation for smoking behavior analysis and simulation. + +## About CSHM + +The Canadian Smoking Histories Model is an R implementation of the Age-Period-Cohort (APC) modeling approach to smoking behavior. It builds upon the work of Holford and extends the methodology developed in the Ontario SHGM study (2020). + +The model analyzes smoking initiation and cessation patterns from Canadian Community Health Survey (CCHS) data, accounting for age, period, and cohort effects. With this foundation, it can generate synthetic smoking histories for population health modeling. + +## Key features + +- Processes and harmonizes data from multiple CCHS cycles +- Implements APC modeling using natural cubic splines +- Estimates smoking initiation and cessation probabilities +- Generates complete smoking histories for simulated populations +- Provides validation against historical data +- Works in various computing environments, including secure settings + +## Getting started + +New users should start with these resources: + +- [Getting started guide](tutorials/getting-started.qmd) - Introduction to the package +- [Basic usage tutorial](tutorials/basic-usage.qmd) - Common analysis tasks +- [Processing CCHS data](how-to/processing-cchs-data.qmd) - Working with survey data + +## Documentation structure + +This documentation is organized into four main sections: + +1. **Tutorials** - Step-by-step lessons to get started +2. **How-to guides** - Practical instructions for specific tasks +3. **Explanation** - Conceptual discussions of methodology +4. **Reference** - Technical details of functions and data + +## Project status + +The CSHM is currently under active development. Contributions, bug reports, and feature requests are welcome through the [GitHub repository](https://github.com/Big-Life-Lab/cshm-dev). + +## Citation + +If you use the CSHM in your research, please cite: + +``` +CSHM Development Team (2024). Canadian Smoking Histories Model: +An R implementation of Age-Period-Cohort smoking behavior analysis. +``` + +## Licence + +The code in this repository is licensed under the [MIT License](../LICENSE). + +## Acknowledgments + +This project builds upon the foundational work of Dr. Ted Holford at Yale University and the Ontario SHGM study team at Statistics Canada. \ No newline at end of file diff --git a/docs/protocol/full-protocol.qmd b/docs/protocol/full-protocol.qmd new file mode 100644 index 0000000..d1d0e7f --- /dev/null +++ b/docs/protocol/full-protocol.qmd @@ -0,0 +1,359 @@ +--- +title: "A Canadian Smoking Histories Model: a study protocol to generate smoking cohorts from 1940 and project to 2050" +status: "Draft" +version-summary: + date: "2026-02-24" + version: "0.2.5" +version-history: + - version: "0.2.0" + date: "2026-03-09" + description: "Update to include reporting guideline placeholders. Added potential measurement error and sensitivity analyses. Equity subgroup analysis removed from primary analysis. Added total cigarettes smoked in Canada by year as an expected output. Added sensitivity analyses for spline type (NSP vs RCS) and mortality adjustment method (MPoRT vs Peto)." + - version: "0.1.1" + date: "2025-05-22" + description: "Detailed protocol update including APC knots, MPoRT, and equity strategy." + - version: "0.1.0" + date: "2025-03-27" + description: "Initial 1-page outline." +--- + +[{{< meta version-summary.date >}}]{.date} \| Version: [{{< meta version-summary.version >}}]{.version} + +# Abstract + +> STROBE: Clear summary of study components; ISPOR-SMDM: Overview of model purpose + +**Background** + +Understanding historical and projected smoking behaviour across Canadian populations informs the evaluation of tobacco control policies and smoking-attributable disease burden. While the U.S. Smoking History Generator (SHG) supports cancer risk modelling, a pan-Canadian equivalent does not yet exist. + +**Objectives** + +This study aims to develop a Canadian Smoking Histories Model (CSHM) that reconstructs smoking patterns by birth cohort, sex, and province from 1965 to 2023, with projections to 2050. Specifically, we will: (1) estimate historical and current smoking initiation, cessation, and intensity; (2) assess regional and temporal variations across all provinces and territories; (3) project future trends under status quo conditions; and (4) provide an open-access, reproducible model for population health modelling. + +**Methods** + +Using harmonized data from over one million respondents in the Canadian Community Health Survey (2001--2023), we will apply age-period-cohort models to estimate smoking initiation, cessation, and intensity. Mortality-adjusted estimates using the MPoRT algorithm will address survival bias. Estimates will be produced for each province and territory, and projections will extend to 2050. + +**Expected Outcomes** + +The model will be publicly accessible and used for policy evaluation and disease modelling in Canada, including projecting future smoking patterns and evaluating historic or proposed tobacco policy. + +:::: {.section-body line-numbers="continuous"} +::: page-break +::: + +# 1. Background + +Smoking behaviour varies across birth cohorts in ways that affect projections of tobacco-attributable disease and the evaluation of tobacco control policies in Canada. While smoking prevalence has declined since the mid-20th century, tobacco remains the leading cause of preventable disease and death in Canada, killing approximately 48,000 Canadians annually and costing over $11 billion per year in healthcare, lost productivity, and other costs [@HealthCanada_SmokingMortality_2024; @CSUCH_2023]. The smoking health burden is concentrated among lower-income and other equity-deserving populations, with lung cancer incidence nearly three times higher among Canadians with the lowest educational attainment [@mitra2015]. National trends mask heterogeneity across birth cohorts and provinces, driven by evolving social norms and regional tobacco control measures. + +The Smoking History Generator (SHG) framework, developed by the National Cancer Institute (NCI) CISNET Smoking Working Group, characterizes these patterns in the United States using Age-Period-Cohort (APC) models [@Holford_AJPM_2014]. This approach was adapted for Ontario [@Manuel_HR_2020], demonstrating that Canadian Community Health Survey (CCHS) data can be used to reconstruct birth-cohort-specific smoking histories from 1965 to 2013. A pan-Canadian equivalent covering all provinces and territories has not yet been developed. + +Three gaps motivate the CSHM. First, Canada’s tobacco control landscape occurs at both the national and regional levels, with provincial variation in taxation, smoke-free legislation, and cessation support. Second, Canadian smoking initiation and cessation patterns differ from those in other countries, particularly in the timing of peak prevalence and the rate of decline among younger cohorts. Third, Canadian health policy models (e.g., OncoSim, POHEM, SimSmoke) rely on behaviour transition parameters from the 1994--2004 National Population Health Survey (NPHS), now over 20 years old, with no planned replacement [@hennessy2015; @gauvreau2017; @chaiton2021]; these parameters no longer reflect contemporary patterns, particularly among younger cohorts, immigrant populations, and lower-income groups. The CCHS [@beland2002], with over 1.4 million respondents and annual data collection since 2001, provides an unparalleled opportunity to address this gap. The methods and infrastructure developed here will also expand knowledge for many countries facing the same challenge: large cross-sectional surveys but lacking population-based panel data [@kopasker2023; @vasquezlavin2022]. This study addresses these gaps with a unified, open-source framework for smoking history generation across all Canadian jurisdictions. + +# 2. Objectives + +This study will develop a Canadian Smoking Histories Model (CSHM) that describes smoking patterns by birth cohort, sex, and province from 1965 to 2023, with projections to 2050. Specifically, this study will: + +> Note: the starting date (1965) may need revision based on model performance. + +1. **Estimate historical and current smoking parameters:** Reconstruct rates of smoking initiation, cessation, and intensity (cigarettes per day) by birth cohort (1890--2030) for each province and territory. +2. **Examine regional and temporal variations:** Analyse how smoking patterns have evolved across Canadian jurisdictions in response to differing policy environments and social trends. +3. **Project future smoking prevalence:** Model future trends in smoking prevalence and related parameters through 2050 under status quo policy conditions. +4. **Develop an open-access model:** Create a publicly-accessible, reproducible R-based model that can be used and updated by researchers, policy analysts, and health system planners. + +The model will provide demographic and geographic estimates (by single year of age and birth cohort) to interface with existing population health models. Historical reconstruction will cover the period 1965--2023, with projections extending from 2024 to 2050. Analysis will be conducted at the provincial level, with national estimates derived from aggregated provincial data. + +# 3. Methods + +## 3.1 Overall study design + +This study uses a retrospective population-based simulation modelling approach to reconstruct and project smoking life-course trajectories for the Canadian population. We use pooled cross-sectional data from the Canadian Community Health Survey (CCHS) to estimate transition probabilities within an Age-Period-Cohort (APC) framework. + +> STROBE: Study design; ISPOR-SMDM: Model type + +The conceptual framework for the CSHM is structured as a discrete-time Markov state-transition model. The population is divided into three primary compartments: + +- **Never Smoker** (individuals who have smoked fewer than 100 cigarettes) +- **Current Smoker** (daily or occasional use) +- **Former Smoker** (quit for $\ge$ 1 year). + +Individuals transition between these states based on annual probabilities of **initiation** (Never to Current) and **cessation** (Current to Former). To ensure precision in tobacco "dose" estimation, the Current Smoker compartment is further characterized by smoking intensity (cigarettes per day). + +> ISPOR-SMDM: Model structure; STRESS: Conceptualization + +The APC framework is implemented to separate temporal trends into three distinct components: age effects (biological and developmental influences), period effects (influences such as policy shifts or social norms), and cohort effects (generational differences). This framework is used for three reasons: + +1. **Identifiability:** It addresses the fundamental APC identity ($cohort = period - age$) through constrained natural cubic splines, enabling the estimation of unique generational trends. +2. **Historical Reconstruction:** It allows for the back-calculation of smoking rates for birth cohorts, effectively using current survivors to understand historical patterns. +3. **Survival Bias Mitigation:** It provides a method to correct for differential mortality (the "healthy survivor" effect), ensuring that estimated historical initiation and cessation rates reflect the original population rather than only those who survived to be surveyed. + +> ISPOR-SMDM: Analytical approach; GATHER: Methods overview + +## 3.2 Data sources + +The primary data source for the CSHM is the Canadian Community Health Survey (CCHS), a national cross-sectional survey conducted by Statistics Canada. We will use all available survey cycles from 2001 to 2023. The CCHS employs a multistage stratified cluster design to provide representative estimates for the Canadian population aged 12 years and older, excluding individuals living on reserves, full-time members of the Canadian Forces, and institutionalized populations [@beland2002]. + +The study will use two distinct computing environments and data formats: + +1. **Development Environment (Public Use Microdata Files - PUMF):** Initial model development, coding, and internal validation will be performed using PUMF data (cycles 2001--2022). These files contain about 1 million respondents and are used for the open-source implementation of the model. Continuous variables in PUMF data (e.g., age at initiation) are often grouped; we will use midpoint-estimated pseudo-continuous values for these parameters. +2. **Production Environment (Master Files):** The final model parameters will be estimated using CCHS Master Files (2001--2023) available within Statistics Canada’s secure Regional Data Centres (RDCs). Master files provide exact continuous values for key parameters for all survey years, include age, age of smoking intitation, and age of smoking cessation. + +Secondary data sources for model calibration include: + +3. **Canadian Human Mortality Database (CHMD):** Age- and sex-specific mortality rates and life tables for Canada and all provinces, used to apply the MPoRT mortality adjustment and construct survival weights. The CHMD is the Canadian component of the Human Mortality Database and is maintained by the Département de démographie, Université de Montréal, in collaboration with Statistics Canada. Data are freely accessible at [www.bdlc.umontreal.ca/CHMD](http://www.bdlc.umontreal.ca/CHMD). National and provincial life tables will be extracted for the period 1921 to the most recent available year. + +See [Appendix C: Data availability and computational environment] for data access procedures for each data source used in this study. + +## 3.3 Exposure ascertainment + +We will use the `cchsflow` R package (version 3.0) to harmonize smoking-related variables across all CCHS cycles. This library provides a standardized metadata-driven approach to recoding survey responses into unified variables, ensuring consistency despite changes in survey questions and coding over time. + +Compared to the US National Health Interview Survey (NHIS) used in existing CISNET models, the CCHS provides more granular data on non-daily smoking. While the NHIS categorizes current smokers as "every day" or "some days," the CCHS captures more detailed information about occasional smokers. The NHIS has fewer annual respondents (approximately 27,000 for the NHIS versus 65,000 for the CCHS), but with an earlier start date for tobacco questions (1965 for NHIS versus 2001 for the CCHS) [@backinger2008]. The potential effect of these differences are more statistically stable earlier birth cohorts for NHIS, and greater statistical power for regional estimates using the CCHS. + +Key smoking parameters to be extracted and harmonized include: + +- **Smoking status:** Classified into six categories: daily, occasional (former-daily), occasional (never-daily), former-daily, former-occasional, and never smoker. The distinction between former-daily and never-daily occasional smokers allows for more precise characterization of the cessation process and tobacco "dose" over the life course. For the APC initiation and cessation models, these will be collapsed into Never, Current, and Former smokers. +- **Age at initiation:** The age at which the respondent first smoked a whole cigarette (`age_first_cigarette`) and the age at which they started smoking daily (`age_start_smoking`). In PUMF data, these are derived from categorical variables using midpoint imputation. +- **Time since cessation:** The number of years since the respondent last smoked (`time_quit_smoking`), used to calculate the age at cessation. +- **Smoking intensity:** The number of cigarettes smoked per day (CPD). Unlike the NHIS, the CCHS allows us to distinguish the intensity profiles of occasional smokers who were previously daily smokers from those who have always smoked occasionally. + +The following sociodemographic covariates will also be extracted for use in imputation models, descriptive analyses, and mortality adjustment: + +- **Age:** Continuous age at survey (`DHHGAGE_cont`), derived from grouped categorical responses in PUMF using midpoint imputation; exact continuous age available in Master files. +- **Sex:** Binary (`DHH_SEX`), available in all cycles. +- **Ethnicity:** In Master files, detailed ethnicity categories are available. In PUMF files, the analysis will use a binary white/non-white classification consistent with Manuel et al. (2020) [@Manuel_HR_2020]. +- **Immigration status:** Born in Canada vs. immigrant (`SDCFIMM`). Following Manuel et al. (2020), pre-immigration periods will be excluded from smoking history reconstruction for immigrants. In PUMF files, a binary Canadian-born/born outside Canada classification will be used; detailed immigration year is available in Master files only. +- **Education:** Three-category classification (less than high school, high school graduate, postsecondary graduate), used in imputation models. Note that education variables differ across cycles and between PUMF and Master files; harmonization will follow the `cchsflow` approach using `EDUDR03`. +- **Province:** Used for provincial stratification and regional imputation models (`GEOGPRV`). + +Inconsistent or biologically implausible responses (e.g., age at initiation greater than current age) will be identified and handled during the data cleaning stage. Missing data on smoking history parameters will be addressed using multiple imputation by chained equations (MICE), incorporating the sociodemographic and health-related predictors listed above. + +> STROBE: Statistical methods; GATHER: Data processing + +## 3.4 Analytical approach + +The CSHM uses a two-stage analytical framework. In the first stage, we estimate population-level smoking initiation and cessation rates from harmonized CCHS data using Age-Period-Cohort (APC) models. In the second stage, these estimated rates are used to simulate individual-level smoking histories for synthetic Canadian populations. + +### 3.4.1 Data preparation and imputation + +Analysis-ready datasets will be produced through a standardized pipeline. + +1. **Cleaning:** Distribution checks and truncation of extreme values for continuous variables (e.g., smoking intensity). +2. **Imputation:** Missing data on smoking status, initiation age, and cessation age will be addressed using Multiple Imputation by Chained Equations (MICE). The imputation model will include sociodemographic predictors (age, sex, province, education, income) and health status indicators. +3. **Descriptive statistics:** Baseline characteristics will be reported pre-imputation (Table 1a) and post-imputation (Table 1b). Tables 1 will include stratification for sex and survey year. Descriptive statistics will be examined for potential discontinuities across CCHS design eras (2001–2005, 2007–2014, 2015–2021, 2022+), which reflect major changes to the survey frame, recruitment, and collection mode [@gagne2017; @backinger2008]. Although smoking variables can be harmonized across cycles, changes to the sampling frame and mode may introduce measurement differences that are not fully correctable through harmonization alone [@chen2020joinpoint]. + +### 3.4.2 Age-period-cohort modelling + +Three separate APC models will be fitted by sex (men and women) to characterize smoking life-course trajectories: one for initiation, one for cessation, and one for smoking intensity (cigarettes per day). The primary analysis produces national estimates stratified by sex, as well as separate estimates for each province and territory. + +All models use constrained natural cubic splines to decompose temporal trends. Following the methodology of Holford et al. (2014), the fundamental APC identity is `cohort = period − age`. To address the identifiability problem, we apply constraints to the period effects, holding them constant beyond the observed data range. Period effects for initiation are held constant at the most recent observed values; period effects for cessation are similarly constrained. Cohort effects are assumed constant prior to 1920 and constant from 1985 forward, consistent with Manuel et al. (2020). + +Knot placement for the splines follows established standards: + +- **Age knots:** [10, 15, 20, 50, 60] +- **Period knots:** [1940, 1950, 1960, 1970, 1980] +- **Cohort knots:** [1930, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980] + +### 3.4.3 Smoking intensity analysis + +We will use a dual approach to characterize smoking intensity (cigarettes per day; CPD): + +1. **Simple descriptives:** We will first calculate mean CPD and intensity distributions by age, sex, and survey year. This descriptive analysis will identify broad temporal shifts and assess whether intensity has remained stagnant across cohorts, as observed in other jurisdictions such as Brazil [@Tam_AJPM_2023]. +2. **APC intensity model:** We will fit an APC model to estimate the expected CPD by birth cohort. These parameters will serve as the "tobacco dose" input for the simulation stage, allowing for the reconstruction of pack-year histories. For occasional smokers, we will apply a standardized CPD adjustment based on their reported frequency of use. + +### 3.4.4 Mortality adjustment + +To address survival bias (ever-smokers having lower survival to survey date than never-smokers), we will apply mortality adjustments using the Mortality Population Risk Tool (MPoRT) [@Manuel_HR_2020]. MPoRT weights are adjusted for age, sex, smoking status, years since quitting, and immigration status. For each respondent, the one-year probability of death for each historical year up to the survey date is calculated; the survival bias weight is the proportion of ever-smokers who would have died prior to the survey date. This adjustment ensures that the reconstructed historical prevalence reflects the original population rather than only the survivors, following the approach of Manuel et al. (2020) [@Manuel_HR_2020]. + +A sensitivity analysis will be conducted using the Peto approach — a constant mortality risk ratio by smoking status — consistent with the original Holford et al. (2014) US implementation [@Holford_AJPM_2014]. This quantifies the influence of the mortality adjustment method on historical prevalence estimates. + +> ISPOR-SMDM: Model structure; GATHER: Statistical methods + +CCHS sampling weights (`WTS_M` in Master files; equivalent PUMF weights) are applied throughout the analysis. In descriptive analyses, weights are used with the `{survey}` package to produce design-based estimates with bootstrap variance estimation. In the APC models, sampling weights serve as regression weights in the binomial logistic regression, following the pseudo-likelihood approach of Manuel et al. (2020) [@Manuel_HR_2020]: weighted events (numerator) and weighted person-years (denominator) are aggregated within each age-period-cohort cell before model fitting. The MPoRT survival correction adjusts respondent weights to account for differential mortality; these adjusted weights are then used as the APC regression weights, so the two reweighting steps are applied sequentially rather than independently. + +### 3.4.5 Projections to 2050 + +Estimated initiation, cessation, and intensity rates will be extrapolated to 2050. The projection engine will support the following scenarios: + +- **Status quo scenarios:** Period effects are held constant at the most recent observed values. This scenario can be interpreted as... with the assumptions... +- **Period effect trend continue:** Period effects are extrapolated based on the historic trend. This scenario can be interpreted as... with the assumptions... + +### 3.4.6 Provincial and territorial estimates + +Separate APC models will be estimated for each province and territory, stratified by sex. Provinces and territories with limited sample sizes may require pooled CCHS cycles or adjusted model constraints to ensure stable estimates. The simulation engine runs on individual CCHS respondents, enabling regional projections that are consistent with national aggregates. + +> GATHER: Statistical methods; ISPOR-SMDM: Subgroup analysis + +## 3.5 Model validation and uncertainty analysis + +The model will be validated through: + +1. **Internal validation:** Comparing model-estimated prevalence against the input CCHS data. + +> ISPOR-SMDM: Internal validation; STRESS: Validation - internal + +2. **External validation:** No external validation will be performed. + +> ISPOR-SMDM: External validation; STRESS: Validation - external + +3. **Uncertainty analysis:** Quantifying parameter uncertainty through bootstrapping and probabilistic sensitivity analysis (PSA) to propagate APC model error through to the final population-level projections. + +> ISPOR-SMDM: Uncertainty analysis; STRESS: Sensitivity analysis + +4. **Sensitivity testing and measurement error:** + - **Self-report bias:** Assessing the impact of misclassification using Simulation Extrapolation (SIMEX) informed by CHMS biomarker (cotinine) data. Corrected parameters will be propagated through the simulation engine to quantify the impact on final projections. Consideration will also be given to sensitivity testing for measurement differences attributable to CCHS survey design changes across eras. + +> STROBE: Potential bias + + - **Recall bias and relapse:** Quantifying the impact of CCHS’s single-event history capture (missing relapse cycles) by comparing net transition rates against observed longitudinal dynamics in the National Population Health Survey (NPHS) panel. + - **Back-casting validation:** Validating the APC model by reconstructing smoking prevalence for the 1994--2000 period and benchmarking against observed NPHS data. + - **Model specification:** Testing the sensitivity of results to spline knot placement and alternative constraints for the period effects in the APC models. We will also compare two spline implementations: natural splines (`splines2::nsp()`, primary analysis) versus restricted cubic splines (`splines2::rcs()`), which may better characterize the boundary behaviour of period and cohort effects. + - **Mortality adjustment method:** The primary analysis uses the MPoRT algorithm for mortality adjustment. We will conduct a sensitivity analysis using the Peto approach (a constant mortality risk ratio by smoking status), consistent with the original Holford et al. (2014) US implementation, to quantify the influence of the mortality adjustment method on historical prevalence estimates. + - **Vaping transitions:** Exploring alternative assumptions for younger cohorts regarding the relationship between vaping initiation and subsequent smoking (gateway, displacement, or common liability scenarios). + +> STRESS: Sensitivity analysis + +## 3.6 Computational methods + +The CSHM is implemented in R (version 4.2+) using a reproducible pipeline architecture. See [Appendix C: Data availability and computational environment] for full details of the software environment, package dependencies, and code availability. + +> STRESS: Implementation details; ISPOR-SMDM: Computational methods + +# 4. Expected outcomes + +The primary output of this study is the CSHM: a validated, open-source tool for population health modelling. + +Specific outputs include: + +1. **Annual rate tables:** A complete set of estimated rates for smoking initiation, cessation, and intensity by single year of age, birth cohort (1890--2030), sex, and province. These will cover the historical period (1965--2023) and future projections (2024--2050). +2. **Total smoking burden estimates:** Annual estimates of the total number of cigarettes smoked in Canada by calendar year, derived by combining smoking prevalence, intensity (cigarettes per day), and population counts. This aggregate measure provides a direct indicator of national tobacco exposure over time and can be used to contextualize tobacco policy impacts and project future cigarette consumption. + +3. **Individual-level smoking histories:** Synthetic birth-cohort-specific smoking histories will be generated directly from the estimated APC rate tables, following the approach of Manuel et al. (2020) [@Manuel_HR_2020] and Holford et al. (2014) [@Holford_AJPM_2014]. For each birth cohort, the probability of being a current, former, or never smoker at each age is derived by combining the initiation and cessation rate tables with the mortality adjustment. These histories provide the inputs needed for microsimulation models of tobacco-attributable disease burden in Canada. +4. **Open-source repository:** All R code, metadata worksheets, and documentation will be made publicly available on GitHub to ensure full reproducibility and allow for future updates as new CCHS cycles are released. + +> GATHER: Access to data and analytics; STRESS: Implementation details + +5. **Interactive online platform:** A web-based dashboard (built using R Shiny) will allow users to visualize smoking trends by province and cohort, download rate tables, and explore different projection scenarios. + +> GATHER: Results publication; ISPOR-SMDM: Reporting + +The CSHM will provide inputs for established Canadian health policy models such as Oncosim (cancer) and POHEM (chronic disease), supporting the evaluation of tobacco control policies and estimation of smoking-attributable disease burden (e.g., cancer, cardiovascular disease, and dementia) at national and provincial levels. This follows the approach to model-based policy evaluation used in other jurisdictions [@Meza_J_2021]. + +> ISPOR-SMDM: Model application; CHEERS: Model-based evaluation + +# 5. Timeline and resources + +## Governance and collaboration + +The CSHM is led by the Ottawa Hospital Research Institute in collaboration with the Canadian Population Attributable Causes (CPAC) consortium, the BC Centre for Disease Control and Prevention (BCCDC), Statistics Canada's Health Analysis and Modelling Division, and academic partners. The core modelling team is responsible for analytical decisions. Partner representatives will review key milestone outputs and the final model prior to dissemination. Roles and responsibilities are documented in the project repository. + +> ISPOR-SMDM: Project management; STRESS: Project planning + +## Prespecification + +All analyses described in this protocol are prespecified. Any deviations from the prespecified plan will be documented in the repository changelog and reported in the methods of any resulting publications. + +## Key milestones + +| Phase | Activities | Environment | +|---|---|---| +| Data preparation | CCHS harmonization, variable QC, descriptive tables | PUMF | +| Model development | APC model fitting, spline tuning, sensitivity analyses | PUMF | +| RDC analysis | Master File replication; exact continuous-variable estimates | RDC (Statistics Canada) | +| Validation | Internal validation; back-casting against NPHS; SIMEX | PUMF + RDC | +| Dissemination | Open-source release; manuscript submission; Shiny dashboard | Public | + +## Resource and access considerations + +Model development uses publicly available PUMF data in an open R environment hosted on GitHub. The codebase is designed to run on both PUMF and Master File data without modification, controlled by a configuration profile. Production estimates using CCHS Master Files will be produced within a Statistics Canada RDC. RDC analysis requires institutional affiliation, an approved project proposal, and compliance with Statistics Canada disclosure control protocols. The lead analyst will apply for RDC access upon protocol approval. + +> ISPOR-SMDM: Project management; STRESS: Implementation details + +# 6. Ethical considerations + +This study involves the secondary analysis of de-identified survey data. Analysis of CCHS Master Files will be conducted within the secure environment of Statistics Canada’s Regional Data Centres, following all protocols for data privacy and disclosure control. No individual-level data that could identify respondents will be released. The use of PUMF data for model development follows the Statistics Canada Open Licence agreement. + +> GATHER: Ethics; STROBE: Ethics + +# 7. Dissemination plan + +Results will be disseminated to researchers, policy analysts, and public health decision-makers through: + +1. **Peer-reviewed publications:** Results will be submitted to journals in population health, epidemiology, and tobacco control. +2. **Open-source release:** The CSHM R package and associated documentation will be released on GitHub. + +> ISPOR-SMDM: Reporting; GATHER: Technical assistance + +:::: + + +:::: {.section-body page-break="true"} + +# Appendices + +## Appendix A: Variable definitions and harmonization details + +Detailed documentation of the `cchsflow` harmonization rules and variable mappings used in this study will be maintained in the project repository. + +> GATHER: Data processing; STRESS: Input parameters + +## Appendix B: Mathematical model specification + +A full mathematical description of the APC models, spline basis functions, and mortality adjustment algorithms will be provided as supplementary material. + +> ISPOR-SMDM: Model specification; STRESS: Mathematical formulation + +## Appendix C: Data availability and computational environment {#appendix-c-data-availability} + +Three data sources are used in this study, each with different access procedures. + +## Canadian Community Health Survey — Public Use Microdata Files (PUMF) + +The CCHS PUMF files are publicly accessible and available without special permissions or restricted access. PUMF files can be downloaded from the [Ontario Data Documentation, Extraction Service and Infrastructure (ODESI)](https://odesi.ca) and directly from [Statistics Canada](https://www150.statcan.gc.ca/n1/en/catalogue/82M0013X). The PUMF files contain de-identified data and are released under the Statistics Canada Open Licence. These files are used for model development and the open-source implementation of the CSHM. + +## Canadian Community Health Survey — Master Files + +The CCHS Master Files, used for the production model estimates, are available at Statistics Canada's Research Data Centres (RDCs). Access is restricted to researchers affiliated with academic, government, or other recognized institutions. Researchers must apply for access through one of the RDCs across Canada; these secure facilities provide access to confidential microdata under the confidentiality provisions of the *Statistics Act*. Master files provide exact continuous values for key variables not available in the PUMF. Further information about access procedures, eligibility, and application requirements is available on the [Statistics Canada website](https://www.statcan.gc.ca/en/microdata/data-centres). + +## US National Health Interview Survey (NHIS) + +The NHIS is used for international validation of the CSHM and is conducted by the National Center for Health Statistics (NCHS). Public-use NHIS data files are freely available without special permissions and can be downloaded directly from the [NCHS website](https://www.cdc.gov/nchs/nhis/data-questionnaires-documentation.htm). The public-use files contain de-identified data. For researchers requiring access to more detailed data not available in the public-use files, the NCHS Research Data Center offers access to restricted-use files subject to an application process and strict confidentiality protocols. Further information is available at . + +> *Note: The NHIS validation analyses described above are planned. The text below is retained as a placeholder pending integration of NHIS data into the study.* + +> GATHER: Data access; STROBE: Ethics + +## Computational environment + +The CSHM is implemented in the R programming environment (version 4.2+). The project architecture uses a reproducible data science workflow: + +- **Pipeline management:** The `{targets}` R package manages the dependency graph and ensures that only outdated targets are recomputed when inputs change. +- **Environment management:** The `{renv}` package records the exact versions of all R packages and ensures a consistent software environment across development, production, and the Statistics Canada RDC environment. +- **Harmonization:** The `{cchsflow}` package (version 3.0) handles survey data harmonization across CCHS cycles. + +All code will be hosted on GitHub under the MIT licence. The repository will include full documentation, metadata worksheets, and instructions for replication on both PUMF and Master file environments. + +> STRESS: Implementation details; GATHER: Access to data and analytics + +:::: + +:::: {.section-body page-break="true"} + +> STROBE: References; GATHER: References + +# References + +::: bibliography +::: + +:::: + +:::: {.section-body page-break="true"} + +# Version history + +::: version-history +::: + +:::: + diff --git a/docs/protocol/study-summary.qmd b/docs/protocol/study-summary.qmd new file mode 100644 index 0000000..987a1d9 --- /dev/null +++ b/docs/protocol/study-summary.qmd @@ -0,0 +1,40 @@ +# A Canadian Smoking Histories Model: a study protocol + +Version 0.1.0 + +Date: 2025-03-27 + +## Background + +Understanding the patterns of smoking behaviour across different birth cohorts is important for evaluating tobacco control policies and predicting smoking-related health outcomes in Canada. The Canadian Smoking Histories Model (CSHM) developed by the National Cancer Institute in the US has been instrumental in cancer risk modelling. The approach was replicated in Ontario, but a comprehensive Canadian equivalent covering all provinces has not yet been developed. Given Canada's distinct tobacco control policies and smoking patterns, developing a Canadian Smoking Histories Model helps inform future public health planning, evaluate past interventions, and project the smoking-attributable disease burden nationwide. + +## Objectives + +This study will develop a Canadian Smoking Histories Model that characterizes smoking patterns by birth cohort, sex, and province from 1965 to 2023, with projections to 2050. Specifically, this study will: + +1) Estimate historical and current smoking prevalence, initiation, cessation, and intensity by birth cohort for each province and territory; +2) Examine regional and temporal differences in smoking patterns across Canada; +3) Project future smoking prevalence and related parameters under status quo conditions; and +4) Create a publicly-accessible open model that policy actors, researchers, and others can use and update. + +## Methods + +### Data Sources + +The primary data source will be the Canadian Community Health Survey (CCHS) conducted from 2001 to 2023, which provides nationally representative cross-sectional information on smoking behaviours. We will use all available cycles of the CCHS, with a combined sample size of approximately 1.4 million respondents. From these surveys, we will ascertain current smoking status, age at smoking initiation, age at cessation, and smoking intensity (cigarettes per day). + +### Exposure ascertainment + +The `cchsflow` library will harmonize smoking variables in the CCHS across all survey cycles. Appendix X has harmonization details (variables and variable details). + +### Analytical approach + +Following the approach developed by Holford et al.[ref] and adapted in Canada by Manuel et al.[ref], we will use an age-period-cohort modelling framework to generate smoking histories. The model will consist of two primary components: a smoking initiation model (for people who had not already started smoking) and a smoking cessation model (for those who are currently smoking). We will first construct retrospective smoking histories for each respondent up to the survey date based on their reported age of initiation and cessation. To address survival bias (whereby smokers are less likely to survive to be interviewed), we will apply mortality adjustments using the Mortality Population Risk Tool (MPoRT) \[tba\], which accounts for differential mortality by smoking status. Age-period-cohort models with constrained natural splines will be fitted to estimate smoking initiation and cessation probabilities by birth cohort, age, sex, and province. Additional models will estimate smoking intensity distribution. The models will be calibrated against historical survey estimates of smoking prevalence and then used to project future smoking prevalence through 2050 under status quo conditions. + +## Expected Outcomes + +The primary outcome will be a Canadian Smoking Histories Model capable of producing detailed smoking histories by birth cohort, age, sex, and region. The model will provide annual estimates of smoking prevalence, initiation rates, cessation rates, and smoking intensity, both historically (1965-2023) and projected forward (2024-2050). This model will be made available through an online interactive platform and open-source code repository, enabling researchers and policymakers to access detailed smoking parameters for health economic modelling, policy evaluation, and public health planning. The Generator will support various policy planning models, such as Oncosim and POHEM, designed to evaluate the impact of tobacco control policies and predict smoking-attributable disease burden, including cancer, cardiovascular disease, and dementia. By providing Canada-specific smoking parameters at both national and provincial levels, this Generator will enable a more precise estimation of the health and economic impacts in the Canadian context and support evidence-based tobacco control strategies. + +## Change log + +Version 0.1.0. Date: 2025-03-27 Initial 1-page outline. \ No newline at end of file diff --git a/docs/reference/faq.qmd b/docs/reference/faq.qmd new file mode 100644 index 0000000..84fa254 --- /dev/null +++ b/docs/reference/faq.qmd @@ -0,0 +1,86 @@ +--- +title: "Frequently asked questions" +--- + +## General questions + +### What is the Canadian Smoking Histories Model? + +The Canadian Smoking Histories Model (CSHM) is an R implementation of an Age-Period-Cohort model for analyzing smoking behavior patterns across different generations and time periods. It builds on the original work developed for the Ontario SHGM study (2020) and the methodological approach pioneered by Holford. + +### Who should use CSHM? + +CSHM is primarily designed for: + +- Epidemiologists studying smoking trends +- Health policy researchers +- Public health analysts +- Population health modelers +- Researchers interested in age-period-cohort effects + +### Is CSHM specific to Canadian data? + +While CSHM was designed for use with Canadian Community Health Survey data, the methodology can be adapted for use with other survey data sources that contain similar smoking history information. + +## Technical questions + +### What R version is required? + +CSHM requires R version 4.1.0 or higher. + +### Can I use CSHM in secure environments? + +Yes, CSHM is designed to work in secure computing environments like Statistics Canada's Research Data Centres (RDCs). The package uses configuration files to manage paths and dependencies, making it adaptable to different environments. + +### How does CSHM handle missing data? + +CSHM has built-in strategies for handling missing data in smoking variables, including: + +- Filtering out cases with missing key variables +- Imputation options for less critical variables +- Clear documentation of data limitations + +### Can I extend CSHM with my own models? + +Yes, CSHM is designed to be modular. You can: + +- Modify the spline specifications for the APC model +- Add additional covariates to the models +- Implement alternative statistical approaches +- Extend the generated smoking histories with additional variables + +## Methodological questions + +### What is Age-Period-Cohort (APC) analysis? + +APC analysis is a statistical approach that attempts to disentangle three time-related effects: + +- **Age effects**: How behavior changes as individuals age +- **Period effects**: How external factors affect everyone at a specific point in time +- **Cohort effects**: How being born in a specific generation influences behavior + +### How does CSHM handle the identification problem in APC models? + +The APC identification problem arises because age, period, and cohort have a linear relationship (period = age + cohort). CSHM addresses this by: + +1. Using natural cubic splines to model non-linear effects +2. Applying constraints to the spline coefficients +3. Following the approach developed by Holford for identifiability + +### How accurate are the generated smoking histories? + +The generated smoking histories are based on statistical models fitted to survey data. Their accuracy depends on: + +1. The quality and representativeness of the input survey data +2. The appropriateness of the APC modeling approach +3. The validity of assumptions about smoking behavior + +CSHM includes validation procedures to compare the generated histories against historical data and reference studies. + +## Getting help + +If your question isn't answered here, please: + +1. Check the [documentation](../index.qmd) +2. Submit an issue on [GitHub](https://github.com/Big-Life-Lab/cshm-dev/issues) +3. Contact the project maintainers directly \ No newline at end of file diff --git a/docs/reference/functions.qmd b/docs/reference/functions.qmd new file mode 100644 index 0000000..0373d78 --- /dev/null +++ b/docs/reference/functions.qmd @@ -0,0 +1,46 @@ +--- +title: "Function reference" +--- + +This page provides detailed technical documentation for the functions in the CSHM package. + +## Smoking initiation functions + +### process_smoking_initiation + +```r +process_smoking_initiation(dataset, sex = "M") +``` + +Processes data for smoking initiation based on the Canadian Community Health Survey (CCHS) data that has been harmonized with the cchsflow package. It identifies individuals who have initiated smoking and creates a dataset with key variables needed for age-period-cohort (APC) modeling. + +#### Parameters + +- `dataset`: A data frame containing harmonized CCHS smoking history data +- `sex`: Character string indicating sex ("M" or "F") for filtering the data + +#### Returns + +A data frame with the variables needed for smoking initiation modeling: +- `ont_id`: Ontario resident identifier +- `weighting`: Survey weighting factor +- `age`: Age of smoking initiation +- `cohort`: Birth cohort (year) +- `period`: Period (year) when smoking initiated +- `init`: Binary indicator of smoking initiation (1=initiated, 0=not initiated) + +#### Details + +This function replicates the SAS code used in the Canadian History Smoking Generator Model. It filters data by sex, processes the harmonized smoking status variables, and creates a dataset that serves as the numerator for age-period-cohort rates in smoking initiation modeling. + +#### Example + +```r +# Assuming 'cchs_data' is your harmonized CCHS dataset from cchsflow +inits_male <- process_smoking_initiation(cchs_data, sex = "M") +inits_female <- process_smoking_initiation(cchs_data, sex = "F") +``` + +## Utility functions + +Additional function documentation will be added as the implementation progresses. \ No newline at end of file diff --git a/docs/reference/index.qmd b/docs/reference/index.qmd new file mode 100644 index 0000000..f20506e --- /dev/null +++ b/docs/reference/index.qmd @@ -0,0 +1,11 @@ +--- +title: "Reference documentation" +--- + +This section provides technical reference information for the CSHM project: + +- [Variables](variables.qmd): Detailed information on all variables used in the project +- [Functions](functions.qmd): Complete API reference for all functions +- [Model](model.qmd): Technical details of the APC model implementation + +Use this section when you need precise information about specific components of the CSHM. \ No newline at end of file diff --git a/docs/reference/model.qmd b/docs/reference/model.qmd new file mode 100644 index 0000000..8b56661 --- /dev/null +++ b/docs/reference/model.qmd @@ -0,0 +1,81 @@ +--- +title: "APC model reference" +--- + +This page provides detailed technical documentation for the Age-Period-Cohort (APC) model implementation in the CSHM package. + +## Overview + +The APC model is used to separate the effects of age, time period, and birth cohort on smoking initiation and cessation rates. This implementation follows the approach developed by Holford, using natural cubic splines to model these effects, as applied to Canadian smoking patterns in @Manuel_HR_2020. + +## Mathematical formulation + +The basic APC model can be expressed as: + +$$\log(\lambda_{apc}) = \mu + \alpha_a + \pi_p + \gamma_c$$ + +where: +- $\lambda_{apc}$ is the rate for age $a$, period $p$, and cohort $c$ +- $\mu$ is the overall mean +- $\alpha_a$ is the age effect for age $a$ +- $\pi_p$ is the period effect for period $p$ +- $\gamma_c$ is the cohort effect for cohort $c = p - a$ + +Due to the linear dependency between age, period, and cohort, constraints are needed to identify the model. This implementation uses natural cubic splines with constraints that make the first and last coefficients of each effect equal to zero. + +## Spline implementation + +The APC model uses natural cubic splines to model the age, period, and cohort effects. The spline functions are defined as: + +$$S(x) = \sum_{j=1}^{k} \beta_j B_j(x)$$ + +where: +- $B_j(x)$ are the basis functions for the natural cubic spline +- $\beta_j$ are the coefficients to be estimated +- $k$ is the number of knots + +## Knot placement + +The default knot placements for the APC model are: + +### Age knots +```r +age_knots = [10, 15, 20, 50, 60] +``` + +### Period knots +```r +period_knots = [1940, 1950, 1960, 1970, 1980] +``` + +### Cohort knots +```r +cohort_knots = [1930, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980] +``` + +## Survival probability adjustments + +To account for differential mortality between smokers and non-smokers, the model includes adjustments for survival probabilities: + +$$\text{adj\_pred} = \frac{\text{pred} / \text{surv}_1}{\text{pred} / \text{surv}_1 + (1 - \text{pred}) / \text{surv}_0}$$ + +where: +- $\text{pred}$ is the predicted probability from the APC model +- $\text{surv}_1$ is the survival probability for smokers +- $\text{surv}_0$ is the survival probability for non-smokers + +## Implementation details + +The APC model is implemented using the following steps: + +1. Natural cubic splines are constructed for age, period, and cohort +2. These splines are used in a generalized linear model with binomial errors +3. Survival probabilities are used to adjust for differential mortality +4. Separate models are fit for males and females + +Additional technical documentation will be added as the implementation progresses. + +## References + +::: {#refs} +::: \ No newline at end of file diff --git a/docs/reference/variables.qmd b/docs/reference/variables.qmd new file mode 100644 index 0000000..5e46c7c --- /dev/null +++ b/docs/reference/variables.qmd @@ -0,0 +1,520 @@ +--- +title: "Data dictionary" +--- + +This page documents all variables used in the Canadian Smoking Histories Model (CSHM) +pipeline, the synthetic cohort population, and the model output rate tables. It is generated +from the machine-readable schemas in the [`schemas/`](https://github.com/big-life-lab/cshm/tree/main/schemas) +directory. + +Three schemas cover distinct layers of the analysis: + +| Schema | What it covers | Pipeline stage | +|--------|---------------|---------------| +| [CCHS harmonization variables](#cchs-harmonization-variables) | Variables drawn from the CCHS and harmonized via cchsflow | Stages 1–7 | +| [Synthetic cohort](#synthetic-cohort) | Synthetic Canadian population used in simulation | Stage 9 | +| [Rate tables](#rate-tables) | APC model output; input to shg-rcpp | Stages 8–9 | + +--- + +## CCHS harmonization variables + +Variables in `worksheets/cshm-variables.csv`. All CCHS variables are harmonized across +survey cycles using the [cchsflow](https://github.com/Big-Life-Lab/cchsflow) R package. + +Each variable carries two CSHM-specific fields not present in cchsflow: + +- **Role** — how the variable is used in the pipeline (see [role definitions](#variable-roles)) +- **Source** — whether the variable is available in PUMF files, Master files, or both + +### Smoking status + +The primary smoking status classification uses three variables in combination. + +#### `SMKDSTY` — smoking status (6-category) + +**Label:** Type of smoker derived — 6-category (D)\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** Both (PUMF and Master)\ +**Cycles:** 2003–2022 (all except 2001) + +Statistics Canada derived variable. The six categories are: + +| Code | Label | +|------|-------| +| 1 | Daily smoker | +| 2 | Occasional smoker | +| 3 | Former daily smoker | +| 4 | Former occasional smoker | +| 5 | Experimental smoker (tried but <100 cigarettes) | +| 6 | Never smoker (abstainer) | + +Used as the primary smoking classification in CSHM. The initiation denominator uses +codes 1–5 (ever exposed); the cessation denominator uses codes 1–4 (ever daily or +occasional smoker). Never-smokers (code 6) are excluded from both numerators. + +--- + +#### `SMK_01A` — smoked 100+ cigarettes lifetime + +**Label:** Ever smoked 100 or more cigarettes in lifetime\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2001–2022 + +| Code | Label | +|------|-------| +| 1 | Yes | +| 2 | No | + +Gate question for ever-smoker definition. Combined with `SMK_01B` and `SMK_202` to +derive the three-category never/current/former smoking status used in cchsflow. + +--- + +#### `SMK_01B` — ever smoked a whole cigarette + +**Label:** Ever smoked a whole cigarette\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** PUMF\ +**Cycles:** 2001–2022 + +| Code | Label | +|------|-------| +| 1 | Yes | +| 2 | No | + +Second gate for never-smoker definition. A respondent is classified as a never smoker +if they have smoked fewer than 100 cigarettes lifetime AND have never smoked a whole +cigarette. + +--- + +#### `SMK_202` — current smoking frequency + +**Label:** Type of smoker presently (daily/occasional/not at all)\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2001–2022 (cchsflow harmonized from `SMK_005` in 2015–16) + +| Code | Label | +|------|-------| +| 1 | Daily | +| 2 | Occasional | +| 3 | Not at all | + +--- + +### Smoking initiation + +#### `age_first_cigarette` — age smoked first whole cigarette (unified) + +**Label:** Age smoked first whole cigarette — unified (cchsflow v3)\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2001–2022\ +**Units:** Years\ +**Requires:** cchsflow v3 (PR #163) + +Primary input for constructing the initiation numerator. The initiation age defines +the age-period-cohort cell in which a respondent transitions from never smoker to +current smoker. + +- **Master files:** exact age (`SMK_01C`) +- **PUMF files:** midpoint-estimated from grouped response (`SMKG01C_cont`) + +Derived from `SMKG01C_cont` (intermediate; see [derived inputs](#derived-inputs)). + +--- + +#### `age_start_smoking` — age started smoking daily (unified) + +**Label:** Age started smoking daily — unified (cchsflow v3)\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2001–2022\ +**Units:** Years\ +**Requires:** cchsflow v3 (PR #163) + +Age at which a daily smoker (or former daily smoker) began smoking daily. Used +alongside `age_first_cigarette` when distinguishing initiation age (first cigarette) +from daily onset. + +- **Master files:** exact age (`SMK_040`) +- **PUMF files:** midpoint-estimated (`SMKG040_cont`, ±3 years) + +--- + +### Smoking cessation + +#### `time_quit_smoking` — years since quit (unified) + +**Label:** Years since quit smoking — unified (cchsflow v3)\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2001–2022\ +**Units:** Years\ +**Requires:** cchsflow v3 (PR #163) + +Primary input for the cessation numerator. Used to compute cessation age: +`age_cessation = age − time_quit_smoking`. + +- **Master files:** exact years (`SMK_09C`) +- **PUMF files:** midpoint-estimated from grouped response (`SMK_09A_cont`) + +Covers former daily smokers only. Former occasional smokers use `SMK_06A_cont`. + +--- + +#### `SMK_09A_cont` — years quit daily (PUMF) + +**Label:** Years since stopped smoking daily — former daily (PUMF continuous)\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** PUMF\ +**Cycles:** 2001–2013–14\ +**Units:** Years + +PUMF fallback for cessation timing before cchsflow v3. Superseded by +`time_quit_smoking` once PR #163 merges. Retained for pre-v3 compatibility. + +--- + +#### `SMKDGSTP_cont` — years since quit (all former smokers) + +**Label:** Years since quit smoking completely — all former smokers (continuous)\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2009–10 to 2022\ +**Units:** Years + +Statistics Canada derived continuous variable covering both former daily and former +occasional smokers. Preferred over `SMK_09A_cont` where available (2009+). + +--- + +### Smoking intensity + +#### `SMK_204` — cigarettes per day (current daily smokers) + +**Label:** Number of cigarettes smoked daily — current daily smokers\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2001–2022\ +**Units:** Cigarettes per day + +--- + +#### `SMK_208` — cigarettes per day (former daily smokers) + +**Label:** Number of cigarettes smoked daily — former daily smokers\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** Both\ +**Cycles:** 2001–2022\ +**Units:** Cigarettes per day + +Peak cigarettes per day while smoking. Used as a smoking intensity input alongside +cessation timing. + +--- + +### Demographics + +#### `DHH_SEX` — sex + +**Label:** Sex\ +**Type:** Categorical\ +**Role:** Model stratifier\ +**Source:** PUMF (extended to 2019–20 and 2022 in `cshm-variable-details.csv`)\ +**Cycles:** 2001–2022 + +| Code | Label | +|------|-------| +| 1 | Male | +| 2 | Female | + +APC models are fitted separately for men and women because period effect constraint +years differ by sex (initiation women: from 1999; initiation men: from 2003). + +--- + +#### `DHHGAGE_cont` — age (continuous) + +**Label:** Age — continuous\ +**Type:** Continuous\ +**Role:** Predictor\ +**Source:** PUMF\ +**Cycles:** 2001–2022\ +**Units:** Years + +Preferred continuous age variable for the APC model. In PUMF files, derived as a +midpoint estimate from grouped age categories (e.g., 5-year bands in 2019–20 and +2022, 16-category scale in earlier cycles). Master files provide exact age. + +--- + +#### `DHHGAGE_A` — age (grouped) + +**Label:** Age (grouped)\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** PUMF\ +**Cycles:** 2001–2022\ +**Units:** Years + +Grouped age category. Used in data cleaning for age-based exclusion filters +(e.g., excluding respondents aged 12–17, category 1). + +--- + +#### `GEOGPRV` — province of residence + +**Label:** Province of residence\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** PUMF\ +**Cycles:** 2001–2022 + +Statistics Canada province/territory codes. Used for provincial APC stratification. +Territories are pooled due to small sample sizes. See [rate tables schema](#rate-tables) +for province code definitions. + +--- + +#### `WTS_M` — survey weight + +**Label:** Master survey weight\ +**Type:** Continuous\ +**Role:** Design\ +**Source:** PUMF\ +**Cycles:** 2001–2022 + +CCHS sampling and post-stratification weight. Applied during APC model fitting. +See protocol §3.4.4 for the weighting method used (Peto / case weight in logistic +regression vs. `svyglm()`). + +--- + +#### `SurveyCycle` — survey cycle + +**Label:** Survey cycle\ +**Type:** Categorical\ +**Role:** Design\ +**Source:** Both\ +**Cycles:** 2001–2022 + +| Code | Survey | Midpoint year used | +|------|--------|--------------------| +| 1 | CCHS 2001 | 2002 | +| 2 | CCHS 2003 | 2003 | +| 3 | CCHS 2005 | 2005 | +| 4 | CCHS 2007–08 | 2008 | +| 5 | CCHS 2009–10 | 2010 | +| 6 | CCHS 2011–12 | 2012 | +| 7 | CCHS 2013–14 | 2014 | +| 8 | CCHS 2015–16 | 2016 | +| 9 | CCHS 2017–18 | 2018 | +| 10 | CCHS 2019–20 | 2020 | +| 11 | CCHS 2022 | 2022 | + +Derived from the dataset name at harmonization time. Used to compute `survey_year`, +which in turn defines `period` for the APC model. + +--- + +#### `SDCFIMM` — immigrant status + +**Label:** Immigrant status (D)\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** PUMF\ +**Cycles:** 2007–08 to 2013–14 only + +| Code | Label | +|------|-------| +| 1 | Non-immigrant | +| 2 | Immigrant | +| 3 | Non-permanent resident | + +Used in the MPoRT mortality correction. Not available in 2001–2005 or 2015–2022 +PUMF files (coded as `NA(c)` — not asked this cycle). + +--- + +#### `EDUDR03` — education (3-category) + +**Label:** Highest education level — 3 categories\ +**Type:** Categorical\ +**Role:** Predictor\ +**Source:** PUMF\ +**Cycles:** 2001–2017–18 (not available 2019–20 or 2022) + +| Code | Label | +|------|-------| +| 1 | Less than high school | +| 2 | High school graduate | +| 3 | Post-secondary | + +cchsflow harmonized variable. Used for subgroup analyses, not a primary APC model +covariate. + +--- + +### Derived inputs + +These variables are intermediate outputs of cchsflow harmonization. They are not used +directly in the APC model but are required inputs for the unified smoking variables above. + +| Variable | Role | Description | +|----------|------|-------------| +| `SMKG01C_cont` | Derived input | Age smoked first cigarette — PUMF grouped continuous (midpoint estimate for `age_first_cigarette`) | +| `SMKG040_cont` | Derived input | Age started smoking daily — PUMF grouped continuous (midpoint estimate for `age_start_smoking`) | +| `SMKDVSTP` | Derived input | Time since quit — Master exact value (exact input for `time_quit_smoking` in RDC environment) | +| `SMK_06A_cont` | Predictor | Years since quit — former occasional smokers (PUMF, 2001–2013–14) | + +--- + +### Variable roles + +| Role | Meaning | +|------|---------| +| `predictor` | Covariate used as a model input | +| `outcome` | Dependent variable (initiation or cessation event) | +| `derived-input` | Intermediate variable; input to a unified variable but not directly in the model | +| `weight` | Survey sampling weight | +| `design` | Survey design variable (cycle, weight) used to set up the analysis | +| `model-stratifier` | Variable on which separate models are fitted (sex) | +| `apc-internal` | Variable computed during APC preparation with no counterpart in the source survey | + +--- + +## Synthetic cohort + +Variables in the synthetic Canadian population used for simulation (Stage 9, shg-rcpp). +These records are generated from Statistics Canada demographic projections, not from the +CCHS. See `schemas/cshm-cohort.yaml` for the full schema. + +### Person-level attributes + +| Variable | Type | Description | +|----------|------|-------------| +| `person_id` | Integer | Unique identifier for the synthetic individual within a simulation run | +| `birth_year` | Integer (1900–2023) | Year of birth; defines the birth cohort (`cohort = period − age`) | +| `sex` | Categorical (1/2) | Biological sex: 1 = male, 2 = female | +| `province` | Categorical | Province/territory of residence (Statistics Canada GEOGPRV codes; territories pooled as 60) | +| `weight` | Float (≥ 0) | Population weight from demographic projections; used to scale simulation results to population estimates | +| `simulation_run` | Integer | Monte Carlo run identifier; multiple runs quantify uncertainty | + +### Smoking history record + +One record per person per age in the simulation. A complete smoking history is a +sequence of these records from birth to the projection end year. + +| Variable | Type | Description | +|----------|------|-------------| +| `person_id` | Integer | Links to person-level record | +| `age` | Integer (0–110) | Age at this time point | +| `period` | Integer | Calendar year: `birth_year + age` | +| `smoking_status` | Categorical | `never` / `current` / `former` | +| `age_initiation` | Integer | Age first smoked a whole cigarette (null if never smoker) | +| `age_cessation` | Integer | Age of most recent quit (null if never or current smoker) | + +### Smoking status definitions + +| Status | Definition | +|--------|-----------| +| Never smoker | Fewer than 100 lifetime cigarettes AND never smoked a whole cigarette | +| Current smoker | ≥ 100 lifetime cigarettes AND currently smoking (daily or occasionally) | +| Former smoker | ≥ 100 lifetime cigarettes AND not currently smoking | + +These definitions match the CCHS-derived classification in the APC model. + +### Simulation provenance + +Each simulation run carries metadata for reproducibility and traceability. + +| Field | Description | +|-------|-------------| +| `run_id` | Unique run identifier (e.g., `cshm-prod-20260301-001`) | +| `run_date` | Date the simulation was executed | +| `config_profile` | `{config}` profile used (`prod`, `statscan`, etc.) | +| `rate_table_version` | Version of the rate tables used as input | +| `random_seed` | Random seed for reproducibility | + +--- + +## Rate tables + +Model output from Stage 8 (APC model fitting), formatted as input to the +[shg-rcpp](https://github.com/NCI-CISNET/shg-rcpp) Smoking History Generator. +See `schemas/cshm-rate-tables.yaml` for the full schema. + +A complete Canadian shg-rcpp run requires four rate tables: +initiation × {male, female} and cessation × {male, female}. + +### Rate table columns + +| Variable | Type | Description | +|----------|------|-------------| +| `model_type` | Categorical | `initiation` or `cessation` | +| `sex` | Categorical (1/2) | 1 = male, 2 = female | +| `province` | Categorical | `national` or Statistics Canada GEOGPRV code (territories pooled as 60) | +| `age` | Integer | Age in years (0–110) | +| `period` | Integer | Calendar year | +| `cohort` | Integer | Birth year: `period − age`; included for shg-rcpp compatibility | +| `rate` | Float (0–1) | Conditional probability of the smoking transition | +| `rate_lower` | Float (0–1) | Lower bound of 95% confidence interval | +| `rate_upper` | Float (0–1) | Upper bound of 95% confidence interval | +| `mortality_correction` | String | Method applied: `peto` (default) or `mport` (not yet implemented) | + +### Rate definitions + +**Initiation rate:** P(initiate at age *a* | never smoker at age *a*−1). +Zero for ages below `survey_bound(cfg, "age_first_cigarette", "min")` (PUMF: 13, Master: 8). + +**Cessation rate:** P(quit at age *a* | current smoker at age *a*−1). +Zero for ages below `survey_bound(cfg, "age_first_cigarette", "min")` for cessation as well. + +### Period constraint years + +Period effects are held constant beyond the observed data range. Rates at ages/periods +beyond these constraints use the last estimated period effect. + +| Model | Sex | Constant from | +|-------|-----|--------------| +| Initiation | Women | 1999 | +| Initiation | Men | 2003 | +| Cessation | Both | 2013 | +| Cohort (initiation) | Both | Prior to 1920 | +| Cohort (cessation) | Both | 1985 onward | + +See Manuel et al. (2020) and Holford et al. (2014) for the methodological basis. + +### Rate table provenance + +Each rate table file includes a metadata block for traceability. + +| Field | Description | +|-------|-------------| +| `table_id` | Unique identifier encoding stratum (e.g., `cshm-initiation-male-national-v0.1.0`) | +| `cshm_version` | CSHM software version | +| `cchs_cycles` | CCHS cycles used to fit the model | +| `data_source` | `pumf` or `master` | +| `date_produced` | Date the table was generated | +| `config_profile` | `{config}` profile used | +| `shgrcpp_compatible` | Whether the table has been validated against the shg-rcpp input specification | + +PUMF-derived national tables (`province = national`, `data_source = pumf`) are the +primary shareable artifact. They can be distributed under the +[Statistics Canada Open Licence](https://www.statcan.gc.ca/eng/reference/licence) +and used directly with shg-rcpp without requiring access to restricted Master files. diff --git a/docs/results/table-1.qmd b/docs/results/table-1.qmd new file mode 100644 index 0000000..6005d62 --- /dev/null +++ b/docs/results/table-1.qmd @@ -0,0 +1,79 @@ +--- +title: "Table 1 — Study population characteristics" +author: "CSHM Development Team" +date: today +format: + html: + toc: true + self-contained: true +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) + +cfg <- config::get(file = "config.yml") +``` + +# Table 1a — Study population before imputation + +Characteristics of CCHS respondents included in CSHM, prior to multiple imputation. +Columns show males and females separately; overall column shows the combined sample. + +```{r table-1a} +source("R/variables-sheet-utils.R") +source("R/variable-details-sheet-utils.R") +source("R/get-descriptive-data.R") +source("R/create-descriptive-tables.R") +source("R/descriptive-data.R") + +variables_sheet <- targets::tar_read("variables_sheet") +variable_details_sheet <- targets::tar_read("variable_details_sheet") +table_1a_data <- targets::tar_read("table_1a_data") + +predictor_vars <- select_vars_by_role("predictor", variables_sheet) + +create_descriptive_table( + descriptive_data = table_1a_data, + variables_sheet = variables_sheet, + variable_details_sheet = variable_details_sheet, + variables = predictor_vars, + column_stratifier = survey_var(cfg, "sex"), + sections_order = c("Sociodemographics", "Health behaviour") +) +``` + +# Table 1b — Study population after imputation + +```{r table-1b} +table_1b_data <- targets::tar_read("table_1b_data") + +create_descriptive_table( + descriptive_data = table_1b_data, + variables_sheet = variables_sheet, + variable_details_sheet = variable_details_sheet, + variables = predictor_vars, + column_stratifier = survey_var(cfg, "sex"), + sections_order = c("Sociodemographics", "Health behaviour") +) +``` + +# Appendix — Characteristics by survey cycle (pre-imputation) + +Each cycle shows sex-stratified results. Used to assess temporal trends in +sample composition and smoking variable availability across cycles. + +```{r table-cycle} +cleaned_data <- targets::tar_read("cleaned_data") + +create_cycle_specific_descriptive_table( + study_data = cleaned_data, + variables_sheet = variables_sheet, + variable_details_sheet = variable_details_sheet, + variables = predictor_vars, + cycle_col = survey_var(cfg, "cycle"), + cycle_labels = cfg$cycle_labels, + column_stratifier = survey_var(cfg, "sex"), + sections_order = c("Sociodemographics", "Health behaviour") +) +``` diff --git a/docs/smoking-ascertainment.qmd b/docs/smoking-ascertainment.qmd deleted file mode 100644 index f5e30bf..0000000 --- a/docs/smoking-ascertainment.qmd +++ /dev/null @@ -1,28 +0,0 @@ -# Define smoking status - -Each Canadian Community Health Survey respondent is classified into three groups: never smoker, current smoker, and former smoker based on smoking intensity variables (2.1: smkc_01a, smkc_202, smkc_204, smkc_05d, smkc_06a, smkc_208). - - - -Age at initiation, age at daily smoking start, age at daily smoking stop, and age at final cessation (where appropriate), along with smoking intensity responses, are taken from the survey responses (2.1: smkc_01b, smkc_203, smkc_06a-c, smkc_10a-c, smkc_204, smkc_208), and used to create life-histories of smoking for all survey respondents. Any missing ages are imputed through multiple imputation using birth year, sex, race, immigration status, and prior age measures as covariates (2.1: dhhc_yob, dhhc_sex, sdccdrac, sdccfimm). The MPoRT model is applied to the life-histories to calculate one-year mortality probabilities. These mortality probabilities were scaled to published Statistics Canada mortality probabilities, and the product of the scaled mortality probabilities become cumulative survival probabilities from each age to survey age. - - -1) review smoking variables (above) -2) Label which variables are included and which are not. -3) create a R code to list the variables in this QMD. -4) connect with Caitlin re: ICES variables. Where are they? Was only up to 2018 harmonized? -5) ask Rafiel to check the variables. -6) add folks to this repo. - - -smkc_01a 'In lifetime, smoked 100 or more cigarettes' -smkc_01b 'Ever smoked whole cigarette' - missing in cchsflow -smkc_203 -smkc_06a-c -smkc_10a-c -smkc_204 -smkc_208 -dhhc_yob -dhhc_sex -sdccdrac -sdccfimm \ No newline at end of file diff --git a/docs/tutorials/advanced-usage.qmd b/docs/tutorials/advanced-usage.qmd new file mode 100644 index 0000000..3052e54 --- /dev/null +++ b/docs/tutorials/advanced-usage.qmd @@ -0,0 +1,189 @@ +--- +title: "Advanced usage of CSHM" +--- +> The following is a template example of a tutorial. To be developed. + +This tutorial covers advanced usage scenarios for the Canadian Smoking Histories Model (CSHM). + +## Prerequisites + +Before proceeding with this tutorial, you should: + +- Have completed the [Getting Started](getting-started.qmd) guide +- Be familiar with the [basic usage](basic-usage.qmd) of CSHM +- Have a good understanding of R programming +- Be familiar with statistical concepts related to Age-Period-Cohort models + +## Customizing APC model specifications + +The default APC model specifications in CSHM are based on the original Canadian SHM study, following the Holford/CISNET approach. However, you can customize these specifications to better fit your specific research needs. + +### Modifying spline knots + +The placement of knots in the spline functions can impact the model's ability to capture temporal trends: + +```r +# Custom knot placement +custom_config <- list( + age_knots = c(10, 15, 20, 30, 40, 50, 60), # More knots for age + period_knots = c(1940, 1960, 1980, 2000, 2020), # Different period knots + cohort_knots = c(1920, 1940, 1960, 1980, 2000) # Simplified cohort knots +) + +# Run APC model with custom knots +custom_model <- run_apc_model( + data = harmonized_data, + sex = "M", + knots = custom_config +) +``` + +### Adding covariates + +You can extend the basic APC model to include additional covariates: + +```r +# APC model with additional covariates +covariate_model <- run_apc_model( + data = harmonized_data, + sex = "M", + formula = d/pop ~ age_s + period_s + cohort_s + + age_spl1 + age_spl2 + age_spl3 + + period_spl1 + period_spl2 + period_spl3 + + cohort_spl1 + cohort_spl2 + cohort_spl3 + + education + urban # Additional covariates +) +``` + +## Advanced data preprocessing + +### Handling complex survey designs + +For proper population estimates, using the example data (the Canadian Community Health Survey) you need to account for the complex survey design of the population health survey: + +```r +library(survey) + +... + +### Custom variable derivation + +You can create custom derived variables for specific research questions: + +```r +library(dplyr) + +# Create a variable for time-to-event analysis +analysis_data <- harmonized_data %>% + mutate( + # Years between first cigarette and daily smoking + time_to_daily = ifelse(!is.na(SMKG203_cont) & !is.na(SMKG01C_cont), + SMKG203_cont - SMKG01C_cont, + NA), + + # Smoking duration for former smokers + smoking_duration = ifelse(!is.na(SMKG207_cont) & !is.na(SMK_09A_cont), + SMK_09A_cont - SMKG207_cont, + NA) + ) +``` + +## Generating synthetic populations + +For microsimulation models, you may need to generate a synthetic population: + +> replace with the CISNET Smoking History Generator Model when available. +```r +# Generate a synthetic population +synthetic_pop <- generate_synthetic_population( + n = 100000, # Population size + start_year = 1900, # Earliest birth year + end_year = 2020, # Latest birth year + age_distribution = "canada", # Use Canadian age distribution + sex_ratio = 0.49 # Proportion male +) + +# Apply smoking histories to the synthetic population +pop_with_smoking <- generate_smoking_histories( + population = synthetic_pop, + model = apc_model_results +) +``` + +## Model validation and calibration + +### Comparing with historical data + +You can validate your model against historical smoking prevalence data: + +```r +# Load historical smoking prevalence data +historical_data <- read.csv("path/to/historical_prevalence.csv") + +# Compare model predictions with historical data +validation_plot <- compare_with_historical( + model_results = apc_model_results, + historical_data = historical_data, + by = "year" # Compare by year +) + +# Display validation plot +print(validation_plot) +``` + +### Calibrating the model + +If needed, you can calibrate the model to better match external data sources: +TBA... +```r +# Calibrate the model +calibrated_model <- calibrate_model( + model = apc_model_results, + target_data = target_prevalence, + calibration_method = "multiplicative" +) +``` + +## Working with secure environments + +When working in secure environments like Statistics Canada's RDCs, you may need to adapt your workflow: + +```r +# Load secure environment configuration +config <- config::get(file = "path/to/secure_config.yml", config = "secure") + +# Use configuration to access data +secure_data_path <- config$data_path +``` + +## Performance optimization + +For large datasets or complex analyses, you may need to optimize performance: + +```r +# Parallel processing for bootstrap samples +library(parallel) +library(future) + +# Set up parallel processing +plan(multisession, workers = 4) + +# Run bootstrap in parallel +bootstrap_results <- future_lapply(1:100, function(i) { + # Bootstrap sample + sample_idx <- sample(nrow(data), replace = TRUE) + bootstrap_data <- data[sample_idx, ] + + # Run model on bootstrap sample + model <- run_apc_model(bootstrap_data) + + # Return results + return(model$coefficients) +}) +``` + +## Next steps + +- Learn about [implementing custom models](../how-to/custom-models.qmd) +- Explore [integration with other health models](../how-to/integration.qmd) +- See examples of [research applications](../explanation/research-applications.qmd) \ No newline at end of file diff --git a/docs/tutorials/basic-usage.qmd b/docs/tutorials/basic-usage.qmd new file mode 100644 index 0000000..8ea5564 --- /dev/null +++ b/docs/tutorials/basic-usage.qmd @@ -0,0 +1,72 @@ +--- +title: "Basic usage of CSHM" +--- + +This tutorial provides basic usage examples for the Canadian Smoking Histories Model (CSHM). + +## Prerequisites + +Before you begin, make sure you have: + +- Completed the [Getting Started](getting-started.qmd) guide +- Prepared your CCHS data as described in [Processing CCHS Data](../how-to/processing-cchs-data.qmd) + +## Basic workflow + +The typical CSHM workflow consists of four main steps: + +1. **Data preparation**: Load and harmonize CCHS data +2. **Smoking behavior analysis**: Extract smoking initiation and cessation data +3. **APC modeling**: Apply the Age-Period-Cohort model +4. **Generating smoking histories**: Create complete smoking histories + +## Example: Analyzing smoking initiation + +```r +# Load the required packages +library(cshm) +library(dplyr) +library(ggplot2) + +# Load preprocessed CCHS data (see "Processing CCHS Data" guide) +data <- readRDS("path/to/harmonized_cchs_data.rds") + +# Process smoking initiation data by sex +init_male <- process_smoking_initiation(data, sex = "M") +init_female <- process_smoking_initiation(data, sex = "F") + +# Examine the results +summary(init_male) +summary(init_female) + +# Visualize initiation ages by birth cohort +ggplot(init_male, aes(x = cohort, y = age)) + + geom_point(alpha = 0.3) + + geom_smooth(method = "loess") + + labs( + title = "Age of Smoking Initiation by Birth Cohort (Males)", + x = "Birth Year", + y = "Age of Initiation" + ) + + theme_minimal() +``` + +## Example: Running the full model + +```r +# Full model example (to be implemented) +# model_results <- run_apc_model(data) +# +# # Generate smoking histories for a simulated population +# simulated_histories <- generate_smoking_histories( +# n = 10000, # Number of individuals to simulate +# birth_years = 1920:2000, # Birth years to include +# model = model_results # APC model results +# ) +``` + +## Next steps + +- Learn how to interpret the results in [Understanding CSHM Output](../how-to/interpreting-results.qmd) +- Explore [advanced usage options](advanced-usage.qmd) for customizing the model +- See how to [validate your results](../how-to/validating-results.qmd) against reference data \ No newline at end of file diff --git a/docs/tutorials/getting-started.qmd b/docs/tutorials/getting-started.qmd new file mode 100644 index 0000000..3d2f8d0 --- /dev/null +++ b/docs/tutorials/getting-started.qmd @@ -0,0 +1,132 @@ +--- +title: "Getting started with CSHM" +subtitle: "A step-by-step guide to the Canadian Smoking Histories Model" +--- + +## Introduction + +This tutorial will help you get started with the Canadian Smoking Histories Model (CSHM). The CSHM is an R implementation of an Age-Period-Cohort (APC) model for analyzing smoking behavior patterns across different generations and time periods. + +## What is CSHM? + +The Canadian Smoking Histories Model: + +1. Analyzes smoking initiation and cessation patterns from survey data +2. Incorporates age, period, and cohort effects on smoking behavior +3. Generates synthetic smoking histories for population health modeling +4. Harmonizes data across multiple cycles of the Canadian Community Health Survey + +## Prerequisites + +Before you begin, make sure you have: + +- R (version 4.1.0 or higher) +- RStudio (recommended) +- Basic knowledge of R programming +- Access to CCHS data (or the sample datasets provided) + +## Installation + +### Development version + +To install the development version from GitHub: + +```r +# Install remotes package if you don't have it +install.packages("remotes") + +# Install CSHM from GitHub +remotes::install_github("cshgm/cshgm") +``` + +### Working with the source code + +If you want to work with the source code directly: + +```r +# Clone the GitHub repository +git clone https://github.com/Big-Life-Lab/cshm-dev.git +cd cshgm + +# Install renv package if you don't have it +install.packages("renv") + +# Set up the project environment with renv +renv::restore() +``` + +## CSHM workflow + +The CSHM follows a sequential workflow: + +1. **Accessing and loading CCHS data**: Obtaining CCHS data from appropriate sources and loading it into R +2. **Creating a working file**: Selecting required variables and preparing data for analysis +3. **Harmonizing across CCHS cycles**: Standardizing variables and values across different survey cycles +4. **Cleaning and deriving variables**: Processing smoking-related variables for consistency +5. **Data validation and consistency checks**: Creating descriptive tables and verification of data quality +6. **APC modeling**: Applying the Age-Period-Cohort model to estimate smoking behaviors +7. **Generating smoking histories**: Creating synthetic smoking histories based on the model +8. **Model validation**: Comparing model results with historical data + +![CSHM Workflow](../images/workflow-diagram.png) + +## Configuration + +CSHM uses configuration files to manage paths and parameters: + +```r +# Load the default configuration +config <- config::get() + +# Access configuration parameters +data_path <- config$data_path +``` + +You can create custom configurations for different environments by modifying the `config.yml` file. + +## Quick start example + +Here's a simple example to get you started: + +```r +# Load required packages +library(cshm) +library(dplyr) +library(ggplot2) + +# Load sample data included with the package +data("sample_cchs_data") + +# Process smoking initiation data +init_data <- process_smoking_initiation(sample_cchs_data, sex = "M") + +# View the first few rows +head(init_data) + +# Plot age of initiation by birth cohort +ggplot(init_data, aes(x = cohort, y = age)) + + geom_point(alpha = 0.3) + + geom_smooth() + + labs(title = "Age of Smoking Initiation by Birth Cohort", + x = "Birth Year", + y = "Age of Initiation") + + theme_minimal() +``` + +## Step-by-step guides + +The CSHM documentation provides detailed guides for each step of the workflow: + +1. [Data loading and harmonizing](../how-to/data-loading-and-harmonizing.qmd) - Prepare CCHS data for analysis +2. [Processing CCHS data](../how-to/processing-cchs-data.qmd) - Convert raw survey data into format needed for modeling +3. [Running the APC model](../how-to/reproducing-manuel-study.qmd) - Apply the Age-Period-Cohort model +4. [Basic usage examples](basic-usage.qmd) - Common analysis tasks +5. [Advanced usage](advanced-usage.qmd) - Customization and extensions + +## Getting help + +If you encounter issues or have questions: + +- Check the [FAQ](../reference/faq.qmd) +- Submit an issue on [GitHub](https://github.com/Big-Life-Lab/cshm-dev/issues) +- Contact the project maintainers \ No newline at end of file diff --git a/docs/workflow/.gitignore b/docs/workflow/.gitignore new file mode 100644 index 0000000..2ccd777 --- /dev/null +++ b/docs/workflow/.gitignore @@ -0,0 +1,4 @@ +/.quarto/ +**/*.quarto_ipynb +**/*_files/ +*.html diff --git a/docs/workflow/1-variable-setup.qmd b/docs/workflow/1-variable-setup.qmd new file mode 100644 index 0000000..1bf9a01 --- /dev/null +++ b/docs/workflow/1-variable-setup.qmd @@ -0,0 +1,395 @@ +--- +title: "Stage 1 — Variable setup" +subtitle: "Study data dictionary and variable roles" +--- + +## Purpose + +This page serves as the **study data dictionary** — a complete description of every variable used in the CSHM, generated directly from those cchsflow worksheets. If the cchsflow worksheets change, this page updates automatically on re-render. + +The data includes both PUMF and Master versions of variables available for all CCHS cycles. Variables in cchsflow are harmonized across cycles. There are many harmonization issues that are discussed in the cchsflow R package, as well as the protocol. Further the CCHS survey major undergoes redevelopment at different periods. Redevelopment includes redevelopment of the study frame and selection process that affects response bias. + +The main different between the PUMF and Main versions of the CCHS is categorizing continuous variables like age to reduce the risk of responder identification. In this study, the categorized groups like age (DHHGAGE identified as a categorical variable by the "G" before "AGE") are transformed into "pseudo-continous variables" (DHHGAGE_cont identified by "_cont") by assiging the mid-point value of the cateogy. + +## Inputs + +| File | Contents | +|------|----------| +| `worksheets/cshm-variables.csv` | Study variable list: name, label, type, role, section, source | +| `worksheets/cchsflow-variable-details.csv` | In-repo snapshot of cchsflow v3 base recoding rules (cycles 2001–2023) | +| `worksheets/cshm-variable-details.csv` | CSHM extension rows (GEOGPRV and WTS_M, 2019–20 and 2022 cycles) | + +## Outputs + +| Target | Description | +|--------|-------------| +| `variables_sheet` | Data frame: one row per study variable | +| `variable_details_sheet` | Data frame: combined cchsflow base + CSHM extension recoding rules | + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) + +# root must be set before source() calls; use absolute paths here +repo_root <- normalizePath("../..") +knitr::opts_knit$set(root.dir = repo_root) + +cfg <- config::get(file = file.path(repo_root, "config.yml")) +source(file.path(repo_root, "R/variables-sheet-utils.R")) +source(file.path(repo_root, "R/variable-details-sheet-utils.R")) + +withr::with_dir(repo_root, { + variables_sheet <- targets::tar_read("variables_sheet") + variable_details_sheet <- targets::tar_read("variable_details_sheet") +}) +``` + +```{r helpers, include=FALSE} +library(dplyr) +library(knitr) + +# All cycles used in this study (PUMF) +all_pumf_cycles <- c("2001", "2003", "2005", "2007-08", "2009-10", + "2011-12", "2013-14", "2015-16", "2017-18", "2019-20", "2022") + +pumf_cycle_map <- c( + cchs2001_p = "2001", cchs2003_p = "2003", cchs2005_p = "2005", + cchs2007_2008_p = "2007-08", cchs2009_2010_p = "2009-10", + cchs2011_2012_p = "2011-12", cchs2013_2014_p = "2013-14", + cchs2015_2016_p = "2015-16", cchs2017_2018_p = "2017-18", + cchs2019_2020_p = "2019-20", cchs2022_p = "2022" +) +# Master coverage: cchsflow v3 uses _m suffix for Master/RDC files. +# Legacy _i (ICES) and _s (share) suffixes were removed in v3. +master_cycle_map <- c( + cchs2001_m = "2001", cchs2003_m = "2003", cchs2005_m = "2005", + cchs2007_2008_m = "2007-08", cchs2009_2010_m = "2009-10", + cchs2011_2012_m = "2011-12", cchs2013_2014_m = "2013-14", + cchs2015_2016_m = "2015-16", cchs2017_2018_m = "2017-18", + cchs2019_2020_m = "2019-20", cchs2021_m = "2021", + cchs2022_m = "2022", cchs2023_m = "2023" +) + +# --- helper: extract variable names from variableStart notation --- +# Returns list(pumf = "VARNAME", master = "MASTERNAME or same") +extract_var_names <- function(var_name, variable_start) { + if (is.na(variable_start) || variable_start == "") return(list(pumf = var_name, master = "")) + # fallback name in [brackets] is the canonical (master-file) name + fallback <- regmatches(variable_start, regexpr("\\[([A-Za-z0-9_]+)\\]", variable_start)) + fallback <- if (length(fallback) > 0) gsub("\\[|\\]", "", fallback) else var_name + # if fallback differs from var_name, it's the master variable name + master_name <- if (fallback != var_name) fallback else "" + list(pumf = var_name, master = master_name) +} + +# --- helper: get cycle coverage from variable_details --- +# Returns list(pumf = "all" or "2001, 2003 ...", master = "all" or "...") +get_cycle_coverage <- function(var_name, variable_details_sheet) { + rows <- variable_details_sheet[variable_details_sheet$variable == var_name, ] + if (nrow(rows) == 0) return(list(pumf = "—", master = "—")) + + # expand databaseStart (comma-separated dataset names) across all rows + all_datasets <- unlist(strsplit(as.character(rows$databaseStart), ",\\s*")) + all_datasets <- trimws(all_datasets) + + pumf_yrs <- unique(pumf_cycle_map[all_datasets[all_datasets %in% names(pumf_cycle_map)]]) + master_yrs <- unique(master_cycle_map[all_datasets[all_datasets %in% names(master_cycle_map)]]) + pumf_yrs <- sort(pumf_yrs[!is.na(pumf_yrs)]) + master_yrs <- sort(master_yrs[!is.na(master_yrs)]) + + pumf_str <- if (length(pumf_yrs) == 0) "—" + else if (identical(pumf_yrs, all_pumf_cycles)) "all 11 cycles" + else paste(pumf_yrs, collapse = ", ") + + master_str <- if (length(master_yrs) == 0) "—" + else paste(master_yrs, collapse = ", ") + + list(pumf = pumf_str, master = master_str) +} + +# --- helper: categories as HTML lines (one per line) --- +get_categories_html <- function(var_name, variable_details_sheet) { + rows <- get_unique_rec_end_rows(variable_details_sheet, var_name, include_NA = FALSE) + if (nrow(rows) == 0) return("") + pairs <- ifelse( + is.na(rows$catLabel) | rows$catLabel == "", + as.character(rows$recEnd), + paste0("", rows$recEnd, ": ", rows$catLabel) + ) + paste(pairs, collapse = "
") +} + +# --- helper: continuous range --- +get_range <- function(var_name, variable_details_sheet) { + rows <- variable_details_sheet[variable_details_sheet$variable == var_name, ] + rows <- rows[!grepl("^NA::", as.character(rows$recEnd)), ] + if (nrow(rows) == 0) return("") + ends <- suppressWarnings(as.numeric(as.character(rows$recEnd))) + ends <- ends[!is.na(ends)] + if (length(ends) == 0) return("") + paste0(min(ends), "–", max(ends)) +} + +# --- helper: missing data codes as HTML lines --- +get_na_codes_html <- function(var_name, variable_details_sheet) { + rows <- variable_details_sheet[variable_details_sheet$variable == var_name, ] + na_rows <- rows[grepl("^NA::", as.character(rows$recEnd)), ] + if (nrow(na_rows) == 0) return("—") + codes <- paste0("", na_rows$recEnd, ": ", na_rows$catLabel) + paste(unique(codes), collapse = "
") +} + +# --- helper: cycle coverage as named vectors for matrix table --- +# Returns list(pumf = named logical, master = named logical) over all_cycles. +# master_var_name: when the Master file uses a different variable name (e.g., +# DHH_AGE for PUMF's DHHGAGE_cont), pass it here to look up Master coverage +# from that variable's rows in variable_details_sheet. +all_cycles <- c("2001", "2003", "2005", "2007-08", "2009-10", + "2011-12", "2013-14", "2015-16", "2017-18", "2019-20", "2022", "2023") + +get_cycle_coverage_vec <- function(var_name, variable_details_sheet, + master_var_name = NULL) { + # PUMF coverage: always from the primary variable name + rows <- variable_details_sheet[variable_details_sheet$variable == var_name, ] + if (nrow(rows) == 0) { + pumf_v <- setNames(rep(FALSE, length(all_cycles)), all_cycles) + } else { + all_datasets <- trimws(unlist(strsplit(as.character(rows$databaseStart), ",\\s*"))) + pumf_yrs <- unname(pumf_cycle_map[all_datasets[all_datasets %in% names(pumf_cycle_map)]]) + pumf_v <- setNames(all_cycles %in% pumf_yrs, all_cycles) + } + + # Master coverage: use master_var_name if provided, otherwise same variable + master_lookup <- if (!is.null(master_var_name) && master_var_name != var_name) { + master_var_name + } else { + var_name + } + m_rows <- variable_details_sheet[variable_details_sheet$variable == master_lookup, ] + if (nrow(m_rows) == 0) { + # Also check primary variable rows for _m datasets (variables with same name in both) + m_rows <- rows + } + if (nrow(m_rows) == 0) { + master_v <- setNames(rep(FALSE, length(all_cycles)), all_cycles) + } else { + m_datasets <- trimws(unlist(strsplit(as.character(m_rows$databaseStart), ",\\s*"))) + master_yrs <- unname(master_cycle_map[m_datasets[m_datasets %in% names(master_cycle_map)]]) + master_v <- setNames(all_cycles %in% master_yrs, all_cycles) + } + + list(pumf = pumf_v, master = master_v) +} + +# --- build config key → pumf/master variable mapping from cfg$survey --- +# Scalar entries (e.g. cycle) are skipped; only pumf/master list entries are kept. +# Each source entry is now a list with $var, $min, $max. +`%||%` <- function(x, y) if (is.null(x)) y else x +survey_cfg <- cfg$survey +survey_map <- do.call(rbind, lapply(names(survey_cfg), function(key) { + entry <- survey_cfg[[key]] + if (!is.list(entry)) return(NULL) # skip scalars like cycle + pumf <- entry[["pumf"]] + master <- entry[["master"]] + data.frame( + config_key = key, + pumf_varname = if (is.list(pumf)) pumf[["var"]] else pumf %||% NA_character_, + master_varname = if (is.list(master)) master[["var"]] else master %||% NA_character_, + stringsAsFactors = FALSE + ) +})) +``` + +## Study data dictionary + +Each row is one variable. The **Config key : CCHS variable** column shows the `config.yml` key paired with the PUMF variable name; where the Master file uses a different name it is shown on a second line. Categories and ranges are from `variable_details_sheet`. + +^[Missing data codes apply uniformly to all variables: **NA(a)** = not applicable; **NA(b)** = don't know or refused; **NA(c)** = not asked in this cycle.] + +```{r data-dictionary} +#| results: asis +design_vars <- variables_sheet$variable[grepl("design", variables_sheet$role)] + +dict <- variables_sheet |> + filter(!variable %in% design_vars) |> + rowwise() |> + mutate( + config_key = { + hit <- survey_map$config_key[!is.na(survey_map$pumf_varname) & + survey_map$pumf_varname == variable] + if (length(hit) > 0) hit[1] else "" + }, + master_name = { + hit <- survey_map$master_varname[!is.na(survey_map$pumf_varname) & + survey_map$pumf_varname == variable] + if (length(hit) > 0 && !is.na(hit[1]) && hit[1] != variable) hit[1] else "" + }, + key_var = { + key <- config_key + pumf_part <- if (key != "") paste0(key, ": ", variable) else variable + if (master_name != "" && master_name != variable) + paste0(pumf_part, "
Master: ", master_name, "") + else + pumf_part + }, + values = if (variableType == "Categorical") + get_categories_html(variable, variable_details_sheet) + else + get_range(variable, variable_details_sheet) + ) |> + ungroup() |> + select(section, key_var, label, variableType, units, values) + +sections <- unique(dict$section) +sections <- sections[!is.na(sections)] + +for (sec in sections) { + cat("\n\n###", sec, "\n\n") + tbl <- dict |> + filter(section == sec) |> + select(-section) |> + rename( + `Config key: CCHS variable` = key_var, + Label = label, + Type = variableType, + Units = units, + `Values / range` = values + ) + print(kable(tbl, format = "html", escape = FALSE, + table.attr = 'class="table table-sm table-striped"')) +} +``` + +## Cycle coverage + +Each cell shows whether the variable is available in that survey cycle. **P** = PUMF, **M** = Master, **P+M** = both. Blank = not available. Gaps indicate cycles where the variable was not asked or not yet harmonized. + +```{r cycle-coverage} +#| results: asis +# design_vars already defined in data-dictionary chunk above +cov_rows <- variables_sheet |> + filter(!variable %in% design_vars) |> + rowwise() |> + mutate( + config_key = { + hit <- survey_map$config_key[!is.na(survey_map$pumf_varname) & + survey_map$pumf_varname == variable] + if (length(hit) > 0) hit[1] else "" + }, + master_var = { + hit <- survey_map$master_varname[!is.na(survey_map$pumf_varname) & + survey_map$pumf_varname == variable] + if (length(hit) > 0 && !is.na(hit[1]) && hit[1] != "") hit[1] else NA_character_ + }, + cov = list(get_cycle_coverage_vec( + variable, variable_details_sheet, + master_var_name = if (is.na(master_var)) NULL else master_var + )) + ) |> + ungroup() + +sections <- unique(cov_rows$section) +sections <- sections[!is.na(sections)] + +for (sec in sections) { + cat("\n\n###", sec, "\n\n") + sec_rows <- cov_rows[!is.na(cov_rows$section) & cov_rows$section == sec, ] + + mat <- do.call(rbind, lapply(seq_len(nrow(sec_rows)), function(i) { + cv <- sec_rows$cov[[i]] + sapply(all_cycles, function(yr) { + p <- cv$pumf[yr] + m <- cv$master[yr] + if (isTRUE(p) && isTRUE(m)) "P+M" + else if (isTRUE(p)) "P" + else if (isTRUE(m)) "M" + else "" + }) + })) + + tbl <- data.frame( + `Config key` = sec_rows$config_key, + Label = sec_rows$label, + mat, + check.names = FALSE, + stringsAsFactors = FALSE + ) + colnames(tbl)[1:2] <- c("Config key", "Label") + + print(kable(tbl, format = "html", escape = FALSE, + table.attr = 'class="table table-sm table-striped"')) +} +``` + +## Variable roles + +Each variable carries one or more **roles** — a comma-separated label in `variables_sheet` that tells the pipeline how to use that variable. Roles allow downstream stages to select exactly the variables they need without any hard-coding. + +```{r role-table} +# Role definitions +role_defs <- data.frame( + Role = c("design", "intermediate", "predictor", "model-stratifier", + "table1", "table1-stratifier", + "apc-numerator", "apc-denominator", + "imputation-predictor", "sensitivity-analysis"), + Group = c("Survey design", "Harmonization", "Model", "Model", + "Descriptive", "Descriptive", + "APC data prep", "APC data prep", + "Imputation", "Analysis"), + Purpose = c( + "Survey infrastructure — cycle identifier, sampling weights", + "Raw cchsflow input used to derive a unified variable; not used directly by pipeline code", + "Covariate in the APC model or descriptive analysis", + "Stratifies APC models into separate fits (e.g., sex)", + "Appears as a row in Table 1 descriptive statistics", + "Stratifies Table 1 columns (e.g., sex columns)", + "Defines the event indicator for APC numerator cells (Stage 7)", + "Constructs the at-risk person-year denominator (Stage 7)", + "Included in the MICE imputation model (Stage 5)", + "Used in sensitivity analyses only" + ), + stringsAsFactors = FALSE +) +kable(role_defs, format = "html", + table.attr = 'class="table table-sm table-striped"') +``` + +```{r role-variable-crosswalk} +#| results: asis +# Which variables carry which roles? +cat("\n\n### Variables by role\n\n") + +# Expand multi-role rows +role_rows <- lapply(seq_len(nrow(variables_sheet)), function(i) { + roles <- trimws(strsplit(variables_sheet$role[i], ",")[[1]]) + data.frame(role = roles, + variable = variables_sheet$variable[i], + label = variables_sheet$label[i], + source = variables_sheet$source[i], + stringsAsFactors = FALSE) +}) +role_expanded <- do.call(rbind, role_rows) + +for (r in sort(unique(role_expanded$role))) { + cat("\n\n**`", r, "`**\n\n", sep = "") + vars <- role_expanded[role_expanded$role == r, c("variable", "label", "source")] + print(kable(vars, format = "html", row.names = FALSE, + table.attr = 'class="table table-sm"')) +} +``` + +## Key decisions + +**Separation of definition from code.** Variable names, types, categories, and roles are all stored in plain-text CSVs. R code never contains a bare CCHS variable name — it always reads from `survey_var(cfg, "key")` (for key variables) or filters `variables_sheet` by role. This makes the pipeline adaptable to other surveys. + +**PUMF vs Master.** The `source` column (`pumf` / `master` / `both`) controls which variables are loaded in each computing environment. `load_study_data()` filters at load time — PUMF variables only in the open environment; Master variables at the Statistics Canada RDC. + +**Extension rows.** cchsflow v3 now covers age and sex (`DHH_SEX`, `DHHGAGE_cont`) for all 2001–2023 cycles, so their former extension rows have been removed. The CSHM extension rows (`worksheets/cshm-variable-details.csv`) still add recoding rules for `GEOGPRV` and `WTS_M` for the 2019–20 and 2022 cycles, which cchsflow v3 does not yet harmonize. As cchsflow extends its coverage, the remaining extension rows can be removed. + +**Missing data codes.** The CSHM uses `haven::tagged_na()` throughout, preserving the reason for missingness: `NA(a)` = not applicable, `NA(b)` = don't know or refused, `NA(c)` = not asked in this cycle. These are carried through all pipeline stages and used in imputation (Stage 5). + +## Related resources + +- [Stage 2 — Data loading](2-data-loading.qmd) +- [Variable reference](../reference/variables.qmd) +- [How to adapt variables for a different survey](../how-to/custom-models.qmd) +- `schemas/cshm-variables.yaml` — role vocabulary (LinkML schema) diff --git a/docs/workflow/2-data-loading.qmd b/docs/workflow/2-data-loading.qmd new file mode 100644 index 0000000..5530c64 --- /dev/null +++ b/docs/workflow/2-data-loading.qmd @@ -0,0 +1,72 @@ +--- +title: "Stage 2 — Data loading" +subtitle: "Loading and harmonizing 11 CCHS survey cycles" +--- + +## Purpose + +The Canadian Community Health Survey (CCHS) has been conducted annually or biennially since 2001. Each cycle is released as a separate file with slightly different variable names, response categories, and coding conventions. This stage loads all 11 PUMF cycles and harmonizes them into a single consistent data frame using the [`cchsflow`](https://github.com/Big-Life-Lab/cchsflow) R package. + +Harmonization is the most complex and fragile step in the pipeline. This QMD walks through what happens, why certain decisions were made, and what to watch for when extending the pipeline to new cycles. + +## Inputs + +| Target | Description | +|--------|-------------| +| `variables_sheet` | Study variable list (Stage 1) | +| `variable_details_sheet` | Recoding rules (Stage 1) | + +Raw `.RData` files are read directly from `cfg$raw_data_dir` (not a pipeline target). + +## Code + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) +cfg <- config::get(file = "config.yml") +``` + +```{r load-study-data} +study_data <- targets::tar_read("study_data") +``` + +```{r inspect} +# Total respondents across all cycles +nrow(study_data) + +# Respondents per cycle +table(study_data[[survey_var(cfg, "cycle")]]) + +# Variable completeness for key smoking variables +key_vars <- c(survey_var(cfg, "smoking_status"), survey_var(cfg, "age_first_cigarette"), + survey_var(cfg, "years_since_quit")) +sapply(study_data[, key_vars], function(x) mean(!is.na(x))) +``` + +## Outputs + +| Target | Description | +|--------|-------------| +| `study_data` | Combined harmonized data frame (~1.4 million rows × study variables) | + +## Key decisions + +**Variable filtering by source.** `load_study_data()` filters `variables_sheet` to rows where `source %in% c(cfg$data_source, "both")` before passing to `rec_with_table()`. This means only PUMF variables are loaded in the development environment; only Master variables at the RDC. The `survey_var(cfg, "cycle")` variable is excluded from this filter because it is derived manually (not recoded by cchsflow). + +**Tibble → data.frame conversion.** `cchsflow::rec_with_table()` requires a plain `data.frame`. When input is a tibble, column subsetting with logical indices and `recEnd = "copy"` crashes with "list cannot be coerced to double". The fix (`as.data.frame(raw_data)`) is applied before every `rec_with_table()` call. + +**Survey cycle coding.** `SurveyCycle` is added as an integer (1–11) after harmonization. The lookup table in `survey_cycle_code()` maps cchsflow dataset names (e.g., `cchs2013_2014_p`) to integer codes. Integer codes are used throughout for compactness; `cfg$cycle_labels` maps them to display strings for tables and plots. + +**cchsflow-data release naming.** The `draft` config profile uses the `cchsflow-data` GitHub release files, which use `CCHS_2001.RData` naming with an internal object called `table` (not `cchs2001_p`). The `raw_data_file_map` config section handles this naming difference; the pipeline supports both conventions. + +**Missing variables by cycle.** Many sociodemographic variables are only available in some cycles: +- `SDCFIMM` (immigration status): 2007–2014 only +- `EDUDR03`: not available in 2022 +- `SDC_RACEM` (ethnicity): PUMF encodes as binary white/non-white; Master has more categories + +These variables will be `NA` for cycles where they are absent. This is expected and handled by the imputation stage. + +## Related resources + +- [How to load and harmonize CCHS data](../how-to/data-loading-and-harmonizing.qmd) +- cchsflow documentation: diff --git a/docs/workflow/3-data-cleaning.qmd b/docs/workflow/3-data-cleaning.qmd new file mode 100644 index 0000000..f8c5587 --- /dev/null +++ b/docs/workflow/3-data-cleaning.qmd @@ -0,0 +1,85 @@ +--- +title: "Stage 3 — Data cleaning" +subtitle: "Age restriction, distribution checks, and outlier truncation" +--- + +## Purpose + +After harmonization, the data needs two types of cleaning before analysis: + +1. **Age restriction** — the APC model is calibrated to adults. Respondents aged 12–17 (the youngest CCHS age group) are excluded because their smoking behaviour is systematically different and their age is recorded only as a group midpoint in the PUMF. + +2. **Distribution checks and truncation** — continuous predictors with high skewness (|skewness| ≥ 1) are truncated at the 99th percentile. This prevents extreme values from exerting undue leverage on the APC model while preserving the bulk of the distribution. + +Tagged NAs (from `haven::tagged_na()`) are preserved throughout — they carry information about *why* a value is missing (`NA(a)` = not applicable, `NA(b)` = don't know/refused, `NA(c)` = not asked this cycle). + +## Inputs + +| Target | Description | +|--------|-------------| +| `study_data` | Harmonized combined data frame (Stage 2) | +| `variables_sheet` | Variable metadata — identifies continuous predictors by `variableType == "Continuous"` | + +Configuration parameters used: + +| Parameter | Location | Value | Meaning | +|-----------|----------|-------|---------| +| `age_exclusion_category` | `config.yml` | `1` | Age group code for 12–17 year olds | +| `age_grouped` | `config.yml survey:` | `survey_var(cfg, "age_grouped")` | Grouped age variable name | +| `skewness_threshold` | `config.yml` | `1` | |skewness| threshold triggering truncation | +| `truncate_percentile` | `config.yml` | `99` | Upper percentile cap | + +## Code + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) +cfg <- config::get(file = "config.yml") +``` + +```{r load-cleaned-data} +cleaned_data <- targets::tar_read("cleaned_data") +study_data <- targets::tar_read("study_data") +``` + +```{r age-restriction} +# Respondents excluded by age restriction +cat("Before cleaning:", nrow(study_data), "\n") +cat("After cleaning: ", nrow(cleaned_data), "\n") +cat("Excluded: ", nrow(study_data) - nrow(cleaned_data), "\n") +``` + +```{r skewness-check} +# The skewness summary is printed during pipeline execution +# To reproduce: +variables_sheet <- targets::tar_read("variables_sheet") +source("R/data-cleaning.R") + +continuous_predictors <- variables_sheet$variable[ + variables_sheet$variableType == "Continuous" & + variables_sheet$role %in% c("predictor", "model-stratifier") +] +continuous_predictors <- intersect(continuous_predictors, colnames(study_data)) +check_skewness(study_data, continuous_predictors, cfg$skewness_threshold)$summary +``` + +## Outputs + +| Target | Description | +|--------|-------------| +| `cleaned_data` | Data frame with 12–17 year olds excluded and skewed variables truncated | + +## Key decisions + +**Age group 1 = 12–17.** In CCHS PUMF, the grouped age variable (`survey_var(cfg, "age_grouped")`) codes the youngest age group as `1`. The config parameter `age_exclusion_category: 1` encodes this decision explicitly so it can be changed without touching R code (e.g., if applying the model to a survey where the youngest group has a different code). + +**Skewness formula.** `check_skewness()` uses Pearson's moment coefficient (type 2 = unbiased, equivalent to `e1071::skewness(x, type = 2)`), which matches SAS's default. This ensures consistency when comparing results to the original SAS implementation. + +**99th percentile truncation, not log-transformation.** Log-transformation is common for skewed predictors but changes the interpretation of model coefficients. Truncation at the 99th percentile retains the original scale while capping extreme values that are likely measurement artifacts (e.g., implausibly high cigarettes-per-day values in the PUMF midpoint imputation). + +**Tagged NAs pass through.** `dplyr::if_else()` with `missing = x` ensures that `haven::tagged_na` values are not coerced to regular `NA` during truncation. This preserves missingness reason codes for the imputation stage. + +## Related resources + +- [How to process CCHS data](../how-to/processing-cchs-data.qmd) +- `R/data-cleaning.R` — `clean_study_data()`, `check_skewness()`, `truncate_continuous()` diff --git a/docs/workflow/4-descriptive-statistics.qmd b/docs/workflow/4-descriptive-statistics.qmd new file mode 100644 index 0000000..9f3685c --- /dev/null +++ b/docs/workflow/4-descriptive-statistics.qmd @@ -0,0 +1,72 @@ +--- +title: "Stage 4 — Descriptive statistics (pre-imputation)" +subtitle: "Table 1a: study population characteristics before imputation" +--- + +## Purpose + +Before imputation, we describe the study population to document who is in the analysis, how complete the key variables are, and whether the sample composition is consistent across survey cycles. This produces the data underlying **Table 1a** in the manuscript. + +Generating descriptive statistics *before* imputation is important for transparency: it shows the actual observed data, including missingness patterns, rather than the imputed values. The post-imputation table (Stage 6) can then be compared to show what imputation changed. + +## Inputs + +| Target | Description | +|--------|-------------| +| `cleaned_data` | Age-restricted, truncated data frame (Stage 3) | +| `variables_sheet` | Variable metadata — `table1` role selects rows for Table 1 | +| `variable_details_sheet` | Recoding rules — provides value labels for categorical variables | + +## Code + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) +cfg <- config::get(file = "config.yml") +``` + +```{r load-table-data} +table_1a_data <- targets::tar_read("table_1a_data") +variables_sheet <- targets::tar_read("variables_sheet") +variable_details_sheet <- targets::tar_read("variable_details_sheet") +``` + +```{r render-table-1a} +# Reproduce Table 1a +source("R/variables-sheet-utils.R") +source("R/variable-details-sheet-utils.R") +source("R/get-descriptive-data.R") +source("R/create-descriptive-tables.R") + +predictor_vars <- select_vars_by_role("predictor", variables_sheet) + +create_descriptive_table( + descriptive_data = table_1a_data, + variables_sheet = variables_sheet, + variable_details_sheet = variable_details_sheet, + variables = predictor_vars, + column_stratifier = survey_var(cfg, "sex"), + sections_order = c("Sociodemographics", "Health behaviour") +) +``` + +## Outputs + +| Target | Description | +|--------|-------------| +| `table_1a_data` | Named list of descriptive statistics: means, SDs, proportions, N by variable and sex | + +## Key decisions + +**Sex stratification.** Table 1 is stratified by `survey_var(cfg, "sex")`. This is consistent with the APC models, which are fit separately by sex. The config abstraction means the table code does not contain any hardcoded CCHS variable names. + +**Role filtering.** Only variables with `role` containing `"predictor"` appear in Table 1. Variables with `role = "design"` (e.g., survey weights, cycle) or `role = "intermediate"` (raw cchsflow inputs) are excluded. The `select_vars_by_role()` function handles comma-separated multi-role entries correctly. + +**Section ordering.** `sections_order` controls the vertical ordering of variable groups in the table. The `section` column in `variables_sheet` assigns each variable to a group (e.g., "Sociodemographics", "Health behaviour"). Groups not listed in `sections_order` appear after the listed ones. + +## Related resources + +- [Stage 6 — Post-imputation descriptives](6-descriptive-post-imputation.qmd) +- `docs/results/table-1.qmd` — rendered Table 1 output (reads from pipeline cache) +- `R/descriptive-data.R` — `get_cshm_desc_data()` +- `R/create-descriptive-tables.R` — `create_descriptive_table()` diff --git a/docs/workflow/5-imputation.qmd b/docs/workflow/5-imputation.qmd new file mode 100644 index 0000000..905d91d --- /dev/null +++ b/docs/workflow/5-imputation.qmd @@ -0,0 +1,77 @@ +--- +title: "Stage 5 — Multiple imputation" +subtitle: "Handling missing data with MICE" +--- + +## Purpose + +The CCHS has substantial missingness in sociodemographic variables, primarily because some variables are only collected in certain cycles (e.g., immigration status is absent from 2019–20 and 2022) or were refused/unknown by some respondents. Complete-case analysis would discard a large fraction of respondents and introduce selection bias. + +Multiple imputation by chained equations (MICE) fills in missing values by iteratively fitting a model for each incomplete variable given all other variables. The result is `m = 5` complete datasets, which are later combined using Rubin's rules. This stage produces `analysis_data` — the primary input for all downstream modelling. + +## Inputs + +| Target | Description | +|--------|-------------| +| `cleaned_data` | Age-restricted, truncated data frame (Stage 3) | +| `variables_sheet` | Variable metadata — `imputation-predictor` role identifies variables for the MICE model | + +Configuration parameters: + +| Parameter | Value | Meaning | +|-----------|-------|---------| +| `imputation_m` | 5 | Number of imputed datasets | +| `imputation_maxit` | 5 | MICE iterations per imputation | + +## Code + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) +cfg <- config::get(file = "config.yml") +``` + +```{r load-analysis-data} +# analysis_data is a mids object (multiple imputation dataset) +analysis_data <- targets::tar_read("analysis_data") +``` + +```{r inspect-imputation} +# Summary of imputation +print(analysis_data) + +# Missingness before imputation +cleaned_data <- targets::tar_read("cleaned_data") +variables_sheet <- targets::tar_read("variables_sheet") + +source("R/variables-sheet-utils.R") +imputation_vars <- select_vars_by_role("imputation-predictor", variables_sheet) +imputation_vars <- intersect(imputation_vars, colnames(cleaned_data)) + +# Proportion missing per variable +sort(sapply(cleaned_data[, imputation_vars], function(x) mean(is.na(x))), decreasing = TRUE) +``` + +## Outputs + +| Target | Description | +|--------|-------------| +| `analysis_data` | `mids` object (mice): `m = 5` imputed datasets, stored as `data/analysis_data.rds` | + +`analysis_data.rds` is the **primary reproducibility artefact** — sharing it allows others to reproduce all downstream analyses without access to the raw CCHS files. + +## Key decisions + +**MICE over single imputation.** Single imputation (e.g., mean substitution) underestimates variability and produces overconfident standard errors. MICE preserves uncertainty about missing values by propagating it across `m` imputed datasets and combining results with Rubin's rules. + +**Imputation predictor selection.** Only variables with `role` containing `"imputation-predictor"` enter the MICE model. This excludes variables derived from others (e.g., `smoking_status` is derived from raw smoking items) and APC-specific construction variables, which would create circular dependencies. + +**`m = 1` in dev/draft profiles.** The `dev` and `draft` config profiles use `imputation_m: 1` and `imputation_maxit: 1` to speed up iteration. The production run uses `m = 5, maxit = 5` per the protocol. + +**Cycle-specific missingness.** Some variables (e.g., immigration status, ethnicity) are structurally absent from certain CCHS cycles. These are `NA(c)` (tagged NA: not asked this cycle) in the harmonized data. MICE treats these as missing and imputes them — this is appropriate because the variable *would* have had a value if collected. Tagged NA codes are stripped to regular `NA` before MICE is run. + +## Related resources + +- `R/imputation.R` — `impute_data()` +- [mice R package](https://www.rdocumentation.org/packages/mice) +- Protocol §3.3 — missing data strategy diff --git a/docs/workflow/6-descriptive-post-imputation.qmd b/docs/workflow/6-descriptive-post-imputation.qmd new file mode 100644 index 0000000..ed18713 --- /dev/null +++ b/docs/workflow/6-descriptive-post-imputation.qmd @@ -0,0 +1,67 @@ +--- +title: "Stage 6 — Descriptive statistics (post-imputation)" +subtitle: "Table 1b: study population characteristics after imputation" +--- + +## Purpose + +After imputation, we repeat the descriptive statistics on the completed dataset. Comparing Table 1b to Table 1a (Stage 4) allows readers to see what imputation changed: proportions for variables with high missingness will shift, while variables with complete data should be unchanged. + +This is standard practice in studies using multiple imputation — reporting both tables provides full transparency about the role of imputation in the analysis. + +## Inputs + +| Target | Description | +|--------|-------------| +| `analysis_data` | `mids` object — 5 imputed datasets (Stage 5) | +| `variables_sheet` | Variable metadata | +| `variable_details_sheet` | Recoding rules and value labels | + +## Code + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) +cfg <- config::get(file = "config.yml") +``` + +```{r load-table-data} +table_1b_data <- targets::tar_read("table_1b_data") +variables_sheet <- targets::tar_read("variables_sheet") +variable_details_sheet <- targets::tar_read("variable_details_sheet") +``` + +```{r render-table-1b} +source("R/variables-sheet-utils.R") +source("R/variable-details-sheet-utils.R") +source("R/get-descriptive-data.R") +source("R/create-descriptive-tables.R") + +predictor_vars <- select_vars_by_role("predictor", variables_sheet) + +create_descriptive_table( + descriptive_data = table_1b_data, + variables_sheet = variables_sheet, + variable_details_sheet = variable_details_sheet, + variables = predictor_vars, + column_stratifier = survey_var(cfg, "sex"), + sections_order = c("Sociodemographics", "Health behaviour") +) +``` + +## Outputs + +| Target | Description | +|--------|-------------| +| `table_1b_data` | Named list of post-imputation descriptive statistics | + +## Key decisions + +**Pooled over imputations.** `get_cshm_desc_data()` pools descriptive statistics across the `m = 5` imputed datasets using Rubin's rules for means and proportions. Standard deviations reflect within-imputation variability only (between-imputation variability in descriptives is negligible for reporting purposes). + +**Same structure as Table 1a.** The same `create_descriptive_table()` call is used for both tables, ensuring the rows and columns are identical and differences are directly comparable. + +## Related resources + +- [Stage 4 — Pre-imputation descriptives](4-descriptive-statistics.qmd) +- `docs/results/table-1.qmd` — rendered Tables 1a and 1b side by side diff --git a/docs/workflow/7-apc-data-preparation.qmd b/docs/workflow/7-apc-data-preparation.qmd new file mode 100644 index 0000000..bef5fdd --- /dev/null +++ b/docs/workflow/7-apc-data-preparation.qmd @@ -0,0 +1,98 @@ +--- +title: "Stage 7 — APC data preparation" +subtitle: "Building numerator and denominator cells for the Age-Period-Cohort models" +--- + +## Purpose + +The APC models are logistic regressions where each row represents a *person-year at risk*. Before fitting the models, we need to convert the cross-sectional CCHS data into this person-year format by reconstructing each respondent's smoking history up to their survey date, then computing the denominator (person-years at risk of initiating or quitting) and numerator (events: initiations and cessations). + +This is the most computationally expensive step. By keeping it as a separate target from Stage 8, `{targets}` can cache the APC dataset independently — changing model parameters (knots, constraints) only reruns Stage 8, not Stage 7. + +## Inputs + +| Target | Description | +|--------|-------------| +| `analysis_data` | Imputed dataset (Stage 5) | + +Configuration used: + +| Parameter | Location | Description | +|-----------|----------|-------------| +| `survey$age` | `config.yml` | Continuous age variable | +| `survey$sex` | `config.yml` | Sex variable | +| `survey$cycle` | `config.yml` | Survey cycle integer | +| `survey$weight` | `config.yml` | Sampling weight | +| `survey$smoking_status` | `config.yml` | 6-category smoking status | +| `survey$age_first_cigarette` | `config.yml` | Age at first whole cigarette | +| `survey$years_since_quit` | `config.yml` | Years since quitting (former daily smokers) | +| `survey_bound(cfg, "age_first_cigarette", "min")` | `config.yml` | APC floor for initiation age (PUMF: 13, Master: 8) | +| `survey_bound(cfg, "years_since_quit", "min")` | `config.yml` | APC floor for cessation years since quit (0) | +| `apc$age_knots` | `config.yml` | `[10, 15, 20, 50, 60]` | +| `apc$period_knots` | `config.yml` | `[1940, 1950, 1960, 1970, 1980]` | +| `apc$cohort_knots` | `config.yml` | `[1930, 1940, 1945, 1950, 1955, 1960, 1965, 1970, 1975, 1980]` | + +## Code + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) +cfg <- config::get(file = "config.yml") +``` + +```{r load-apc-data} +apc_data <- targets::tar_read("apc_data") +# apc_data is a list: $initiation_men, $initiation_women, +# $cessation_men, $cessation_women +names(apc_data) +``` + +```{r inspect-apc-data} +# Initiation data: one row per person-year at risk of initiating +nrow(apc_data$initiation_men) +nrow(apc_data$initiation_women) + +# Cessation data: one row per person-year at risk of quitting +nrow(apc_data$cessation_men) +nrow(apc_data$cessation_women) + +# Event rates +mean(apc_data$initiation_men$init) +mean(apc_data$cessation_men$init) +``` + +## Outputs + +| Target | Description | +|--------|-------------| +| `apc_data` | Named list with four data frames: `initiation_men`, `initiation_women`, `cessation_men`, `cessation_women` | + +Each data frame contains: + +| Column | Description | +|--------|-------------| +| `age` | Age at risk (years) | +| `period` | Calendar year | +| `cohort` | Birth year (`period - age`) | +| `init` | Event indicator (1 = initiated/quit, 0 = at risk but no event) | +| `weighting` | Survey weight × mortality correction | +| Natural spline columns | Spline basis for age, period, cohort effects | + +## Key decisions + +**APC identity: `cohort = period − age`.** This fundamental identity is the basis for the APC framework. Each respondent's smoking history is reconstructed year-by-year using their reported age at initiation/cessation and the survey year. The cohort effect is not estimated independently — it is derived from the period and age effects. + +**Retrospective history construction.** A current smoker at age 45 in survey year 2014 is recorded as a person-year at risk of cessation at every age from their initiation age to 45. This reconstruction assumes respondents accurately recall their age of initiation and cessation (supported by CCHS validation studies). + +**Mortality adjustment.** Ever-smokers are less likely to survive to survey date than never-smokers, creating survival bias. The `weighting` column incorporates a mortality correction. The primary method is MPoRT (not yet implemented); during development, the Peto constant risk ratio is used as a fallback (see `cfg$apc$mortality_method`). + +**APC floor ages.** Initiation probability is assumed zero before `survey_bound(cfg, "age_first_cigarette", "min")` (PUMF: 13, Master: 8). Cessation probability is assumed zero before `survey_bound(cfg, "years_since_quit", "min")` (0). In PUMF data, the practical floor for observed initiation is ~13 due to midpoint imputation of grouped categories. The Master analytical floor of 8 captures genuine early initiations. + +**Four separate data frames, not one.** Men and women are modelled separately (consistent with Manuel et al. 2020). Initiation and cessation are separate models. Keeping four data frames lets Stage 8 fit all four models in parallel using `{targets}` branching. + +## Related resources + +- [Stage 8 — APC model fitting](8-apc-model.qmd) +- [APC methodology explanation](../explanation/apc-method.qmd) +- `R/apc-model.R` — `prepare_apc_data()`, `build_initiation_data()`, `build_cessation_data()` +- Protocol §3.4 — analytical approach diff --git a/docs/workflow/8-apc-model.qmd b/docs/workflow/8-apc-model.qmd new file mode 100644 index 0000000..cb582eb --- /dev/null +++ b/docs/workflow/8-apc-model.qmd @@ -0,0 +1,104 @@ +--- +title: "Stage 8 — APC model fitting" +subtitle: "Fitting the Age-Period-Cohort logistic regression models" +--- + +## Purpose + +This stage fits four logistic regression models — initiation and cessation, separately for men and women — using the person-year data from Stage 7. Each model estimates how the probability of initiating or quitting smoking varies by age, calendar period, and birth cohort, after accounting for the APC identification constraint. + +The models use constrained natural cubic splines (Holford knot structure) with period and cohort effects held constant beyond the observed data range. This produces smooth, interpretable rate curves that can be projected forward to 2050. + +## Inputs + +| Target | Description | +|--------|-------------| +| `apc_data$initiation_men` | Person-year initiation data, men (Stage 7) | +| `apc_data$initiation_women` | Person-year initiation data, women (Stage 7) | +| `apc_data$cessation_men` | Person-year cessation data, men (Stage 7) | +| `apc_data$cessation_women` | Person-year cessation data, women (Stage 7) | + +Configuration used: + +| Parameter | Value | Description | +|-----------|-------|-------------| +| `apc$age_knots` | `[10, 15, 20, 50, 60]` | Natural spline knots for age effect | +| `apc$period_knots` | `[1940, 1950, 1960, 1970, 1980]` | Natural spline knots for period effect | +| `apc$cohort_knots` | `[1930, ..., 1980]` | Natural spline knots for cohort effect (10 knots) | +| `apc$period_constraints$initiation_men_from` | `1999` | Period effect constant from this year (men) | +| `apc$period_constraints$initiation_women_from` | `2003` | Period effect constant from this year (women) | +| `apc$period_constraints$cessation_from` | `2013` | Period effect constant from this year | +| `apc$cohort_constraints$initiation_prior_to` | `1920` | Cohort effect constant before this year | +| `apc$cohort_constraints$cessation_from` | `1985` | Cohort effect constant from this year | +| `apc$spline_library` | `"splines2"` | Primary: `splines2::nsp()` | +| `apc$spline_type` | `"nsp"` | Natural spline type | +| `apc$mortality_method` | `"peto"` | Current: Peto (development); primary: MPoRT | + +## Code + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) +knitr::opts_knit$set(root.dir = normalizePath("../..")) +cfg <- config::get(file = "config.yml") +``` + +```{r load-models} +model_init_men <- targets::tar_read("apc_model_initiation_men") +model_init_women <- targets::tar_read("apc_model_initiation_women") +model_cess_men <- targets::tar_read("apc_model_cessation_men") +model_cess_women <- targets::tar_read("apc_model_cessation_women") +``` + +```{r inspect-models} +# Model summaries +summary(model_init_men)$coefficients |> head(10) + +# Model fit statistics +cat("Initiation men AIC: ", AIC(model_init_men), "\n") +cat("Initiation women AIC: ", AIC(model_init_women), "\n") +cat("Cessation men AIC: ", AIC(model_cess_men), "\n") +cat("Cessation women AIC: ", AIC(model_cess_women), "\n") +``` + +```{r plot-age-effects, eval=FALSE} +# Plot estimated age effects (requires rate table generation — Stage 9) +# Placeholder: will be populated when Stage 9 is implemented +``` + +## Outputs + +| Target | Description | +|--------|-------------| +| `apc_model_initiation_men` | Fitted `glm` object — initiation model, men | +| `apc_model_initiation_women` | Fitted `glm` object — initiation model, women | +| `apc_model_cessation_men` | Fitted `glm` object — cessation model, men | +| `apc_model_cessation_women` | Fitted `glm` object — cessation model, women | + +## Key decisions + +**Four independent targets, not one.** Each model is a separate `{targets}` target. This means changing the cessation constraints only reruns the cessation models — not the initiation models. It also allows the four models to run in parallel with `tar_make(callr_function = callr::r)`. + +**Natural cubic splines (`nsp`), not restricted cubic splines (`rcs`).** The primary analysis uses `splines2::nsp()` (natural splines with zero second derivatives at the boundary). Restricted cubic splines (`rms::rcs()`) are a prespecified sensitivity analysis (`cfg$apc$spline_type = "rcs"`). Both impose the same APC identification constraint but differ in boundary behaviour. + +**Period constraints.** The period effect is held constant beyond the most recent observed data to prevent extrapolation artifacts in projections. Men's initiation period effect is held constant from 1999; women's from 2003 (reflecting the later peak in women's smoking uptake). These constraint years are based on the original Ontario analysis (Manuel et al. 2020). + +**Cohort constraint.** The initiation cohort effect is held constant prior to 1920 (small sample, sparse data). The cessation cohort effect is held constant from 1985 forward (insufficient follow-up time for younger cohorts to accumulate cessation history). + +**Mortality method: Peto (current).** The primary analysis specifies MPoRT mortality correction. MPoRT is not yet implemented; the Peto constant risk ratio is used during development. A sensitivity analysis compares Peto and MPoRT results (`cfg$apc$mortality_method`). + +## Sensitivity analyses + +| Analysis | Parameter | Primary | Alternative | +|----------|-----------|---------|-------------| +| Spline type | `cfg$apc$spline_type` | `"nsp"` | `"rcs"` | +| Mortality method | `cfg$apc$mortality_method` | `"mport"` | `"peto"` | +| Period constraints | `cfg$apc$period_constraints` | See above | Extended to 2003/2007/2015 | + +## Related resources + +- [Stage 7 — APC data preparation](7-apc-data-preparation.qmd) +- [APC methodology explanation](../explanation/apc-method.qmd) +- `R/apc-model.R` — `fit_apc_model()` +- Protocol §3.4.3 — APC model specification +- Holford et al. (2014) — foundational APC methodology +- Manuel et al. (2020) — Ontario adaptation diff --git a/docs/workflow/_quarto.yml b/docs/workflow/_quarto.yml new file mode 100644 index 0000000..fc448cd --- /dev/null +++ b/docs/workflow/_quarto.yml @@ -0,0 +1,7 @@ +format: + html: + theme: cosmo + toc: true + code-copy: true + code-tools: true + highlight-style: github diff --git a/docs/workflow/index.qmd b/docs/workflow/index.qmd new file mode 100644 index 0000000..3a9a306 --- /dev/null +++ b/docs/workflow/index.qmd @@ -0,0 +1,67 @@ +--- +title: "Pipeline workflow" +subtitle: "A step-by-step walkthrough of the CSHM analysis pipeline" +--- + +The CSHM uses a [`{targets}`](https://docs.ropensci.org/targets/) pipeline to manage the analysis workflow. Each step is defined as a *target* — a named R object with a recipe for computing it. Targets are only recomputed when their inputs change, making the pipeline fast and fully reproducible. + +## Pipeline overview + +```{r dag, eval=FALSE} +# Visualise the pipeline dependency graph +targets::tar_visnetwork() +``` + +## Pipeline stages + +| Step | Target | What it does | +|------|--------|-------------| +| [1. Variable setup](1-variable-setup.qmd) | `variables_sheet`, `variable_details_sheet` | Load the variable dictionary and recoding rules | +| [2. Data loading](2-data-loading.qmd) | `study_data` | Load and harmonize all 11 CCHS cycles | +| [3. Data cleaning](3-data-cleaning.qmd) | `cleaned_data` | Age restriction, distribution checks, truncation | +| [4. Descriptive statistics](4-descriptive-statistics.qmd) | `table_1a_data` | Pre-imputation Table 1 statistics | +| [5. Imputation](5-imputation.qmd) | `analysis_data` | Multiple imputation (MICE) | +| [6. Post-imputation descriptives](6-descriptive-post-imputation.qmd) | `table_1b_data` | Post-imputation Table 1 statistics | +| [7. APC data preparation](7-apc-data-preparation.qmd) | `apc_data` | Build numerator/denominator cells for APC models | +| [8. APC model fitting](8-apc-model.qmd) | `apc_model_*` | Fit initiation and cessation APC models | + +## Running the pipeline + +```r +# Full pipeline +targets::tar_make() + +# Run through a specific stage +targets::tar_make(apc_data) + +# Inspect a target's output +targets::tar_read(apc_data) + +# See what is outdated +targets::tar_outdated() +``` + +## Configuration + +All environment-specific settings live in `config.yml`. Set the profile before running: + +```r +Sys.setenv(R_CONFIG_ACTIVE = "dev") # 10% sample, fast iteration +Sys.setenv(R_CONFIG_ACTIVE = "prod") # Full PUMF sample +``` + +See `config.yml` for the full list of profiles and parameters. + +## Reproducibility + +- [`{renv}`](https://rstudio.github.io/renv/) locks all R package versions (`renv.lock`) +- [`{targets}`](https://docs.ropensci.org/targets/) caches outputs — rerunning is safe and fast +- `execute: freeze: auto` in `_quarto.yml` freezes rendered outputs when pipeline data is unavailable + +To fully reproduce the analysis from scratch: + +```r +renv::restore() # Restore R packages +targets::tar_make() # Run the pipeline +quarto render # Render the documentation site +``` diff --git a/index.qmd b/index.qmd new file mode 100644 index 0000000..737942c --- /dev/null +++ b/index.qmd @@ -0,0 +1,64 @@ +--- +title: "Canadian Smoking Histories Model" +--- + +The Canadian Smoking Histories Model (CSHM) reconstructs smoking initiation, cessation, and intensity by birth cohort, sex, and province from 1965 to 2023, with projections to 2050. It uses Age-Period-Cohort (APC) models fit to 11 cycles of the Canadian Community Health Survey (CCHS; ~1.4 million respondents) and extends the Ontario analysis of Manuel et al. (2020) to all of Canada. + +This repository serves three purposes: + +:::{.grid} + +:::{.g-col-4} +### 1. Study protocol + +A fully prespecified protocol, written before final analysis, documenting all analytical decisions in advance. + +- [Full protocol](docs/protocol/full-protocol.qmd) +- [One-page summary](docs/protocol/study-summary.qmd) +::: + +:::{.g-col-4} +### 2. Transparent workflow + +A step-by-step walkthrough of every pipeline stage — code, outputs, and the reasoning behind each methodological decision. Designed so an undergraduate student can follow the full analysis. + +- [Pipeline overview](docs/workflow/index.qmd) +- [Stage 2: Data loading](docs/workflow/2-data-loading.qmd) +- [Stage 7: APC data prep](docs/workflow/7-apc-data-preparation.qmd) +- [Stage 8: Model fitting](docs/workflow/8-apc-model.qmd) +::: + +:::{.g-col-4} +### 3. Reproducible manuscript + +A Quarto manuscript where every reported number is inline R code reading from the pipeline — no hardcoded values. Run the pipeline, render the manuscript, submit. + +- [Manuscript](manuscript/manuscript.qmd) *(render locally)* +::: + +::: + +## Quick start + +```r +# Restore R environment +renv::restore() + +# Run the pipeline (dev profile: 10% sample, fast iteration) +Sys.setenv(R_CONFIG_ACTIVE = "dev") +targets::tar_make() + +# Preview the documentation site +quarto preview + +# Render the manuscript to Word +quarto render manuscript/manuscript.qmd +``` + +## Key reference + +> Manuel DG, Wilton AS, Bennett C, Dass R, Laporte A, Holford TR. Smoking patterns based on birth-cohort-specific histories from 1965 to 2013, with projections to 2041. *Health Reports*. 2020;31(11):16–31. [doi:10.25318/82-003-x202001100002-eng](https://doi.org/10.25318/82-003-x202001100002-eng) + +## Licence + +Code: [MIT License](LICENSE). CCHS data: [Statistics Canada Open Licence](https://www.statcan.gc.ca/eng/reference/licence). diff --git a/manuscript/_quarto.yml b/manuscript/_quarto.yml new file mode 100644 index 0000000..071aa3d --- /dev/null +++ b/manuscript/_quarto.yml @@ -0,0 +1,78 @@ +project: + type: default + output-dir: output + pre-render: ../_extensions/docstyle/generate-reference.R + post-render: ../_extensions/docstyle/update-field-codes.R + +bibliography: ../references.bib + +format: + docstyle-docx: + toc: false + number-sections: false + reference-doc: ../_docstyle/reference.docx + +docstyle: + css: + - ../styles.css + sidecar-dir: ../_docstyle + header: + enabled: true + left: "Canadian Smoking Histories Model" + first-page: false + style: header + footer: + enabled: true + left: "DRAFT" + right: "Page {page} of {pages}" + first-page: false + style: footer + author-plate: + enabled: false + authors: + - name: + given: "Douglas" + family: "Manuel" + email: "dmanuel@ohri.ca" + orcid: "0000-0003-0912-0845" + corresponding: true + affiliations: + - ref: ohri + - name: + given: "Rafael" + family: "Meza" + orcid: "0000-0002-1076-5037" + affiliations: + - ref: bccancer + - ref: ubc + - name: + given: "Rochelle E." + family: "Garner" + email: "rochelle.garner@statcan.gc.ca" + affiliations: + - ref: statscan + - name: + given: "Maikol" + family: "Diasparra" + email: "maikol.diasparra@statcan.gc.ca" + affiliations: + - ref: statscan + affiliations: + - id: ohri + name: "Ottawa Hospital Research Institute" + city: "Ottawa" + country: "Canada" + - id: bccancer + name: "BC Cancer Research Institute" + city: "Vancouver" + country: "Canada" + - id: ubc + name: "University of British Columbia" + department: "School of Population and Public Health" + city: "Vancouver" + country: "Canada" + - id: statscan + name: "Statistics Canada" + department: "Health Analysis Division" + city: "Ottawa" + country: "Canada" diff --git a/manuscript/manuscript.qmd b/manuscript/manuscript.qmd new file mode 100644 index 0000000..2503a22 --- /dev/null +++ b/manuscript/manuscript.qmd @@ -0,0 +1,150 @@ +--- +title: "Smoking patterns in Canada by birth cohort, 1965–2023, with projections to 2050: the Canadian Smoking Histories Model" +status: "Draft" +version-summary: + date: "2026-03-16" + version: "0.1.0" +version-history: + - version: "0.1.0" + date: "2026-03-16" + description: "Initial manuscript stub — inline result placeholders." +--- + +[{{< meta version-summary.date >}}]{.date} \| Version: [{{< meta version-summary.version >}}]{.version} + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) + +# Set working directory to repo root so tar_read() finds the pipeline store +knitr::opts_knit$set(root.dir = normalizePath("..")) + +library(targets) +library(dplyr) + +cfg <- config::get(file = here::here("config.yml")) +source(here::here("R/config-utils.R")) + +# Helper: format large numbers with commas +fmt_n <- function(x) format(round(x), big.mark = ",", scientific = FALSE) + +# Helper: format proportions as percentages +fmt_pct <- function(x, digits = 1) paste0(round(x * 100, digits), "%") +``` + +```{r load-pipeline-results, include=FALSE} +# Load cached pipeline targets — all numbers in this manuscript come from here. +# Run targets::tar_make() first if results are not available. +study_data <- tar_read("study_data") +cleaned_data <- tar_read("cleaned_data") +analysis_data <- tar_read("analysis_data") +``` + +```{r derived-values, include=FALSE} +# Sample size +n_respondents_total <- nrow(study_data) +n_respondents_cleaned <- nrow(cleaned_data) +n_excluded_age <- n_respondents_total - n_respondents_cleaned + +# Cycle counts +n_cycles <- length(unique(study_data[[cfg$survey$cycle]])) +``` + +::: author-plate +::: + +::: toc +::: + +# Abstract + +**Background.** Smoking behaviour varies across birth cohorts in ways that affect projections of tobacco-attributable disease and evaluation of tobacco control policies in Canada. A pan-Canadian smoking histories model does not yet exist. + +**Objectives.** To develop a Canadian Smoking Histories Model (CSHM) describing smoking initiation, cessation, and intensity by birth cohort, sex, and province from 1965 to 2023, with projections to 2050. + +**Methods.** We used `r n_cycles` cycles of the Canadian Community Health Survey (CCHS; 2001–2022), comprising `r fmt_n(n_respondents_cleaned)` respondents after exclusions. Age-period-cohort logistic regression models with constrained natural cubic splines were fit separately for men and women to estimate annual probabilities of smoking initiation and cessation. Mortality-adjusted weights were applied to correct for survival bias. Projections were extended to 2050 under status quo conditions. + +**Results.** [To be completed when pipeline is fully run.] + +**Conclusions.** [To be completed.] + +::: {.section-body} + +# 1. Introduction + +Smoking remains the leading cause of preventable death in Canada, responsible for approximately 48,000 deaths annually [@HealthCanada_SmokingMortality_2024]. Smoking behaviour is not uniform across the population — it varies markedly by birth cohort, sex, province, and socioeconomic position, reflecting decades of evolving social norms, tobacco control policies, and industry marketing [@Manuel_HR_2020; @Holford_AJPM_2014]. + +Population health models used to evaluate tobacco control policies and project disease burden (e.g., OncoSim, POHEM, SimSmoke) require current smoking histories as inputs. The most recent Canadian parameters were derived from the 1994–2004 National Population Health Survey (NPHS), now over 20 years old [@hennessy2015; @gauvreau2017; @chaiton2021]. Meanwhile, smoking patterns have continued to evolve — particularly among younger cohorts, immigrant populations, and equity-deserving groups. + +The CCHS, with `r fmt_n(n_respondents_total)` respondents across `r n_cycles` survey cycles (2001–2022), provides an unparalleled opportunity to address this gap. We apply the age-period-cohort (APC) framework developed by Holford et al. [-@Holford_AJPM_2014] and adapted for Ontario by Manuel et al. [-@Manuel_HR_2020] to all Canadian provinces and territories. + +# 2. Methods + +## 2.1 Data + +We used all available cycles of the CCHS (2001–2022 PUMF; 2001–2023 Master files), comprising `r fmt_n(n_respondents_total)` respondents. After excluding respondents aged 12–17 years (`r fmt_n(n_excluded_age)` excluded), the analytic sample comprised `r fmt_n(n_respondents_cleaned)` respondents. Variables were harmonized across cycles using the `cchsflow` R package [@cchsflow]. + +## 2.2 Smoking status definitions + +| Status | Definition | +|--------|-----------| +| Never smoker | <100 lifetime cigarettes AND never smoked a whole cigarette | +| Current smoker | ≥100 lifetime cigarettes AND currently smokes daily or occasionally | +| Former smoker | ≥100 lifetime cigarettes AND not currently smoking | + +## 2.3 Analytical approach + +We fit two logistic regression models using an age-period-cohort framework: + +1. **Initiation model** — annual probability of transitioning from never smoker to current smoker, conditional on being a never smoker at age *a*−1. Probability assumed zero before age `r survey_bound(cfg, "age_first_cigarette", "min")`. + +2. **Cessation model** — conditional probability of a current smoker quitting at age *a*. Probability assumed zero before `r survey_bound(cfg, "years_since_quit", "min")` years since quitting. + +Both models used constrained natural cubic splines with the knot structure from Holford et al. [-@Holford_AJPM_2014]: age knots `r paste0("[", paste(cfg$apc$age_knots, collapse = ", "), "]")`, period knots `r paste0("[", paste(cfg$apc$period_knots, collapse = ", "), "]")`, and cohort knots `r paste0("[", paste(cfg$apc$cohort_knots, collapse = ", "), "]")`. + +Period effects were held constant beyond observed data: men's initiation from `r cfg$apc$period_constraints$initiation_men_from`, women's initiation from `r cfg$apc$period_constraints$initiation_women_from`, and cessation from `r cfg$apc$period_constraints$cessation_from`. Cohort effects were held constant prior to `r cfg$apc$cohort_constraints$initiation_prior_to` (initiation) and from `r cfg$apc$cohort_constraints$cessation_from` (cessation). + +## 2.4 Missing data + +Missing sociodemographic variables were handled using multiple imputation by chained equations (MICE; `m = `r cfg$imputation_m`, maxit = `r cfg$imputation_maxit`). Variables structurally absent from some cycles (e.g., immigration status) were imputed using available cycle data. + +# 3. Results + +[To be completed when pipeline is fully run.] + +## 3.1 Study population + +[Table 1 — characteristics of `r fmt_n(n_respondents_cleaned)` respondents] + +## 3.2 Smoking initiation rates by cohort + +[Figures and tables — to be added at Stage 9] + +## 3.3 Smoking cessation rates by cohort + +[Figures and tables — to be added at Stage 9] + +## 3.4 Projected smoking prevalence to 2050 + +[Projections to `r cfg$apc$projection_max` — to be added at Stage 9] + +# 4. Discussion + +[To be completed.] + +# 5. Conclusions + +[To be completed.] + +# References + +::: bibliography +::: + +::: + +::: {.section-body page-break="true"} + +::: version-history +::: + +::: diff --git a/pop-draft-manuscript.css b/pop-draft-manuscript.css new file mode 100644 index 0000000..692bfa1 --- /dev/null +++ b/pop-draft-manuscript.css @@ -0,0 +1,31 @@ +/* POPCORN Draft Manuscript Layer + * Overrides popcorn-base.css for draft/review documents + * + * Changes from base: + * - 12pt body text (vs 11pt) for easier reading + * - 1.15 line spacing (vs single) for annotation room + * + * Usage in _quarto.yml: + * docstyle: + * css: + * - popcorn-base.css + * - pop-draft-manuscript.css + */ + +/* Override body text for draft review */ +p, body { + font-size: 12pt; + line-height: 1.15; +} + +/* Lists should match body text */ +ol, ul { + font-size: 12pt; + line-height: 1.15; +} + +/* Tables can stay at 11pt for density, but bump line height */ +.table-formal, +.table-grid { + line-height: 1.15; +} diff --git a/popcorn-base.css b/popcorn-base.css new file mode 100644 index 0000000..6377409 --- /dev/null +++ b/popcorn-base.css @@ -0,0 +1,397 @@ +/* POPCORN Base Styles + * Core typography and formatting for POPCORN documents + * + * This is the base layer. Additional layers can override: + * - pop-draft-manuscript.css (12pt body, 1.15 line-height for review) + * - pop-web.css (web-specific adjustments) + * + * Typography: + * Headings: Libre Baskerville (14pt/13pt/11pt hierarchy) + * Body: Hanken Grotesk (11pt default) + */ + +/* ========================================================================== + COLOUR PALETTE (shared with popcorn.css) + ========================================================================== */ + +:root { + /* Valhalla - RGB: 38, 44, 58 */ + --popcorn-valhalla: #262c3a; + + /* Chardonnay - RGB: 253, 200, 130 */ + --popcorn-chardonnay: #fdc882; + + /* Teal - links */ + --popcorn-teal: #2ea6cc; + + --popcorn-white: #ffffff; +} + +/* ========================================================================== + TYPOGRAPHY - Print/Word optimised + ========================================================================== */ + +/* Headings - Libre Baskerville for formal documents */ +h1 { + font-family: "Libre Baskerville", "Georgia", serif; + font-size: 14pt; + font-weight: bold; + color: #262c3a; +} + +h2 { + font-family: "Libre Baskerville", "Georgia", serif; + font-size: 13pt; + font-weight: bold; + color: #262c3a; +} + +h3 { + font-family: "Libre Baskerville", "Georgia", serif; + font-size: 11pt; + font-weight: bold; + color: #262c3a; +} + +h4 { + font-family: "Libre Baskerville", "Georgia", serif; + font-size: 11pt; + font-weight: bold; + font-style: italic; + color: #262c3a; +} + +h5 { + font-family: "Libre Baskerville", "Georgia", serif; + font-size: 11pt; + font-weight: normal; + color: #262c3a; +} + +/* Body text - Hanken Grotesk (consistent across platforms) */ +p, body { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + font-weight: normal; + color: #000000; +} + +/* Links */ +a { + color: #2ea6cc; +} + +/* ========================================================================== + DOCUMENT STRUCTURE (headers, footers, title page metadata) + ========================================================================== */ + +.footer { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 10pt; + color: #000000; +} + +.header { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 10pt; + color: #262c3a; +} + +/* Author block styles - for title page metadata */ +.author { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 12pt; + text-align: center; +} + +.affiliation { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 10pt; + font-style: italic; + text-align: center; + color: #666666; +} + +/* Version block styles - for title page metadata */ +.date { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + text-align: center; +} + +.version { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + text-align: center; + font-style: italic; +} + +/* ========================================================================== + SEMANTIC STYLES + ========================================================================== */ + +/* Title style - for document title on cover/first page */ +.title { + font-family: "Libre Baskerville", "Georgia", serif; + font-size: 18pt; + font-weight: bold; + color: #262c3a; +} + +/* Subtitle */ +.subtitle { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 14pt; + font-weight: normal; + color: #262c3a; +} + +/* Emphasis/callout text */ +.callout { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 10pt; + font-style: italic; + color: #666666; +} + +/* ========================================================================== + UTILITY CLASSES (for manual styling in Quarto divs) + ========================================================================== */ + +.libre-baskerville { + font-family: "Libre Baskerville", "Georgia", serif; +} + +.hanken-grotesk { + font-family: "Hanken Grotesk", "Arial", sans-serif; +} + +.valhalla { + color: #262c3a; +} + +.chardonnay-bg { + background-color: #fdc882; +} + +.center { + text-align: center; +} + +/* ========================================================================== + TABLE OF CONTENTS STYLES + Harvested from POPCORN_StrategicAdvisoryCommitteeTOR_V1.0.0.docx + - TOC entries use Hanken Grotesk (body font), not headings font + - TOC 1: bold, no indent + - TOC 2: Hanken Grotesk Light, indented + ========================================================================== */ + +/* TOC Heading - Libre Baskerville italic (matches document heading style) */ +.toc-heading { + font-family: "Libre Baskerville", "Georgia", serif; + font-size: 14pt; + font-weight: bold; + font-style: italic; + color: #252c56; +} + +/* TOC Level 1 - Hanken Grotesk bold, no indent, single line spacing */ +.toc-1 { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + font-weight: bold; + color: #000000; + line-height: 1; + margin-bottom: 0; +} + +/* TOC Level 2 - Hanken Grotesk Light, indented 12pt (~238 twips) */ +.toc-2 { + font-family: "Hanken Grotesk Light", "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + font-weight: normal; + color: #000000; + margin-left: 12pt; + line-height: 1; + margin-bottom: 0; +} + +/* TOC Level 3 - Hanken Grotesk Light, indented 24pt */ +.toc-3 { + font-family: "Hanken Grotesk Light", "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + font-weight: normal; + color: #000000; + margin-left: 24pt; + line-height: 1; + margin-bottom: 0; +} + +/* ========================================================================== + FOOTNOTE STYLES + Harvested from POPCORN_StrategicAdvisoryCommitteeTOR_V1.0.0.docx + - FootnoteText: 10pt Hanken Grotesk, single line spacing, no space after + ========================================================================== */ + +/* Footnote Text - paragraph style for footnote body */ +.footnote-text { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 10pt; + font-weight: normal; + color: #000000; + line-height: 1; + margin-bottom: 0; +} + +/* ========================================================================== + LIST STYLES - Architecture + + Standard markdown syntax maps to default list types: + - Bullet lists: `-` syntax in QMD + - Numbered lists: `1.` syntax in QMD + + Pandoc handles rendering. For DOCX, post-processing can modify + numbering.xml to achieve custom formats (e.g., 1./a./i. hierarchy). + + Custom list classes (e.g., `.my-custom-list`) can be applied via + fenced divs in QMD: + + ::: {.my-custom-list} + 1. First item + 2. Second item + ::: + + For HTML: CSS handles custom classes natively. + For DOCX: Post-processing required (Pandoc doesn't pass div classes + to Word list numbering definitions). + ========================================================================== */ + +/* Default numbered list styling + Applied to standard `1.` markdown lists + Renders as: 1. 2. 3. (Pandoc default) +*/ +ol { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; +} + +/* Default bullet list styling + Applied to standard `-` markdown lists + Renders as: • ◦ ▪ hierarchy (Pandoc default) +*/ +ul { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; +} + +/* ========================================================================== + TABLE STYLES + Harvested from POPCORN_StrategicAdvisoryCommitteeTOR_V1.0.0.docx + + Usage in QMD: + ::: {.table-formal} + | Column 1 | Column 2 | + |----------|----------| + | Data | Data | + ::: + + The Lua filter (table-style.lua) reads these CSS properties and converts + them to OpenXML table formatting during Pandoc rendering. + ========================================================================== */ + +/* Formal table style - top/bottom borders, shaded header row + Used for structured data tables like Domain/Responsibility mapping +*/ +.table-formal { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + border-top: 1pt solid #7F7F7F; + border-bottom: 1pt solid #7F7F7F; + border-left: none; + border-right: none; +} + +.table-formal th { + background-color: #D9D9D9; + font-weight: normal; + padding: 6pt; +} + +.table-formal td { + padding: 6pt; +} + +/* Grid table style - full borders on all cells + Used for version history and similar tabular data +*/ +.table-grid { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 11pt; + border: 1pt solid #000000; + border-collapse: collapse; +} + +.table-grid th, +.table-grid td { + border: 1pt solid #000000; + padding: 6pt; +} + +.table-grid th { + font-weight: bold; +} + +/* ========================================================================== + REVISION STYLES (Track Changes Preview) + Used for visualising Word track changes in HTML preview. + The Lua filter (revisions-inject.lua) converts these to OpenXML for Word. + ========================================================================== */ + +/* Deletions - strikethrough with red background + QMD syntax: [~~deleted text~~]{.del id="x"} +*/ +.del { + background-color: #ffebe9; /* Light red background */ + color: #6a737d; /* Muted text */ + text-decoration: line-through; +} + +/* Insertions - underlined with green background + QMD syntax: [inserted text]{.ins id="y"} +*/ +.ins { + background-color: #e6ffec; /* Light green background */ + text-decoration: underline; +} + +/* ========================================================================== + COMMENT STYLES (Preview) + Used for visualising Word comments in HTML preview. + The Lua filter (comment-inject.lua) converts these to OpenXML for Word. + ========================================================================== */ + +/* Comment spans - highlighted text indicating commented content + QMD syntax: [commented text]{.comment id="1"} +*/ +.comment { + background-color: #fff3cd; /* Light yellow/amber background */ + border-bottom: 2px solid #ffc107; /* Amber underline */ +} + +/* ========================================================================== + BLOCKQUOTE STYLE + Left bar (Valhalla) + grey background — for reporting guideline + placeholders and callout notes + ========================================================================== */ + +blockquote { + font-family: "Hanken Grotesk", "Arial", sans-serif; + font-size: 10pt; + font-style: italic; + color: #444444; + background-color: #F2F2F2; + border-left: 3pt solid #262c3a; + margin-left: 0; + margin-right: 0; + padding: 6pt 12pt; +} diff --git a/references.bib b/references.bib new file mode 100644 index 0000000..df8c9e3 --- /dev/null +++ b/references.bib @@ -0,0 +1,199 @@ +@article{Manuel_HR_2020, + author = {Manuel, Douglas G. and Wilton, Andrew S. and Bennett, Carol and Dass, Rohit and Laporte, Audrey and Holford, Theodore R.}, + title = {{Smoking patterns based on birth-cohort-specific histories from 1965 to 2013, with projections to 2041}}, + journal = {Health Reports}, + year = {2020}, + volume = {31}, + number = {11}, + pages = {16--31}, + doi = {10.25318/82-003-x202001100002-eng}, + url = {https://www150.statcan.gc.ca/n1/pub/82-003-x/2020011/article/00002-eng.htm} +} + +@article{Tam_AJPM_2023, + author = {Tam, Jamie and Jaffri, Mohammed A. and Mok, Yoonseo and Jeon, Jihyoun and Szklo, André S. and Souza, Mirian C. and Holford, Theodore R. and Levy, David T. and Cao, Pianpian and Sánchez-Romero, Luz M. and Meza, Rafael}, + title = {{Patterns of birth cohort‒specific smoking histories in Brazil}}, + journal = {American Journal of Preventive Medicine}, + year = {2023}, + volume = {64}, + number = {4}, + pages = {S63--S71}, + doi = {10.1016/j.amepre.2022.12.002}, + url = {https://linkinghub.elsevier.com/retrieve/pii/S0749379722005530} +} + +@article{Meza_J_2021, + author = {Meza, Rafael and Jeon, Jihyoun and Toumazis, Iakovos and Ten Haaf, Kevin and Cao, Pianpian and Bastani, Mehrad and Han, Summer S. and Blom, Erik F. and Jonas, Daniel E. and Feuer, Eric J. and Plevritis, Sylvia K. and De Koning, Harry J. and Kong, Chung Yin}, + title = {{Evaluation of the benefits and harms of lung cancer screening with low-dose computed tomography: modeling study for the US preventive services task force}}, + journal = {JAMA}, + year = {2021}, + volume = {325}, + number = {10}, + pages = {988}, + doi = {10.1001/jama.2021.1077}, + url = {https://jamanetwork.com/journals/jama/fullarticle/2777243} +} + +@article{Holford_AJPM_2014, + author = {Holford, T. R. and Levy, D. T. and McKay, L. A. and Clarke, L. and Racine, B. and Meza, R. and Land, S. and Jeon, J. and Feuer, E. J.}, + title = {{Patterns of birth cohort-specific smoking histories, 1965-2009}}, + journal = {Am J Prev Med}, + year = {2014}, + volume = {46}, + number = {2}, + pages = {e31--7}, + doi = {10.1016/j.amepre.2013.10.022} +} + +@misc{HealthCanada_SmokingMortality_2024, + author = {{Health Canada}}, + title = {{Smoking and mortality}}, + year = {2024}, + url = {https://www.canada.ca/en/health-canada/services/health-concerns/tobacco/legislation/tobacco-product-labelling/smoking-mortality.html} +} + +@report{CSUCH_2023, + author = {{Canadian Substance Use Costs and Harms Scientific Working Group}}, + title = {{Canadian substance use costs and harms 2007--2020}}, + year = {2023}, + institution = {Canadian Institute for Substance Use Research and Canadian Centre on Substance Use and Addiction}, + address = {Victoria, BC}, + url = {https://csuch.ca/publications/csuch-report/} +} + +@article{mitra2015, + author = {Mitra, Dipjyoti and Shaw, Amanda and Tjepkema, Michael and Peters, Paul}, + title = {{Social determinants of lung cancer incidence in Canada: A 13-year prospective study}}, + journal = {Health Reports}, + year = {2015}, + volume = {26}, + number = {6}, + pages = {12--20}, + doi = {10.25318/82-003-x201500614195-eng} +} + +@article{hennessy2015, + author = {Hennessy, Deirdre A. and Flanagan, William M. and Tanuseputro, Peter and Bennett, Carol and Tuna, Meltem and Kopec, Jacek and Wolfson, Michael C. and Manuel, Douglas G.}, + title = {{The Population Health Model (POHEM): an overview of rationale, methods and applications}}, + journal = {Population Health Metrics}, + year = {2015}, + volume = {13}, + number = {1}, + pages = {24}, + doi = {10.1186/s12963-015-0057-x} +} + +@article{gauvreau2017, + author = {Gauvreau, C. L. and Fitzgerald, N. R. and Memon, S. and Flanagan, W. M. and Nadeau, C. and Asakawa, K. and Garner, R. and Miller, A. B. and Evans, W. K. and Popadiuk, C. M.}, + title = {{The OncoSim model: development and use for better decision-making in Canadian cancer control}}, + journal = {Current Oncology}, + year = {2017}, + volume = {24}, + number = {6}, + pages = {401--406}, + doi = {10.3747/co.24.3609} +} + +@article{chaiton2021, + author = {Chaiton, Michael and Dubray, Jolene and Guindon, G. Emmanuel and Schwartz, Robert}, + title = {{Tobacco endgame simulation modelling: assessing the impact of policy changes on smoking prevalence in 2035}}, + journal = {Forecasting}, + year = {2021}, + volume = {3}, + number = {2}, + pages = {267--275}, + doi = {10.3390/forecast3020017} +} + +@article{beland2002, + author = {Beland, Y.}, + title = {{Canadian Community Health Survey -- Methodological overview}}, + journal = {Health Reports}, + year = {2002}, + volume = {13}, + number = {2}, + pages = {9--14} +} + +@article{kopasker2023, + author = {Kopasker, Daniel and Katikireddi, Srinivasa Vittal and Santos, João Vasco and Richiardi, Matteo and Bronka, Patryk and Rostila, Mikael and Cecchini, Michele and Ali, Shehzad and Emmert-Fees, Karl and Bambra, Clare and Hoven, Hanno and Backhaus, Insa and Balaj, Mirza and Eikemo, Terje Andreas}, + title = {{Microsimulation as a flexible tool to evaluate policies and their impact on socioeconomic inequalities in health}}, + journal = {The Lancet Regional Health -- Europe}, + year = {2023}, + volume = {34}, + pages = {100758}, + doi = {10.1016/j.lanepe.2023.100758} +} + +@article{vasquezlavin2022, + author = {Vasquez-Lavin, Felipe and Bratti, Luna and Orrego, Sergio and Barrientos, Manuel}, + title = {{Assessing the use of pseudo-panels to estimate the value of statistical life}}, + journal = {Applied Economics}, + year = {2022}, + volume = {54}, + number = {34}, + pages = {3972--3988}, + doi = {10.1080/00036846.2021.2019186} +} + +@article{backinger2008, + author = {Backinger, Cathy L. and Lawrence, Deirdre and Swan, Judith and Winn, Deborah M. and Breen, Nancy and Hartman, Anne and Grana, Rachel and Tran, David and Farrell, Samantha}, + title = {{Using the National Health Interview Survey to understand and address the impact of tobacco in the United States: past perspectives and future considerations}}, + journal = {Epidemiologic Perspectives \& Innovations}, + year = {2008}, + volume = {5}, + pages = {8}, + doi = {10.1186/1742-5573-5-8}, + issn = {1742-5573}, + pmid = {19055824}, + pmcid = {PMC2627846} +} + +@article{gagne2017, + author = {Gagné, Tara}, + title = {{Estimation of smoking prevalence in Canada: Implications of survey characteristics in the CCHS and CTUMS/CTADS}}, + journal = {Canadian Journal of Public Health}, + year = {2017}, + volume = {108}, + number = {3}, + pages = {e331--e334}, + doi = {10.17269/CJPH.108.5895}, + issn = {0008-4263}, + pmid = {28910259}, + pmcid = {PMC6972049} +} + +@article{chen2020joinpoint, + author = {Chen, Huann-Sheng and Zeichner, Samantha and Anderson, Robert N. and Espey, Donald K. and Kim, Hyune-Ju and Feuer, Eric J.}, + title = {{The Joinpoint-Jump and Joinpoint-Comparability Ratio Model for Trend Analysis with Applications to Coding Changes in Health Statistics}}, + journal = {Journal of Official Statistics}, + year = {2020}, + volume = {36}, + number = {1}, + pages = {49--62}, + doi = {10.2478/jos-2020-0003}, + pmcid = {PMC7380682} +} + +@article{opazobretton2022, + author = {Opazo Breton, Magdalena and Gillespie, Duncan and Pryce, Robert and Bogdanovica, Ilze and Angus, Colin and Brennan, Alan and Britton, John}, + title = {{Understanding long-term trends in smoking in England, 1972--2019: an age-period-cohort approach}}, + journal = {Addiction}, + year = {2022}, + volume = {117}, + number = {5}, + pages = {1392--1403}, + doi = {10.1111/add.15696}, + issn = {0965-2140}, + pmid = {34590368} +} + +@article{wade2025, + author = {Wade, Stephanie and Sarich, Patricia and Vaneckova, Petra}, + title = {{Using Bayesian evidence synthesis to quantify uncertainty in population trends in smoking behaviour}}, + journal = {Statistical Methods in Medical Research}, + year = {2025}, + doi = {10.1177/09622802241310326}, + issn = {0962-2802}, + pmcid = {PMC11951451} +} diff --git a/renv.lock b/renv.lock new file mode 100644 index 0000000..8eda30d --- /dev/null +++ b/renv.lock @@ -0,0 +1,7455 @@ +{ + "R": { + "Version": "4.4.2", + "Repositories": [ + { + "Name": "CRAN", + "URL": "http://cran.r-project.org" + } + ] + }, + "Packages": { + "Formula": { + "Package": "Formula", + "Version": "1.2-5", + "Source": "Repository", + "Date": "2023-02-23", + "Title": "Extended Model Formulas", + "Description": "Infrastructure for extended formulas with multiple parts on the right-hand side and/or multiple responses on the left-hand side (see ).", + "Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")), person(given = \"Yves\", family = \"Croissant\", role = \"aut\", email = \"Yves.Croissant@univ-reunion.fr\"))", + "Depends": [ + "R (>= 2.0.0)", + "stats" + ], + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "no", + "Author": "Achim Zeileis [aut, cre] (), Yves Croissant [aut]", + "Maintainer": "Achim Zeileis ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "Hmisc": { + "Package": "Hmisc", + "Version": "5.2-5", + "Source": "Repository", + "Date": "2026-01-08", + "Title": "Harrell Miscellaneous", + "Authors@R": "c(person(given = \"Frank E\", family = \"Harrell Jr\", role = c(\"aut\", \"cre\"), email = \"fh@fharrell.com\", comment = c(ORCID = \"0000-0002-8271-5493\")), person(given = \"Cole\", family = \"Beck\", role = c(\"ctb\"), email = \"cole.beck@vumc.org\" ), person(given = \"Charles\", family = \"Dupont\", role = \"ctb\") )", + "Depends": [ + "R (>= 4.2.0)" + ], + "Imports": [ + "methods", + "ggplot2", + "cluster", + "rpart", + "nnet", + "foreign", + "gtable", + "grid", + "gridExtra", + "data.table", + "htmlTable (>= 1.11.0)", + "viridisLite", + "htmltools", + "base64enc", + "colorspace", + "rmarkdown", + "knitr", + "Formula" + ], + "Suggests": [ + "survival", + "qreport", + "acepack", + "chron", + "rms", + "mice", + "rstudioapi", + "tables", + "plotly (>= 4.5.6)", + "rlang", + "VGAM", + "leaps", + "pcaPP", + "digest", + "parallel", + "polspline", + "abind", + "kableExtra", + "rio", + "lattice", + "latticeExtra", + "gt", + "sparkline", + "jsonlite", + "htmlwidgets", + "qs", + "getPass", + "keyring", + "safer", + "htm2txt", + "boot" + ], + "Description": "Contains many functions useful for data analysis, high-level graphics, utility operations, functions for computing sample size and power, simulation, importing and annotating datasets, imputing missing values, advanced table making, variable clustering, character string manipulation, conversion of R objects to LaTeX and html code, recoding variables, caching, simplified parallel computing, encrypting and decrypting data using a safe workflow, general moving window statistical estimation, and assistance in interpreting principal component analysis.", + "License": "GPL (>= 2)", + "LazyLoad": "Yes", + "URL": "https://hbiostat.org/R/Hmisc/", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Frank E Harrell Jr [aut, cre] (ORCID: ), Cole Beck [ctb], Charles Dupont [ctb]", + "Maintainer": "Frank E Harrell Jr ", + "Repository": "CRAN" + }, + "MASS": { + "Package": "MASS", + "Version": "7.3-64", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-01-06", + "Revision": "$Rev: 3680 $", + "Depends": [ + "R (>= 4.4.0)", + "grDevices", + "graphics", + "stats", + "utils" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "lattice", + "nlme", + "nnet", + "survival" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")), person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"), person(\"Kurt\", \"Hornik\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"Albrecht\", \"Gebhardt\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"David\", \"Firth\", role = \"ctb\", comment = \"support functions for polr\"))", + "Description": "Functions and datasets to support Venables and Ripley, \"Modern Applied Statistics with S\" (4th edition, 2002).", + "Title": "Support Functions and Datasets for Venables and Ripley's MASS", + "LazyData": "yes", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "Contact": "", + "NeedsCompilation": "yes", + "Author": "Brian Ripley [aut, cre, cph], Bill Venables [aut, cph], Douglas M. Bates [ctb], Kurt Hornik [trl] (partial port ca 1998), Albrecht Gebhardt [trl] (partial port ca 1998), David Firth [ctb] (support functions for polr)", + "Maintainer": "Brian Ripley ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "Matrix": { + "Package": "Matrix", + "Version": "1.7-2", + "Source": "Repository", + "VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h", + "Date": "2025-01-20", + "Priority": "recommended", + "Title": "Sparse and Dense Matrix Classes and Methods", + "Description": "A rich hierarchy of sparse and dense matrix classes, including general, symmetric, triangular, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and 'SuiteSparse' libraries.", + "License": "GPL (>= 2) | file LICENCE", + "URL": "https://Matrix.R-forge.R-project.org", + "BugReports": "https://R-forge.R-project.org/tracker/?atid=294&group_id=61", + "Contact": "Matrix-authors@R-project.org", + "Authors@R": "c(person(\"Douglas\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"mmaechler+Matrix@gmail.com\", comment = c(ORCID = \"0000-0002-8685-9910\")), person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")), person(\"Timothy A.\", \"Davis\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7614-6899\", \"SuiteSparse libraries\", \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")), person(\"George\", \"Karypis\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2753-1437\", \"METIS library\", \"Copyright: Regents of the University of Minnesota\")), person(\"Jason\", \"Riedy\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4345-4200\", \"GNU Octave's condest() and onenormest()\", \"Copyright: Regents of the University of California\")), person(\"Jens\", \"Oehlschlägel\", role = \"ctb\", comment = \"initial nearPD()\"), person(\"R Core Team\", role = \"ctb\", comment = c(ROR = \"02zz1nj61\", \"base R's matrix implementation\")))", + "Depends": [ + "R (>= 4.4)", + "methods" + ], + "Imports": [ + "grDevices", + "graphics", + "grid", + "lattice", + "stats", + "utils" + ], + "Suggests": [ + "MASS", + "datasets", + "sfsmisc", + "tools" + ], + "Enhances": [ + "SparseM", + "graph" + ], + "LazyData": "no", + "LazyDataNote": "not possible, since we use data/*.R and our S4 classes", + "BuildResaveData": "no", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Douglas Bates [aut] (), Martin Maechler [aut, cre] (), Mikael Jagan [aut] (), Timothy A. Davis [ctb] (, SuiteSparse libraries, collaborators listed in dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"), pattern=\"License\", full.names=TRUE, recursive=TRUE)), George Karypis [ctb] (, METIS library, Copyright: Regents of the University of Minnesota), Jason Riedy [ctb] (, GNU Octave's condest() and onenormest(), Copyright: Regents of the University of California), Jens Oehlschlägel [ctb] (initial nearPD()), R Core Team [ctb] (02zz1nj61, base R's matrix implementation)", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN" + }, + "MatrixModels": { + "Package": "MatrixModels", + "Version": "0.5-4", + "Source": "Repository", + "VersionNote": "Released 0.5-3 on 2023-11-06", + "Date": "2025-03-25", + "Title": "Modelling with Sparse and Dense Matrices", + "Contact": "Matrix-authors@R-project.org", + "Authors@R": "c( person(\"Douglas\", \"Bates\", role = \"aut\", email = \"bates@stat.wisc.edu\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"mmaechler+Matrix@gmail.com\", comment = c(ORCID = \"0000-0002-8685-9910\")))", + "Description": "Generalized Linear Modelling with sparse and dense 'Matrix' matrices, using modular prediction and response module classes.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "stats", + "methods", + "Matrix (>= 1.6-0)", + "Matrix(< 1.8-0)" + ], + "ImportsNote": "_not_yet_stats4", + "Encoding": "UTF-8", + "LazyLoad": "yes", + "License": "GPL (>= 2)", + "URL": "https://Matrix.R-forge.R-project.org/, https://r-forge.r-project.org/R/?group_id=61", + "BugReports": "https://R-forge.R-project.org/tracker/?func=add&atid=294&group_id=61", + "NeedsCompilation": "no", + "Author": "Douglas Bates [aut] (), Martin Maechler [aut, cre] ()", + "Maintainer": "Martin Maechler ", + "Repository": "RSPM" + }, + "R6": { + "Package": "R6", + "Version": "2.6.1", + "Source": "Repository", + "Title": "Encapsulated Classes with Reference Semantics", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages.", + "License": "MIT + file LICENSE", + "URL": "https://r6.r-lib.org, https://github.com/r-lib/R6", + "BugReports": "https://github.com/r-lib/R6/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Suggests": [ + "lobstr", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2, microbenchmark, scales", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "RColorBrewer": { + "Package": "RColorBrewer", + "Version": "1.1-3", + "Source": "Repository", + "Date": "2022-04-03", + "Title": "ColorBrewer Palettes", + "Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\", \"cre\"), email = \"erich.neuwirth@univie.ac.at\"))", + "Author": "Erich Neuwirth [aut, cre]", + "Maintainer": "Erich Neuwirth ", + "Depends": [ + "R (>= 2.0.0)" + ], + "Description": "Provides color schemes for maps (and other graphics) designed by Cynthia Brewer as described at http://colorbrewer2.org.", + "License": "Apache License 2.0", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "Rcpp": { + "Package": "Rcpp", + "Version": "1.1.1", + "Source": "Repository", + "Title": "Seamless R and C++ Integration", + "Date": "2026-01-07", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))", + "Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at , the paper by Eddelbuettel and Francois (2011, ), the book by Eddelbuettel (2013, ) and the paper by Eddelbuettel and Balamuta (2018, ); see 'citation(\"Rcpp\")' for details.", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "methods", + "utils" + ], + "Suggests": [ + "tinytest", + "inline", + "rbenchmark", + "pkgKitten (>= 0.1.2)" + ], + "URL": "https://www.rcpp.org, https://dirk.eddelbuettel.com/code/rcpp.html, https://github.com/RcppCore/Rcpp", + "License": "GPL (>= 2)", + "BugReports": "https://github.com/RcppCore/Rcpp/issues", + "MailingList": "rcpp-devel@lists.r-forge.r-project.org", + "RoxygenNote": "6.1.1", + "Encoding": "UTF-8", + "VignetteBuilder": "Rcpp", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: ), Romain Francois [aut] (ORCID: ), JJ Allaire [aut] (ORCID: ), Kevin Ushey [aut] (ORCID: ), Qiang Kou [aut] (ORCID: ), Nathan Russell [aut], Iñaki Ucar [aut] (ORCID: ), Doug Bates [aut] (ORCID: ), John Chambers [aut]", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "RcppArmadillo": { + "Package": "RcppArmadillo", + "Version": "15.2.3-1", + "Source": "Repository", + "Type": "Package", + "Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra Library", + "Date": "2025-12-16", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Binxiang\", \"Ni\", role = \"aut\"), person(\"Conrad\", \"Sanderson\", role = \"aut\", comment = c(ORCID = \"0000-0002-0049-4501\")))", + "Description": "'Armadillo' is a templated C++ linear algebra library aiming towards a good balance between speed and ease of use. It provides high-level syntax and functionality deliberately similar to Matlab. It is useful for algorithm development directly in C++, or quick conversion of research code into production environments. It provides efficient classes for vectors, matrices and cubes where dense and sparse matrices are supported. Integer, floating point and complex numbers are supported. A sophisticated expression evaluator (based on template meta-programming) automatically combines several operations to increase speed and efficiency. Dynamic evaluation automatically chooses optimal code paths based on detected matrix structures. Matrix decompositions are provided through integration with LAPACK, or one of its high performance drop-in replacements (such as 'MKL' or 'OpenBLAS'). It can automatically use 'OpenMP' multi-threading (parallelisation) to speed up computationally expensive operations. . The 'RcppArmadillo' package includes the header files from the 'Armadillo' library; users do not need to install 'Armadillo' itself in order to use 'RcppArmadillo'. Starting from release 15.0.0, the minimum compilation standard is C++14 so 'Armadillo' version 14.6.3 is included as a fallback when an R package forces the C++11 standard. Package authors should set a '#define' to select the 'current' version, or select the 'legacy' version (also chosen as default) if they must. See 'GitHub issue #475' for details. . Since release 7.800.0, 'Armadillo' is licensed under Apache License 2; previous releases were under licensed as MPL 2.0 from version 3.800.0 onwards and LGPL-3 prior to that; 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.", + "License": "GPL (>= 2)", + "LazyLoad": "yes", + "Depends": [ + "R (>= 3.3.0)" + ], + "LinkingTo": [ + "Rcpp" + ], + "Imports": [ + "Rcpp (>= 1.0.12)", + "stats", + "utils", + "methods" + ], + "Suggests": [ + "tinytest", + "Matrix (>= 1.3.0)", + "pkgKitten", + "reticulate", + "slam" + ], + "URL": "https://github.com/RcppCore/RcppArmadillo, https://dirk.eddelbuettel.com/code/rcpp.armadillo.html", + "BugReports": "https://github.com/RcppCore/RcppArmadillo/issues", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: ), Romain Francois [aut] (ORCID: ), Doug Bates [aut] (ORCID: ), Binxiang Ni [aut], Conrad Sanderson [aut] (ORCID: )", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "RcppEigen": { + "Package": "RcppEigen", + "Version": "0.3.4.0.2", + "Source": "Repository", + "Type": "Package", + "Title": "'Rcpp' Integration for the 'Eigen' Templated Linear Algebra Library", + "Date": "2024-08-23", + "Authors@R": "c(person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Yixuan\", \"Qiu\", role = \"aut\", comment = c(ORCID = \"0000-0003-0109-6692\")), person(\"Authors of\", \"Eigen\", role = \"cph\", comment = \"Authorship and copyright in included Eigen library as detailed in inst/COPYRIGHTS\"))", + "Copyright": "See the file COPYRIGHTS for various Eigen copyright details", + "Description": "R and 'Eigen' integration using 'Rcpp'. 'Eigen' is a C++ template library for linear algebra: matrices, vectors, numerical solvers and related algorithms. It supports dense and sparse matrices on integer, floating point and complex numbers, decompositions of such matrices, and solutions of linear systems. Its performance on many algorithms is comparable with some of the best implementations based on 'Lapack' and level-3 'BLAS'. The 'RcppEigen' package includes the header files from the 'Eigen' C++ template library. Thus users do not need to install 'Eigen' itself in order to use 'RcppEigen'. Since version 3.1.1, 'Eigen' is licensed under the Mozilla Public License (version 2); earlier version were licensed under the GNU LGPL version 3 or later. 'RcppEigen' (the 'Rcpp' bindings/bridge to 'Eigen') is licensed under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.", + "License": "GPL (>= 2) | file LICENSE", + "LazyLoad": "yes", + "Depends": [ + "R (>= 3.6.0)" + ], + "LinkingTo": [ + "Rcpp" + ], + "Imports": [ + "Rcpp (>= 0.11.0)", + "stats", + "utils" + ], + "Suggests": [ + "Matrix", + "inline", + "tinytest", + "pkgKitten", + "microbenchmark" + ], + "URL": "https://github.com/RcppCore/RcppEigen, https://dirk.eddelbuettel.com/code/rcpp.eigen.html", + "BugReports": "https://github.com/RcppCore/RcppEigen/issues", + "NeedsCompilation": "yes", + "Author": "Doug Bates [aut] (), Dirk Eddelbuettel [aut, cre] (), Romain Francois [aut] (), Yixuan Qiu [aut] (), Authors of Eigen [cph] (Authorship and copyright in included Eigen library as detailed in inst/COPYRIGHTS)", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "Rdpack": { + "Package": "Rdpack", + "Version": "2.6.6", + "Source": "Repository", + "Type": "Package", + "Title": "Update and Manipulate Rd Documentation Objects", + "Authors@R": "c( person(given = c(\"Georgi\", \"N.\"), family = \"Boshnakov\", role = c(\"aut\", \"cre\"), email = \"georgi.boshnakov@manchester.ac.uk\", comment = c(ORCID = \"0000-0003-2839-346X\")), person(given = \"Duncan\", family = \"Murdoch\", role = \"ctb\", email = \"murdoch.duncan@gmail.com\") )", + "Description": "Functions for manipulation of R documentation objects, including functions reprompt() and ereprompt() for updating 'Rd' documentation for functions, methods and classes; 'Rd' macros for citations and import of references from 'bibtex' files for use in 'Rd' files and 'roxygen2' comments; 'Rd' macros for evaluating and inserting snippets of 'R' code and the results of its evaluation or creating graphics on the fly; and many functions for manipulation of references and Rd files.", + "URL": "https://geobosh.github.io/Rdpack/ (doc), https://CRAN.R-project.org/package=Rdpack", + "BugReports": "https://github.com/GeoBosh/Rdpack/issues", + "Depends": [ + "R (>= 2.15.0)", + "methods" + ], + "Imports": [ + "tools", + "utils", + "rbibutils (> 2.4)" + ], + "Suggests": [ + "grDevices", + "testthat", + "rstudioapi", + "rprojroot", + "gbRd" + ], + "License": "GPL (>= 2)", + "LazyLoad": "yes", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "NeedsCompilation": "no", + "Author": "Georgi N. Boshnakov [aut, cre] (ORCID: ), Duncan Murdoch [ctb]", + "Maintainer": "Georgi N. Boshnakov ", + "Repository": "CRAN" + }, + "SparseM": { + "Package": "SparseM", + "Version": "1.84-2", + "Source": "Repository", + "Authors@R": "c( person(\"Roger\", \"Koenker\", role = c(\"cre\",\"aut\"), email = \"rkoenker@uiuc.edu\"), person(c(\"Pin\", \"Tian\"), \"Ng\", role = c(\"ctb\"), comment = \"Contributions to Sparse QR code\", email = \"pin.ng@nau.edu\") , person(\"Yousef\", \"Saad\", role = c(\"ctb\"), comment = \"author of sparskit2\") , person(\"Ben\", \"Shaby\", role = c(\"ctb\"), comment = \"author of chol2csr\") , person(\"Martin\", \"Maechler\", role = \"ctb\", comment = c(\"chol() tweaks; S4\", ORCID = \"0000-0002-8685-9910\")) )", + "Maintainer": "Roger Koenker ", + "Depends": [ + "R (>= 2.15)", + "methods" + ], + "Imports": [ + "graphics", + "stats", + "utils" + ], + "VignetteBuilder": "knitr", + "Suggests": [ + "knitr" + ], + "Description": "Some basic linear algebra functionality for sparse matrices is provided: including Cholesky decomposition and backsolving as well as standard R subsetting and Kronecker products.", + "License": "GPL (>= 2)", + "Title": "Sparse Linear Algebra", + "URL": "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html", + "NeedsCompilation": "yes", + "Author": "Roger Koenker [cre, aut], Pin Tian Ng [ctb] (Contributions to Sparse QR code), Yousef Saad [ctb] (author of sparskit2), Ben Shaby [ctb] (author of chol2csr), Martin Maechler [ctb] (chol() tweaks; S4, )", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "TH.data": { + "Package": "TH.data", + "Version": "1.1-5", + "Source": "Repository", + "Title": "TH's Data Archive", + "Date": "2025-11-17", + "Authors@R": "c(person(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"), email = \"Torsten.Hothorn@R-project.org\"))", + "Description": "Contains data sets used in other packages Torsten Hothorn maintains.", + "Depends": [ + "R (>= 3.5.0)", + "survival", + "MASS" + ], + "Suggests": [ + "trtf", + "tram", + "rms", + "coin", + "ATR", + "multcomp", + "gridExtra", + "vcd", + "colorspace", + "lattice", + "knitr", + "dplyr", + "openxlsx", + "plyr" + ], + "LazyData": "yes", + "VignetteBuilder": "knitr", + "License": "GPL-3", + "NeedsCompilation": "no", + "Author": "Torsten Hothorn [aut, cre]", + "Maintainer": "Torsten Hothorn ", + "Repository": "CRAN" + }, + "V8": { + "Package": "V8", + "Version": "8.0.1", + "Source": "Repository", + "Type": "Package", + "Title": "Embedded JavaScript and WebAssembly Engine for R", + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"George\", \"Stagg\", role = \"ctb\", comment = c(ORCID = \"0009-0006-3173-9846\")), person(\"Jan Marvin\", \"Garbuszus\", role = \"ctb\"))", + "Description": "An R interface to V8 : Google's open source JavaScript and WebAssembly engine. This package can be compiled either with V8 or NodeJS when built as a shared library.", + "License": "MIT + file LICENSE", + "URL": "https://jeroen.r-universe.dev/V8", + "BugReports": "https://github.com/jeroen/v8/issues", + "SystemRequirements": "On Linux you can build against libv8-dev (Debian) or v8-devel (Fedora). We also provide static libv8 binaries for most platforms, see the README for details.", + "NeedsCompilation": "yes", + "VignetteBuilder": "knitr", + "Imports": [ + "Rcpp (>= 0.12.12)", + "jsonlite (>= 1.0)", + "curl (>= 1.0)", + "utils" + ], + "LinkingTo": [ + "Rcpp" + ], + "Suggests": [ + "testthat", + "knitr", + "rmarkdown" + ], + "RoxygenNote": "7.3.1", + "Language": "en-US", + "Encoding": "UTF-8", + "Biarch": "true", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), George Stagg [ctb] (ORCID: ), Jan Marvin Garbuszus [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "askpass": { + "Package": "askpass", + "Version": "1.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "Password Entry Utilities for R, Git, and SSH", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Cross-platform utilities for prompting the user for credentials or a passphrase, for example to authenticate with a server or read a protected key. Includes native programs for MacOS and Windows, hence no 'tcltk' is required. Password entry can be invoked in two different ways: directly from R via the askpass() function, or indirectly as password-entry back-end for 'ssh-agent' or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables. Thereby the user can be prompted for credentials or a passphrase if needed when R calls out to git or ssh.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.r-universe.dev/askpass", + "BugReports": "https://github.com/r-lib/askpass/issues", + "Encoding": "UTF-8", + "Imports": [ + "sys (>= 2.1)" + ], + "RoxygenNote": "7.2.3", + "Suggests": [ + "testthat" + ], + "Language": "en-US", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] ()", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "backports": { + "Package": "backports", + "Version": "1.5.0", + "Source": "Repository", + "Type": "Package", + "Title": "Reimplementations of Functions Introduced Since R-3.0.0", + "Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Duncan\", \"Murdoch\", NULL, \"murdoch.duncan@gmail.com\", role = c(\"aut\")), person(\"R Core Team\", role = \"aut\"))", + "Maintainer": "Michel Lang ", + "Description": "Functions introduced or changed since R v3.0.0 are re-implemented in this package. The backports are conditionally exported in order to let R resolve the function name to either the implemented backport, or the respective base version, if available. Package developers can make use of new functions or arguments by selectively importing specific backports to support older installations.", + "URL": "https://github.com/r-lib/backports", + "BugReports": "https://github.com/r-lib/backports/issues", + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "ByteCompile": "yes", + "Depends": [ + "R (>= 3.0.0)" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Author": "Michel Lang [cre, aut] (), Duncan Murdoch [aut], R Core Team [aut]", + "Repository": "CRAN" + }, + "base64enc": { + "Package": "base64enc", + "Version": "0.1-3", + "Source": "Repository", + "Title": "Tools for base64 encoding", + "Author": "Simon Urbanek ", + "Maintainer": "Simon Urbanek ", + "Depends": [ + "R (>= 2.9.0)" + ], + "Enhances": [ + "png" + ], + "Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.", + "License": "GPL-2 | GPL-3", + "URL": "http://www.rforge.net/base64enc", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "base64url": { + "Package": "base64url", + "Version": "1.4", + "Source": "Repository", + "Type": "Package", + "Title": "Fast and URL-Safe Base64 Encoder and Decoder", + "Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(NULL, \"Apache Foundation\", NULL, NULL, role = c(\"ctb\", \"cph\")), person(NULL, \"Free Software Foundation\", NULL, NULL, role = c(\"ctb\", \"cph\")) )", + "Description": "In contrast to RFC3548, the 62nd character (\"+\") is replaced with \"-\", the 63rd character (\"/\") is replaced with \"_\". Furthermore, the encoder does not fill the string with trailing \"=\". The resulting encoded strings comply to the regular expression pattern \"[A-Za-z0-9_-]\" and thus are safe to use in URLs or for file names. The package also comes with a simple base32 encoder/decoder suited for case insensitive file systems.", + "URL": "https://github.com/mllg/base64url", + "BugReports": "https://github.com/mllg/base64url/issues", + "NeedsCompilation": "yes", + "License": "GPL-3", + "Encoding": "UTF-8", + "Imports": [ + "backports (>= 1.1.0)" + ], + "Suggests": [ + "base64enc", + "checkmate", + "knitr", + "microbenchmark", + "openssl", + "rmarkdown", + "testthat" + ], + "RoxygenNote": "6.0.1", + "VignetteBuilder": "knitr", + "Author": "Michel Lang [cre, aut] (), Apache Foundation [ctb, cph], Free Software Foundation [ctb, cph]", + "Maintainer": "Michel Lang ", + "Repository": "CRAN" + }, + "bigD": { + "Package": "bigD", + "Version": "0.3.1", + "Source": "Repository", + "Type": "Package", + "Title": "Flexibly Format Dates and Times to a Given Locale", + "Description": "Format dates and times flexibly and to whichever locales make sense. Parses dates, times, and date-times in various formats (including string-based ISO 8601 constructions). The formatting syntax gives the user many options for formatting the date and time output in a precise manner. Time zones in the input can be expressed in multiple ways and there are many options for formatting time zones in the output as well. Several of the provided helper functions allow for automatic generation of locale-aware formatting patterns based on date/time skeleton formats and standardized date/time formats with varying specificity.", + "Authors@R": "c( person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Olivier\", \"Roy\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/bigD/, https://github.com/rstudio/bigD", + "BugReports": "https://github.com/rstudio/bigD/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Depends": [ + "R (>= 3.6.0)" + ], + "Suggests": [ + "testthat (>= 3.0.0)", + "vctrs (>= 0.5.0)" + ], + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "NeedsCompilation": "no", + "Author": "Richard Iannone [aut, cre] (), Olivier Roy [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Richard Iannone ", + "Repository": "CRAN" + }, + "bit": { + "Package": "bit", + "Version": "4.6.0", + "Source": "Repository", + "Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections", + "Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"MichaelChirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Brian\", \"Ripley\", role = \"ctb\") )", + "Depends": [ + "R (>= 3.4.0)" + ], + "Suggests": [ + "testthat (>= 3.0.0)", + "roxygen2", + "knitr", + "markdown", + "rmarkdown", + "microbenchmark", + "bit64 (>= 4.0.0)", + "ff (>= 4.0.0)" + ], + "Description": "Provided are classes for boolean and skewed boolean vectors, fast boolean methods, fast unique and non-unique integer sorting, fast set operations on sorted and unsorted sets of integers, and foundations for ff (range index, compression, chunked processing).", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "URL": "https://github.com/r-lib/bit", + "VignetteBuilder": "knitr, rmarkdown", + "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Brian Ripley [ctb]", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN" + }, + "bit64": { + "Package": "bit64", + "Version": "4.6.0-1", + "Source": "Repository", + "Title": "A S3 Class for Vectors of 64bit Integers", + "Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Leonardo\", \"Silvestri\", role = \"ctb\"), person(\"Ofek\", \"Shilon\", role = \"ctb\") )", + "Depends": [ + "R (>= 3.4.0)", + "bit (>= 4.0.0)" + ], + "Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. These are useful for handling database keys and exact counting in +-2^63. WARNING: do not use them as replacement for 32bit integers, integer64 are not supported for subscripting by R-core and they have different semantics when combined with double, e.g. integer64 + double => integer64. Class integer64 can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support inter- active data exploration and manipulation and optionally leverage caching.", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "URL": "https://github.com/r-lib/bit64", + "Encoding": "UTF-8", + "Imports": [ + "graphics", + "methods", + "stats", + "utils" + ], + "Suggests": [ + "testthat (>= 3.0.3)", + "withr" + ], + "Config/testthat/edition": "3", + "Config/needs/development": "testthat", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Leonardo Silvestri [ctb], Ofek Shilon [ctb]", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN" + }, + "bitops": { + "Package": "bitops", + "Version": "1.0-9", + "Source": "Repository", + "Date": "2024-10-03", + "Authors@R": "c( person(\"Steve\", \"Dutky\", role = \"aut\", email = \"sdutky@terpalum.umd.edu\", comment = \"S original; then (after MM's port) revised and modified\"), person(\"Martin\", \"Maechler\", role = c(\"cre\", \"aut\"), email = \"maechler@stat.math.ethz.ch\", comment = c(\"Initial R port; tweaks\", ORCID = \"0000-0002-8685-9910\")))", + "Title": "Bitwise Operations", + "Description": "Functions for bitwise operations on integer vectors.", + "License": "GPL (>= 2)", + "URL": "https://github.com/mmaechler/R-bitops", + "BugReports": "https://github.com/mmaechler/R-bitops/issues", + "NeedsCompilation": "yes", + "Author": "Steve Dutky [aut] (S original; then (after MM's port) revised and modified), Martin Maechler [cre, aut] (Initial R port; tweaks, )", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN" + }, + "boot": { + "Package": "boot", + "Version": "1.3-31", + "Source": "Repository", + "Priority": "recommended", + "Date": "2024-08-28", + "Authors@R": "c(person(\"Angelo\", \"Canty\", role = \"aut\", email = \"cantya@mcmaster.ca\", comment = \"author of original code for S\"), person(\"Brian\", \"Ripley\", role = c(\"aut\", \"trl\"), email = \"ripley@stats.ox.ac.uk\", comment = \"conversion to R, maintainer 1999--2022, author of parallel support\"), person(\"Alessandra R.\", \"Brazzale\", role = c(\"ctb\", \"cre\"), email = \"brazzale@stat.unipd.it\", comment = \"minor bug fixes\"))", + "Maintainer": "Alessandra R. Brazzale ", + "Note": "Maintainers are not available to give advice on using a package they did not author.", + "Description": "Functions and datasets for bootstrapping from the book \"Bootstrap Methods and Their Application\" by A. C. Davison and D. V. Hinkley (1997, CUP), originally written by Angelo Canty for S.", + "Title": "Bootstrap Functions (Originally by Angelo Canty for S)", + "Depends": [ + "R (>= 3.0.0)", + "graphics", + "stats" + ], + "Suggests": [ + "MASS", + "survival" + ], + "LazyData": "yes", + "ByteCompile": "yes", + "License": "Unlimited", + "NeedsCompilation": "no", + "Author": "Angelo Canty [aut] (author of original code for S), Brian Ripley [aut, trl] (conversion to R, maintainer 1999--2022, author of parallel support), Alessandra R. Brazzale [ctb, cre] (minor bug fixes)", + "Repository": "CRAN" + }, + "brew": { + "Package": "brew", + "Version": "1.0-10", + "Source": "Repository", + "Type": "Package", + "Title": "Templating Framework for Report Generation", + "Authors@R": "c( person(\"Jeffrey\", \"Horner\", role = c(\"aut\", \"cph\")), person(\"Greg\", \"Hunt\", , \"greg@firmansyah.com\", role = c(\"aut\", \"cre\", \"cph\")) )", + "Description": "Implements a templating framework for mixing text and R code for report generation. brew template syntax is similar to PHP, Ruby's erb module, Java Server Pages, and Python's psp module.", + "License": "GPL (>= 2)", + "URL": "https://github.com/gregfrog/brew", + "BugReports": "https://github.com/gregfrog/brew/issues", + "Suggests": [ + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Repository": "CRAN", + "NeedsCompilation": "no", + "Author": "Jeffrey Horner [aut, cph], Greg Hunt [aut, cre, cph]", + "Maintainer": "Greg Hunt " + }, + "brio": { + "Package": "brio", + "Version": "1.1.5", + "Source": "Repository", + "Title": "Basic R Input Output", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Functions to handle basic input output, these functions always read and write UTF-8 (8-bit Unicode Transformation Format) files and provide more explicit control over line endings.", + "License": "MIT + file LICENSE", + "URL": "https://brio.r-lib.org, https://github.com/r-lib/brio", + "BugReports": "https://github.com/r-lib/brio/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Suggests": [ + "covr", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (), Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "broom": { + "Package": "broom", + "Version": "1.0.12", + "Source": "Repository", + "Type": "Package", + "Title": "Convert Statistical Objects into Tidy Tibbles", + "Authors@R": "c( person(\"David\", \"Robinson\", , \"admiral.david@gmail.com\", role = \"aut\"), person(\"Alex\", \"Hayes\", , \"alexpghayes@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4985-5160\")), person(\"Simon\", \"Couch\", , \"simon.couch@posit.co\", role = c(\"aut\"), comment = c(ORCID = \"0000-0001-5676-5107\")), person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0679-1945\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1995-6531\")), person(\"Derek\", \"Chiu\", , \"dchiu@bccrc.ca\", role = \"ctb\"), person(\"Matthieu\", \"Gomez\", , \"mattg@princeton.edu\", role = \"ctb\"), person(\"Boris\", \"Demeshev\", , \"boris.demeshev@gmail.com\", role = \"ctb\"), person(\"Dieter\", \"Menne\", , \"dieter.menne@menne-biomed.de\", role = \"ctb\"), person(\"Benjamin\", \"Nutter\", , \"nutter@battelle.org\", role = \"ctb\"), person(\"Luke\", \"Johnston\", , \"luke.johnston@mail.utoronto.ca\", role = \"ctb\"), person(\"Ben\", \"Bolker\", , \"bolker@mcmaster.ca\", role = \"ctb\"), person(\"Francois\", \"Briatte\", , \"f.briatte@gmail.com\", role = \"ctb\"), person(\"Jeffrey\", \"Arnold\", , \"jeffrey.arnold@gmail.com\", role = \"ctb\"), person(\"Jonah\", \"Gabry\", , \"jsg2201@columbia.edu\", role = \"ctb\"), person(\"Luciano\", \"Selzer\", , \"luciano.selzer@gmail.com\", role = \"ctb\"), person(\"Gavin\", \"Simpson\", , \"ucfagls@gmail.com\", role = \"ctb\"), person(\"Jens\", \"Preussner\", , \"jens.preussner@mpi-bn.mpg.de\", role = \"ctb\"), person(\"Jay\", \"Hesselberth\", , \"jay.hesselberth@gmail.com\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"ctb\"), person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = \"ctb\"), person(\"Alessandro\", \"Gasparini\", , \"ag475@leicester.ac.uk\", role = \"ctb\"), person(\"Lukasz\", \"Komsta\", , \"lukasz.komsta@umlub.pl\", role = \"ctb\"), person(\"Frederick\", \"Novometsky\", role = \"ctb\"), person(\"Wilson\", \"Freitas\", role = \"ctb\"), person(\"Michelle\", \"Evans\", role = \"ctb\"), person(\"Jason Cory\", \"Brunson\", , \"cornelioid@gmail.com\", role = \"ctb\"), person(\"Simon\", \"Jackson\", , \"drsimonjackson@gmail.com\", role = \"ctb\"), person(\"Ben\", \"Whalley\", , \"ben.whalley@plymouth.ac.uk\", role = \"ctb\"), person(\"Karissa\", \"Whiting\", , \"karissa.whiting@gmail.com\", role = \"ctb\"), person(\"Yves\", \"Rosseel\", , \"yrosseel@gmail.com\", role = \"ctb\"), person(\"Michael\", \"Kuehn\", , \"mkuehn10@gmail.com\", role = \"ctb\"), person(\"Jorge\", \"Cimentada\", , \"cimentadaj@gmail.com\", role = \"ctb\"), person(\"Erle\", \"Holgersen\", , \"erle.holgersen@gmail.com\", role = \"ctb\"), person(\"Karl\", \"Dunkle Werner\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0523-7309\")), person(\"Ethan\", \"Christensen\", , \"christensen.ej@gmail.com\", role = \"ctb\"), person(\"Steven\", \"Pav\", , \"shabbychef@gmail.com\", role = \"ctb\"), person(\"Paul\", \"PJ\", , \"pjpaul.stephens@gmail.com\", role = \"ctb\"), person(\"Ben\", \"Schneider\", , \"benjamin.julius.schneider@gmail.com\", role = \"ctb\"), person(\"Patrick\", \"Kennedy\", , \"pkqstr@protonmail.com\", role = \"ctb\"), person(\"Lily\", \"Medina\", , \"lilymiru@gmail.com\", role = \"ctb\"), person(\"Brian\", \"Fannin\", , \"captain@pirategrunt.com\", role = \"ctb\"), person(\"Jason\", \"Muhlenkamp\", , \"jason.muhlenkamp@gmail.com\", role = \"ctb\"), person(\"Matt\", \"Lehman\", role = \"ctb\"), person(\"Bill\", \"Denney\", , \"wdenney@humanpredictions.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(\"Nic\", \"Crane\", role = \"ctb\"), person(\"Andrew\", \"Bates\", role = \"ctb\"), person(\"Vincent\", \"Arel-Bundock\", , \"vincent.arel-bundock@umontreal.ca\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2042-7063\")), person(\"Hideaki\", \"Hayashi\", role = \"ctb\"), person(\"Luis\", \"Tobalina\", role = \"ctb\"), person(\"Annie\", \"Wang\", , \"anniewang.uc@gmail.com\", role = \"ctb\"), person(\"Wei Yang\", \"Tham\", , \"weiyang.tham@gmail.com\", role = \"ctb\"), person(\"Clara\", \"Wang\", , \"clara.wang.94@gmail.com\", role = \"ctb\"), person(\"Abby\", \"Smith\", , \"als1@u.northwestern.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0002-3207-0375\")), person(\"Jasper\", \"Cooper\", , \"jaspercooper@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8639-3188\")), person(\"E Auden\", \"Krauska\", , \"krauskae@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-1466-5850\")), person(\"Alex\", \"Wang\", , \"x249wang@uwaterloo.ca\", role = \"ctb\"), person(\"Malcolm\", \"Barrett\", , \"malcolmbarrett@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"Charles\", \"Gray\", , \"charlestigray@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-9978-011X\")), person(\"Jared\", \"Wilber\", role = \"ctb\"), person(\"Vilmantas\", \"Gegzna\", , \"GegznaV@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-9500-5167\")), person(\"Eduard\", \"Szoecs\", , \"eduardszoecs@gmail.com\", role = \"ctb\"), person(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(\"Angus\", \"Moore\", , \"angusmoore9@gmail.com\", role = \"ctb\"), person(\"Nick\", \"Williams\", , \"ntwilliams.personal@gmail.com\", role = \"ctb\"), person(\"Marius\", \"Barth\", , \"marius.barth.uni.koeln@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-3421-6665\")), person(\"Bruna\", \"Wundervald\", , \"brunadaviesw@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8163-220X\")), person(\"Joyce\", \"Cahoon\", , \"joyceyu48@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7217-4702\")), person(\"Grant\", \"McDermott\", , \"grantmcd@uoregon.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7883-8573\")), person(\"Kevin\", \"Zarca\", , \"kevin.zarca@gmail.com\", role = \"ctb\"), person(\"Shiro\", \"Kuriwaki\", , \"shirokuriwaki@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5687-2647\")), person(\"Lukas\", \"Wallrich\", , \"lukas.wallrich@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2121-5177\")), person(\"James\", \"Martherus\", , \"james@martherus.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8285-3300\")), person(\"Chuliang\", \"Xiao\", , \"cxiao@umich.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8466-9398\")), person(\"Joseph\", \"Larmarange\", , \"joseph@larmarange.net\", role = \"ctb\"), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", , \"michal2992@gmail.com\", role = \"ctb\"), person(\"Hakon\", \"Malmedal\", , \"hmalmedal@gmail.com\", role = \"ctb\"), person(\"Clara\", \"Wang\", role = \"ctb\"), person(\"Sergio\", \"Oller\", , \"sergioller@gmail.com\", role = \"ctb\"), person(\"Luke\", \"Sonnet\", , \"luke.sonnet@gmail.com\", role = \"ctb\"), person(\"Jim\", \"Hester\", , \"jim.hester@posit.co\", role = \"ctb\"), person(\"Ben\", \"Schneider\", , \"benjamin.julius.schneider@gmail.com\", role = \"ctb\"), person(\"Bernie\", \"Gray\", , \"bfgray3@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-9190-6032\")), person(\"Mara\", \"Averick\", , \"mara@posit.co\", role = \"ctb\"), person(\"Aaron\", \"Jacobs\", , \"atheriel@gmail.com\", role = \"ctb\"), person(\"Andreas\", \"Bender\", , \"bender.at.R@gmail.com\", role = \"ctb\"), person(\"Sven\", \"Templer\", , \"sven.templer@gmail.com\", role = \"ctb\"), person(\"Paul-Christian\", \"Buerkner\", , \"paul.buerkner@gmail.com\", role = \"ctb\"), person(\"Matthew\", \"Kay\", , \"mjskay@umich.edu\", role = \"ctb\"), person(\"Erwan\", \"Le Pennec\", , \"lepennec@gmail.com\", role = \"ctb\"), person(\"Johan\", \"Junkka\", , \"johan.junkka@umu.se\", role = \"ctb\"), person(\"Hao\", \"Zhu\", , \"haozhu233@gmail.com\", role = \"ctb\"), person(\"Benjamin\", \"Soltoff\", , \"soltoffbc@uchicago.edu\", role = \"ctb\"), person(\"Zoe\", \"Wilkinson Saldana\", , \"zoewsaldana@gmail.com\", role = \"ctb\"), person(\"Tyler\", \"Littlefield\", , \"tylurp1@gmail.com\", role = \"ctb\"), person(\"Charles T.\", \"Gray\", , \"charlestigray@gmail.com\", role = \"ctb\"), person(\"Shabbh E.\", \"Banks\", role = \"ctb\"), person(\"Serina\", \"Robinson\", , \"robi0916@umn.edu\", role = \"ctb\"), person(\"Roger\", \"Bivand\", , \"Roger.Bivand@nhh.no\", role = \"ctb\"), person(\"Riinu\", \"Ots\", , \"riinuots@gmail.com\", role = \"ctb\"), person(\"Nicholas\", \"Williams\", , \"ntwilliams.personal@gmail.com\", role = \"ctb\"), person(\"Nina\", \"Jakobsen\", role = \"ctb\"), person(\"Michael\", \"Weylandt\", , \"michael.weylandt@gmail.com\", role = \"ctb\"), person(\"Lisa\", \"Lendway\", , \"llendway@macalester.edu\", role = \"ctb\"), person(\"Karl\", \"Hailperin\", , \"khailper@gmail.com\", role = \"ctb\"), person(\"Josue\", \"Rodriguez\", , \"jerrodriguez@ucdavis.edu\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", , \"jenny@posit.co\", role = \"ctb\"), person(\"Chris\", \"Jarvis\", , \"Christopher1.jarvis@gmail.com\", role = \"ctb\"), person(\"Greg\", \"Macfarlane\", , \"gregmacfarlane@gmail.com\", role = \"ctb\"), person(\"Brian\", \"Mannakee\", , \"bmannakee@gmail.com\", role = \"ctb\"), person(\"Drew\", \"Tyre\", , \"atyre2@unl.edu\", role = \"ctb\"), person(\"Shreyas\", \"Singh\", , \"shreyas.singh.298@gmail.com\", role = \"ctb\"), person(\"Laurens\", \"Geffert\", , \"laurensgeffert@gmail.com\", role = \"ctb\"), person(\"Hong\", \"Ooi\", , \"hongooi@microsoft.com\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", , \"henrikb@braju.com\", role = \"ctb\"), person(\"Eduard\", \"Szocs\", , \"eduardszoecs@gmail.com\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", , \"davidhughjones@gmail.com\", role = \"ctb\"), person(\"Matthieu\", \"Stigler\", , \"Matthieu.Stigler@gmail.com\", role = \"ctb\"), person(\"Hugo\", \"Tavares\", , \"hm533@cam.ac.uk\", role = \"ctb\", comment = c(ORCID = \"0000-0001-9373-2726\")), person(\"R. Willem\", \"Vervoort\", , \"Willemvervoort@gmail.com\", role = \"ctb\"), person(\"Brenton M.\", \"Wiernik\", , \"brenton@wiernik.org\", role = \"ctb\"), person(\"Josh\", \"Yamamoto\", , \"joshuayamamoto5@gmail.com\", role = \"ctb\"), person(\"Jasme\", \"Lee\", role = \"ctb\"), person(\"Taren\", \"Sanders\", , \"taren.sanders@acu.edu.au\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4504-6008\")), person(\"Ilaria\", \"Prosdocimi\", , \"prosdocimi.ilaria@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8565-094X\")), person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Alex\", \"Reinhart\", , \"areinhar@stat.cmu.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0002-6658-514X\")) )", + "Description": "Summarizes key information about statistical objects in tidy tibbles. This makes it easy to report results, create plots and consistently work with large numbers of models at once. Broom provides three verbs that each provide different types of information about a model. tidy() summarizes information about model components such as coefficients of a regression. glance() reports information about an entire model, such as goodness of fit measures like AIC and BIC. augment() adds information about individual observations to a dataset, such as fitted values or influence measures.", + "License": "MIT + file LICENSE", + "URL": "https://broom.tidymodels.org/, https://github.com/tidymodels/broom", + "BugReports": "https://github.com/tidymodels/broom/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "backports", + "cli", + "dplyr (>= 1.0.0)", + "generics (>= 0.0.2)", + "glue", + "lifecycle", + "purrr", + "rlang (>= 1.1.0)", + "stringr", + "tibble (>= 3.0.0)", + "tidyr (>= 1.0.0)" + ], + "Suggests": [ + "AER", + "AUC", + "bbmle", + "betareg (>= 3.2-1)", + "biglm", + "binGroup", + "boot", + "btergm (>= 1.10.6)", + "car (>= 3.1-2)", + "carData", + "caret", + "cluster", + "cmprsk", + "coda", + "covr", + "drc", + "e1071", + "emmeans", + "epiR (>= 2.0.85)", + "ergm (>= 3.10.4)", + "fixest (>= 0.9.0)", + "gam (>= 1.15)", + "gee", + "geepack", + "ggplot2", + "glmnet", + "glmnetUtils", + "gmm", + "Hmisc", + "interp", + "irlba", + "joineRML", + "Kendall", + "knitr", + "ks", + "Lahman", + "lavaan (>= 0.6.18)", + "leaps", + "lfe", + "lm.beta", + "lme4", + "lmodel2", + "lmtest (>= 0.9.38)", + "lsmeans", + "maps", + "margins", + "MASS", + "mclust", + "mediation", + "metafor", + "mfx", + "mgcv", + "mlogit", + "modeldata", + "modeltests (>= 0.1.6)", + "muhaz", + "multcomp", + "network", + "nnet", + "ordinal", + "plm", + "poLCA", + "psych", + "quantreg", + "rmarkdown", + "robust", + "robustbase", + "rsample", + "sandwich", + "spatialreg", + "spdep (>= 1.1)", + "speedglm", + "spelling", + "stats4", + "survey", + "survival (>= 3.6-4)", + "systemfit", + "testthat (>= 3.0.0)", + "tseries", + "vars", + "zoo" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-25", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "Collate": "'aaa-documentation-helper.R' 'null-and-default.R' 'aer.R' 'auc.R' 'base.R' 'bbmle.R' 'betareg.R' 'biglm.R' 'bingroup.R' 'boot.R' 'broom-package.R' 'broom.R' 'btergm.R' 'car.R' 'caret.R' 'cluster.R' 'cmprsk.R' 'data-frame.R' 'deprecated-0-7-0.R' 'drc.R' 'emmeans.R' 'epiR.R' 'ergm.R' 'fixest.R' 'gam.R' 'geepack.R' 'glmnet-cv-glmnet.R' 'glmnet-glmnet.R' 'gmm.R' 'hmisc.R' 'import-standalone-obj-type.R' 'import-standalone-types-check.R' 'joinerml.R' 'kendall.R' 'ks.R' 'lavaan.R' 'leaps.R' 'lfe.R' 'list-irlba.R' 'list-optim.R' 'list-svd.R' 'list-xyz.R' 'list.R' 'lm-beta.R' 'lmodel2.R' 'lmtest.R' 'maps.R' 'margins.R' 'mass-fitdistr.R' 'mass-negbin.R' 'mass-polr.R' 'mass-ridgelm.R' 'stats-lm.R' 'mass-rlm.R' 'mclust.R' 'mediation.R' 'metafor.R' 'mfx.R' 'mgcv.R' 'mlogit.R' 'muhaz.R' 'multcomp.R' 'nnet.R' 'nobs.R' 'ordinal-clm.R' 'ordinal-clmm.R' 'plm.R' 'polca.R' 'psych.R' 'stats-nls.R' 'quantreg-nlrq.R' 'quantreg-rq.R' 'quantreg-rqs.R' 'robust-glmrob.R' 'robust-lmrob.R' 'robustbase-glmrob.R' 'robustbase-lmrob.R' 'sp.R' 'spdep.R' 'speedglm-speedglm.R' 'speedglm-speedlm.R' 'stats-anova.R' 'stats-arima.R' 'stats-decompose.R' 'stats-factanal.R' 'stats-glm.R' 'stats-htest.R' 'stats-kmeans.R' 'stats-loess.R' 'stats-mlm.R' 'stats-prcomp.R' 'stats-smooth.spline.R' 'stats-summary-lm.R' 'stats-time-series.R' 'survey.R' 'survival-aareg.R' 'survival-cch.R' 'survival-coxph.R' 'survival-pyears.R' 'survival-survdiff.R' 'survival-survexp.R' 'survival-survfit.R' 'survival-survreg.R' 'systemfit.R' 'tseries.R' 'utilities.R' 'vars.R' 'zoo.R' 'zzz.R'", + "NeedsCompilation": "no", + "Author": "David Robinson [aut], Alex Hayes [aut] (ORCID: ), Simon Couch [aut] (ORCID: ), Emil Hvitfeldt [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: ), Indrajeet Patil [ctb] (ORCID: ), Derek Chiu [ctb], Matthieu Gomez [ctb], Boris Demeshev [ctb], Dieter Menne [ctb], Benjamin Nutter [ctb], Luke Johnston [ctb], Ben Bolker [ctb], Francois Briatte [ctb], Jeffrey Arnold [ctb], Jonah Gabry [ctb], Luciano Selzer [ctb], Gavin Simpson [ctb], Jens Preussner [ctb], Jay Hesselberth [ctb], Hadley Wickham [ctb], Matthew Lincoln [ctb], Alessandro Gasparini [ctb], Lukasz Komsta [ctb], Frederick Novometsky [ctb], Wilson Freitas [ctb], Michelle Evans [ctb], Jason Cory Brunson [ctb], Simon Jackson [ctb], Ben Whalley [ctb], Karissa Whiting [ctb], Yves Rosseel [ctb], Michael Kuehn [ctb], Jorge Cimentada [ctb], Erle Holgersen [ctb], Karl Dunkle Werner [ctb] (ORCID: ), Ethan Christensen [ctb], Steven Pav [ctb], Paul PJ [ctb], Ben Schneider [ctb], Patrick Kennedy [ctb], Lily Medina [ctb], Brian Fannin [ctb], Jason Muhlenkamp [ctb], Matt Lehman [ctb], Bill Denney [ctb] (ORCID: ), Nic Crane [ctb], Andrew Bates [ctb], Vincent Arel-Bundock [ctb] (ORCID: ), Hideaki Hayashi [ctb], Luis Tobalina [ctb], Annie Wang [ctb], Wei Yang Tham [ctb], Clara Wang [ctb], Abby Smith [ctb] (ORCID: ), Jasper Cooper [ctb] (ORCID: ), E Auden Krauska [ctb] (ORCID: ), Alex Wang [ctb], Malcolm Barrett [ctb] (ORCID: ), Charles Gray [ctb] (ORCID: ), Jared Wilber [ctb], Vilmantas Gegzna [ctb] (ORCID: ), Eduard Szoecs [ctb], Frederik Aust [ctb] (ORCID: ), Angus Moore [ctb], Nick Williams [ctb], Marius Barth [ctb] (ORCID: ), Bruna Wundervald [ctb] (ORCID: ), Joyce Cahoon [ctb] (ORCID: ), Grant McDermott [ctb] (ORCID: ), Kevin Zarca [ctb], Shiro Kuriwaki [ctb] (ORCID: ), Lukas Wallrich [ctb] (ORCID: ), James Martherus [ctb] (ORCID: ), Chuliang Xiao [ctb] (ORCID: ), Joseph Larmarange [ctb], Max Kuhn [ctb], Michal Bojanowski [ctb], Hakon Malmedal [ctb], Clara Wang [ctb], Sergio Oller [ctb], Luke Sonnet [ctb], Jim Hester [ctb], Ben Schneider [ctb], Bernie Gray [ctb] (ORCID: ), Mara Averick [ctb], Aaron Jacobs [ctb], Andreas Bender [ctb], Sven Templer [ctb], Paul-Christian Buerkner [ctb], Matthew Kay [ctb], Erwan Le Pennec [ctb], Johan Junkka [ctb], Hao Zhu [ctb], Benjamin Soltoff [ctb], Zoe Wilkinson Saldana [ctb], Tyler Littlefield [ctb], Charles T. Gray [ctb], Shabbh E. Banks [ctb], Serina Robinson [ctb], Roger Bivand [ctb], Riinu Ots [ctb], Nicholas Williams [ctb], Nina Jakobsen [ctb], Michael Weylandt [ctb], Lisa Lendway [ctb], Karl Hailperin [ctb], Josue Rodriguez [ctb], Jenny Bryan [ctb], Chris Jarvis [ctb], Greg Macfarlane [ctb], Brian Mannakee [ctb], Drew Tyre [ctb], Shreyas Singh [ctb], Laurens Geffert [ctb], Hong Ooi [ctb], Henrik Bengtsson [ctb], Eduard Szocs [ctb], David Hugh-Jones [ctb], Matthieu Stigler [ctb], Hugo Tavares [ctb] (ORCID: ), R. Willem Vervoort [ctb], Brenton M. Wiernik [ctb], Josh Yamamoto [ctb], Jasme Lee [ctb], Taren Sanders [ctb] (ORCID: ), Ilaria Prosdocimi [ctb] (ORCID: ), Daniel D. Sjoberg [ctb] (ORCID: ), Alex Reinhart [ctb] (ORCID: )", + "Maintainer": "Emil Hvitfeldt ", + "Repository": "CRAN" + }, + "bslib": { + "Package": "bslib", + "Version": "0.9.0", + "Source": "Repository", + "Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'", + "Authors@R": "c( person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap colorpicker library\"), person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"), comment = \"Bootswatch library\"), person(, \"PayPal\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap accessibility plugin\") )", + "Description": "Simplifies custom 'CSS' styling of both 'shiny' and 'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as well as their various 'Bootswatch' themes. An interactive widget is also provided for previewing themes in real time.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib", + "BugReports": "https://github.com/rstudio/bslib/issues", + "Depends": [ + "R (>= 2.10)" + ], + "Imports": [ + "base64enc", + "cachem", + "fastmap (>= 1.1.1)", + "grDevices", + "htmltools (>= 0.5.8)", + "jquerylib (>= 0.1.3)", + "jsonlite", + "lifecycle", + "memoise (>= 2.0.1)", + "mime", + "rlang", + "sass (>= 0.4.9)" + ], + "Suggests": [ + "bsicons", + "curl", + "fontawesome", + "future", + "ggplot2", + "knitr", + "magrittr", + "rappdirs", + "rmarkdown (>= 2.7)", + "shiny (> 1.8.1)", + "testthat", + "thematic", + "tools", + "utils", + "withr", + "yaml" + ], + "Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11, cpsievert/chiflights22, cpsievert/histoslider, dplyr, DT, ggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets, lattice, leaflet, lubridate, markdown, modelr, plotly, reactable, reshape2, rprojroot, rsconnect, rstudio/shiny, scales, styler, tibble", + "Config/Needs/routine": "chromote, desc, renv", + "Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue, htmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr, rprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile, theme-*, rmd-*", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R' 'bs-theme-preset-brand.R' 'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R' 'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R' 'layout.R' 'nav-items.R' 'nav-update.R' 'navbar_options.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R' 'value-box.R' 'version-default.R' 'versions.R'", + "NeedsCompilation": "no", + "Author": "Carson Sievert [aut, cre] (), Joe Cheng [aut], Garrick Aden-Buie [aut] (), Posit Software, PBC [cph, fnd], Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Javi Aguilar [ctb, cph] (Bootstrap colorpicker library), Thomas Park [ctb, cph] (Bootswatch library), PayPal [ctb, cph] (Bootstrap accessibility plugin)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "cachem": { + "Package": "cachem", + "Version": "1.1.0", + "Source": "Repository", + "Title": "Cache R Objects with Automatic Pruning", + "Description": "Key-value stores with automatic pruning. Caches can limit either their total size or the age of the oldest object (or both), automatically pruning objects to maintain the constraints.", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", c(\"aut\", \"cre\")), person(family = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")))", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "ByteCompile": "true", + "URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem", + "Imports": [ + "rlang", + "fastmap (>= 1.2.0)" + ], + "Suggests": [ + "testthat" + ], + "RoxygenNote": "7.2.3", + "Config/Needs/routine": "lobstr", + "Config/Needs/website": "pkgdown", + "NeedsCompilation": "yes", + "Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "callr": { + "Package": "callr", + "Version": "3.7.6", + "Source": "Repository", + "Title": "Call R from R", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )", + "Description": "It is sometimes useful to perform a computation in a separate R process, without affecting the current R process at all. This packages does exactly that.", + "License": "MIT + file LICENSE", + "URL": "https://callr.r-lib.org, https://github.com/r-lib/callr", + "BugReports": "https://github.com/r-lib/callr/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "processx (>= 3.6.1)", + "R6", + "utils" + ], + "Suggests": [ + "asciicast (>= 2.3.1)", + "cli (>= 1.1.0)", + "mockery", + "ps", + "rprojroot", + "spelling", + "testthat (>= 3.2.0)", + "withr (>= 2.3.0)" + ], + "Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph, tibble, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.1.9000", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre, cph] (), Winston Chang [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "cchsflow": { + "Package": "cchsflow", + "Version": "2.1.0", + "Source": "Local", + "Type": "Package", + "Title": "Transforming and Harmonizing CCHS Variables", + "Date": "2022-05-05", + "Author": "See Authors@R", + "Maintainer": "Kitty Chen ", + "Authors@R": "c( person(given = \"Doug\", family = \"Manuel\", role = c(\"aut\", \"cph\"), email = \"dmanuel@ohri.ca\", comment = c(ORCID = \"0000-0003-0912-0845\")), person(given = \"Warsame\", family = \"Yusuf\", role = c(\"aut\"), email = \"waryusuf@ohri.ca\"), person(given = \"Rostyslav\", family = \"Vyuha\", role = c(\"aut\"), email = \"rostikvyuha@gmail.com\"), person(given = \"Kitty\", family = \"Chen\", role = c(\"aut\",\"cre\"), email = \"kitchen@ohri.ca\"), person(given = \"Carol\", family = \"Bennett\", role = c(\"aut\"), email = \"cbennett@ohri.ca\"), person(given = \"Yulric\", family = \"Sequeira\", role = c(\"ctb\"), email = \"ysequeira@ohri.ca\"), person(given = \"The Ottawa Hospital\", role = c(\"cph\"), email = \"dmanuel@ohri.ca\"))", + "Depends": [ + "R (>= 3.5.0)", + "haven (>= 1.1.2)", + "dplyr (>= 0.8.2)", + "sjlabelled (>= 1.0.17)", + "stringr (>= 1.2.0)", + "magrittr", + "yaml", + "readr", + "purrr", + "cli" + ], + "Description": "Supporting the use of the Canadian Community Health Survey (CCHS) by transforming variables from each cycle into harmonized, consistent versions that span survey cycles (currently, 2001 to 2018). CCHS data used in this library is accessed and adapted in accordance to the Statistics Canada Open Licence Agreement. This package uses rec_with_table(), which was developed from 'sjmisc' rec(). Lüdecke D (2018). \"sjmisc: Data and Variable Transformation Functions\". Journal of Open Source Software, 3(26), 754. .", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "LazyData": "true", + "URL": "https://big-life-lab.github.io/cchsflow/, https://github.com/Big-Life-Lab/cchsflow", + "BugReports": "https://github.com/Big-Life-Lab/cchsflow/issues", + "RoxygenNote": "7.3.3", + "Suggests": [ + "testthat (>= 3.0.0)", + "kableExtra", + "DT", + "rmarkdown", + "knitr", + "pkgdown" + ], + "Config/testthat/edition": "3", + "RemoteType": "local", + "RemoteUrl": "~/github/cchsflow" + }, + "checkmate": { + "Package": "checkmate", + "Version": "2.3.4", + "Source": "Repository", + "Type": "Package", + "Title": "Fast and Versatile Argument Checks", + "Description": "Tests and assertions to perform frequent argument checks. A substantial part of the package was written in C to minimize any worries about execution time overhead.", + "Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Bernd\", \"Bischl\", NULL, \"bernd_bischl@gmx.net\", role = \"ctb\"), person(\"Dénes\", \"Tóth\", NULL, \"toth.denes@kogentum.hu\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4262-3217\")) )", + "URL": "https://mllg.github.io/checkmate/, https://github.com/mllg/checkmate", + "URLNote": "https://github.com/mllg/checkmate", + "BugReports": "https://github.com/mllg/checkmate/issues", + "NeedsCompilation": "yes", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "backports (>= 1.1.0)", + "utils" + ], + "Suggests": [ + "R6", + "fastmatch", + "data.table (>= 1.9.8)", + "devtools", + "ggplot2", + "knitr", + "magrittr", + "microbenchmark", + "rmarkdown", + "testthat (>= 3.0.4)", + "tinytest (>= 1.1.0)", + "tibble" + ], + "License": "BSD_3_clause + file LICENSE", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.3.3", + "Collate": "'AssertCollection.R' 'allMissing.R' 'anyInfinite.R' 'anyMissing.R' 'anyNaN.R' 'asInteger.R' 'assert.R' 'helper.R' 'makeExpectation.R' 'makeTest.R' 'makeAssertion.R' 'checkAccess.R' 'checkArray.R' 'checkAtomic.R' 'checkAtomicVector.R' 'checkCharacter.R' 'checkChoice.R' 'checkClass.R' 'checkComplex.R' 'checkCount.R' 'checkDataFrame.R' 'checkDataTable.R' 'checkDate.R' 'checkDirectoryExists.R' 'checkDisjunct.R' 'checkDouble.R' 'checkEnvironment.R' 'checkFALSE.R' 'checkFactor.R' 'checkFileExists.R' 'checkFlag.R' 'checkFormula.R' 'checkFunction.R' 'checkInt.R' 'checkInteger.R' 'checkIntegerish.R' 'checkList.R' 'checkLogical.R' 'checkMatrix.R' 'checkMultiClass.R' 'checkNamed.R' 'checkNames.R' 'checkNull.R' 'checkNumber.R' 'checkNumeric.R' 'checkOS.R' 'checkPOSIXct.R' 'checkPathForOutput.R' 'checkPermutation.R' 'checkR6.R' 'checkRaw.R' 'checkScalar.R' 'checkScalarNA.R' 'checkSetEqual.R' 'checkString.R' 'checkSubset.R' 'checkTRUE.R' 'checkTibble.R' 'checkVector.R' 'coalesce.R' 'isIntegerish.R' 'matchArg.R' 'qassert.R' 'qassertr.R' 'vname.R' 'wfwl.R' 'zzz.R'", + "Author": "Michel Lang [cre, aut] (ORCID: ), Bernd Bischl [ctb], Dénes Tóth [ctb] (ORCID: )", + "Maintainer": "Michel Lang ", + "Repository": "CRAN" + }, + "cli": { + "Package": "cli", + "Version": "3.6.5", + "Source": "Repository", + "Title": "Helpers for Developing Command Line Interfaces", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"gabor@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and text styles as well.", + "License": "MIT + file LICENSE", + "URL": "https://cli.r-lib.org, https://github.com/r-lib/cli", + "BugReports": "https://github.com/r-lib/cli/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "callr", + "covr", + "crayon", + "digest", + "glue (>= 1.6.0)", + "grDevices", + "htmltools", + "htmlwidgets", + "knitr", + "methods", + "processx", + "ps (>= 1.3.4.9000)", + "rlang (>= 1.0.2.9003)", + "rmarkdown", + "rprojroot", + "rstudioapi", + "testthat (>= 3.2.0)", + "tibble", + "whoami", + "withr" + ], + "Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc, fansi, prettyunits, sessioninfo, tidyverse/tidytemplate, usethis, vctrs", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre], Hadley Wickham [ctb], Kirill Müller [ctb], Salim Brüggemann [ctb] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "clipr": { + "Package": "clipr", + "Version": "0.8.0", + "Source": "Repository", + "Type": "Package", + "Title": "Read and Write from the System Clipboard", + "Authors@R": "c( person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4387-3384\")), person(\"Louis\", \"Maddox\", role = \"ctb\"), person(\"Steve\", \"Simpson\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\") )", + "Description": "Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards.", + "License": "GPL-3", + "URL": "https://github.com/mdlincoln/clipr, http://matthewlincoln.net/clipr/", + "BugReports": "https://github.com/mdlincoln/clipr/issues", + "Imports": [ + "utils" + ], + "Suggests": [ + "covr", + "knitr", + "rmarkdown", + "rstudioapi (>= 0.5)", + "testthat (>= 2.0.0)" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.1.2", + "SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel (http://www.vergenet.net/~conrad/software/xsel/) for accessing the X11 clipboard, or wl-clipboard (https://github.com/bugaevc/wl-clipboard) for systems using Wayland.", + "NeedsCompilation": "no", + "Author": "Matthew Lincoln [aut, cre] (), Louis Maddox [ctb], Steve Simpson [ctb], Jennifer Bryan [ctb]", + "Maintainer": "Matthew Lincoln ", + "Repository": "CRAN" + }, + "cluster": { + "Package": "cluster", + "Version": "2.1.6", + "Source": "Repository", + "Date": "2023-11-30", + "Priority": "recommended", + "Title": "\"Finding Groups in Data\": Cluster Analysis Extended Rousseeuw et al.", + "Description": "Methods for Cluster analysis. Much extended the original from Peter Rousseeuw, Anja Struyf and Mia Hubert, based on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".", + "Maintainer": "Martin Maechler ", + "Authors@R": "c(person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"), email=\"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\")) ,person(\"Peter\", \"Rousseeuw\", role=\"aut\", email=\"peter.rousseeuw@kuleuven.be\", comment = c(\"Fortran original\", ORCID = \"0000-0002-3807-5353\")) ,person(\"Anja\", \"Struyf\", role=\"aut\", comment= \"S original\") ,person(\"Mia\", \"Hubert\", role=\"aut\", email= \"Mia.Hubert@uia.ua.ac.be\", comment = c(\"S original\", ORCID = \"0000-0001-6398-4850\")) ,person(\"Kurt\", \"Hornik\", role=c(\"trl\", \"ctb\"), email=\"Kurt.Hornik@R-project.org\", comment=c(\"port to R; maintenance(1999-2000)\", ORCID=\"0000-0003-4198-9911\")) ,person(\"Matthias\", \"Studer\", role=\"ctb\") ,person(\"Pierre\", \"Roudier\", role=\"ctb\") ,person(\"Juan\", \"Gonzalez\", role=\"ctb\") ,person(\"Kamil\", \"Kozlowski\", role=\"ctb\") ,person(\"Erich\", \"Schubert\", role=\"ctb\", comment = c(\"fastpam options for pam()\", ORCID = \"0000-0001-9143-4880\")) ,person(\"Keefe\", \"Murphy\", role=\"ctb\", comment = \"volume.ellipsoid({d >= 3})\") #not yet ,person(\"Fischer-Rasmussen\", \"Kasper\", role = \"ctb\", comment = \"Gower distance for CLARA\") )", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "graphics", + "grDevices", + "stats", + "utils" + ], + "Suggests": [ + "MASS", + "Matrix" + ], + "SuggestsNote": "MASS: two examples using cov.rob() and mvrnorm(); Matrix tools for testing", + "Enhances": [ + "mvoutlier", + "fpc", + "ellipse", + "sfsmisc" + ], + "EnhancesNote": "xref-ed in man/*.Rd", + "LazyLoad": "yes", + "LazyData": "yes", + "ByteCompile": "yes", + "BuildResaveData": "no", + "License": "GPL (>= 2)", + "URL": "https://svn.r-project.org/R-packages/trunk/cluster/", + "NeedsCompilation": "yes", + "Author": "Martin Maechler [aut, cre] (), Peter Rousseeuw [aut] (Fortran original, ), Anja Struyf [aut] (S original), Mia Hubert [aut] (S original, ), Kurt Hornik [trl, ctb] (port to R; maintenance(1999-2000), ), Matthias Studer [ctb], Pierre Roudier [ctb], Juan Gonzalez [ctb], Kamil Kozlowski [ctb], Erich Schubert [ctb] (fastpam options for pam(), ), Keefe Murphy [ctb] (volume.ellipsoid({d >= 3}))", + "Repository": "CRAN" + }, + "codetools": { + "Package": "codetools", + "Version": "0.2-20", + "Source": "Repository", + "Priority": "recommended", + "Author": "Luke Tierney ", + "Description": "Code analysis tools for R.", + "Title": "Code Analysis Tools for R", + "Depends": [ + "R (>= 2.1)" + ], + "Maintainer": "Luke Tierney ", + "URL": "https://gitlab.com/luke-tierney/codetools", + "License": "GPL", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "colorspace": { + "Package": "colorspace", + "Version": "2.1-1", + "Source": "Repository", + "Date": "2024-07-26", + "Title": "A Toolbox for Manipulating and Assessing Colors and Palettes", + "Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"ihaka@stat.auckland.ac.nz\"), person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"paul@stat.auckland.ac.nz\", comment = c(ORCID = \"0000-0002-3224-8858\")), person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"jfisher@usgs.gov\", comment = c(ORCID = \"0000-0001-9032-8912\")), person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"Reto.Stauffer@uibk.ac.at\", comment = c(ORCID = \"0000-0002-3798-5507\")), person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"wilke@austin.utexas.edu\", comment = c(ORCID = \"0000-0002-7470-9261\")), person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"claire.mcwhite@utmail.utexas.edu\", comment = c(ORCID = \"0000-0001-7346-3047\")), person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")))", + "Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB. Qualitative, sequential, and diverging color palettes based on HCL colors are provided along with corresponding ggplot2 color scales. Color palette choice is aided by an interactive app (with either a Tcl/Tk or a shiny graphical user interface) and shiny apps with an HCL color picker and a color vision deficiency emulator. Plotting functions for displaying and assessing palettes include color swatches, visualizations of the HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation functions include: desaturation, lightening/darkening, mixing, and simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly). Details can be found on the project web page at and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical Software, ).", + "Depends": [ + "R (>= 3.0.0)", + "methods" + ], + "Imports": [ + "graphics", + "grDevices", + "stats" + ], + "Suggests": [ + "datasets", + "utils", + "KernSmooth", + "MASS", + "kernlab", + "mvtnorm", + "vcd", + "tcltk", + "shiny", + "shinyjs", + "ggplot2", + "dplyr", + "scales", + "grid", + "png", + "jpeg", + "knitr", + "rmarkdown", + "RColorBrewer", + "rcartocolor", + "scico", + "viridis", + "wesanderson" + ], + "VignetteBuilder": "knitr", + "License": "BSD_3_clause + file LICENSE", + "URL": "https://colorspace.R-Forge.R-project.org/, https://hclwizard.org/", + "BugReports": "https://colorspace.R-Forge.R-project.org/contact.html", + "LazyData": "yes", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Author": "Ross Ihaka [aut], Paul Murrell [aut] (), Kurt Hornik [aut] (), Jason C. Fisher [aut] (), Reto Stauffer [aut] (), Claus O. Wilke [aut] (), Claire D. McWhite [aut] (), Achim Zeileis [aut, cre] ()", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN" + }, + "commonmark": { + "Package": "commonmark", + "Version": "2.0.0", + "Source": "Repository", + "Type": "Package", + "Title": "High Performance CommonMark and Github Markdown Rendering in R", + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", ,\"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))", + "Description": "The CommonMark specification defines a rationalized version of markdown syntax. This package uses the 'cmark' reference implementation for converting markdown text into various formats including html, latex and groff man. In addition it exposes the markdown parse tree in xml format. Also includes opt-in support for GFM extensions including tables, autolinks, and strikethrough text.", + "License": "BSD_2_clause + file LICENSE", + "URL": "https://docs.ropensci.org/commonmark/ https://ropensci.r-universe.dev/commonmark", + "BugReports": "https://github.com/r-lib/commonmark/issues", + "Suggests": [ + "curl", + "testthat", + "xml2" + ], + "RoxygenNote": "7.3.2", + "Language": "en-US", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), John MacFarlane [cph] (Author of cmark)", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "config": { + "Package": "config", + "Version": "0.3.2", + "Source": "Repository", + "Type": "Package", + "Title": "Manage Environment Specific Configuration Values", + "Authors@R": "c( person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@rstudio.com\"), person(\"Andrie\", \"de Vries\", role = \"cre\", email = \"apdevries@gmail.com\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Imports": [ + "yaml (>= 2.1.19)" + ], + "Suggests": [ + "testthat", + "knitr", + "rmarkdown", + "covr", + "spelling", + "withr" + ], + "Description": "Manage configuration values across multiple environments (e.g. development, test, production). Read values using a function that determines the current environment and returns the appropriate value.", + "License": "GPL-3", + "URL": "https://rstudio.github.io/config/, https://github.com/rstudio/config", + "BugReports": "https://github.com/rstudio/config/issues", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "JJ Allaire [aut], Andrie de Vries [cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Andrie de Vries ", + "Repository": "CRAN" + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.2", + "Source": "Repository", + "Title": "A C++11 Interface for R's C Interface", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a header only, C++11 interface to R's C interface. Compared to other approaches 'cpp11' strives to be safe against long jumps from the C API as well as C++ exceptions, conform to normal R function semantics and supports interaction with 'ALTREP' vectors.", + "License": "MIT + file LICENSE", + "URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11", + "BugReports": "https://github.com/r-lib/cpp11/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Suggests": [ + "bench", + "brio", + "callr", + "cli", + "covr", + "decor", + "desc", + "ggplot2", + "glue", + "knitr", + "lobstr", + "mockery", + "progress", + "rmarkdown", + "scales", + "Rcpp", + "testthat (>= 3.2.0)", + "tibble", + "utils", + "vctrs", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble, vctrs", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Davis Vaughan [aut, cre] (), Jim Hester [aut] (), Romain François [aut] (), Benjamin Kietzman [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "crayon": { + "Package": "crayon", + "Version": "1.5.3", + "Source": "Repository", + "Title": "Colored Terminal Output", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Brodie\", \"Gaslam\", , \"brodie.gaslam@yahoo.com\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "The crayon package is now superseded. Please use the 'cli' package for new projects. Colored terminal output on terminals that support 'ANSI' color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is automatically detected. Colors and highlighting can be combined and nested. New styles can also be created easily. This package was inspired by the 'chalk' 'JavaScript' project.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.github.io/crayon/, https://github.com/r-lib/crayon", + "BugReports": "https://github.com/r-lib/crayon/issues", + "Imports": [ + "grDevices", + "methods", + "utils" + ], + "Suggests": [ + "mockery", + "rstudioapi", + "testthat", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R' 'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.R' 'ansi-palette.R' 'combine.R' 'string.R' 'utils.R' 'crayon-package.R' 'disposable.R' 'enc-utils.R' 'has_ansi.R' 'has_color.R' 'link.R' 'styles.R' 'machinery.R' 'parts.R' 'print.R' 'style-var.R' 'show.R' 'string_operations.R'", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Brodie Gaslam [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "credentials": { + "Package": "credentials", + "Version": "2.0.3", + "Source": "Repository", + "Type": "Package", + "Title": "Tools for Managing SSH and Git Credentials", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Setup and retrieve HTTPS and SSH credentials for use with 'git' and other services. For HTTPS remotes the package interfaces the 'git-credential' utility which 'git' uses to store HTTP usernames and passwords. For SSH remotes we provide convenient functions to find or generate appropriate SSH keys. The package both helps the user to setup a local git installation, and also provides a back-end for git/ssh client libraries to authenticate with existing user credentials.", + "License": "MIT + file LICENSE", + "SystemRequirements": "git (optional)", + "Encoding": "UTF-8", + "Imports": [ + "openssl (>= 1.3)", + "sys (>= 2.1)", + "curl", + "jsonlite", + "askpass" + ], + "Suggests": [ + "testthat", + "knitr", + "rmarkdown" + ], + "RoxygenNote": "7.2.1", + "VignetteBuilder": "knitr", + "Language": "en-US", + "URL": "https://docs.ropensci.org/credentials/ https://r-lib.r-universe.dev/credentials", + "BugReports": "https://github.com/r-lib/credentials/issues", + "NeedsCompilation": "no", + "Author": "Jeroen Ooms [aut, cre] (ORCID: )", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "curl": { + "Package": "curl", + "Version": "7.0.0", + "Source": "Repository", + "Type": "Package", + "Title": "A Modern and Flexible Web Client for R", + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Posit Software, PBC\", role = \"cph\"))", + "Description": "Bindings to 'libcurl' for performing fully configurable HTTP/FTP requests where responses can be processed in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr2' package which builds on this package with http specific tools and logic.", + "License": "MIT + file LICENSE", + "SystemRequirements": "libcurl (>= 7.73): libcurl-devel (rpm) or libcurl4-openssl-dev (deb)", + "URL": "https://jeroen.r-universe.dev/curl", + "BugReports": "https://github.com/jeroen/curl/issues", + "Suggests": [ + "spelling", + "testthat (>= 1.0.0)", + "knitr", + "jsonlite", + "later", + "rmarkdown", + "httpuv (>= 1.4.4)", + "webutils" + ], + "VignetteBuilder": "knitr", + "Depends": [ + "R (>= 3.0.0)" + ], + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "Language": "en-US", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), Hadley Wickham [ctb], Posit Software, PBC [cph]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "data.table": { + "Package": "data.table", + "Version": "1.18.2.1", + "Source": "Repository", + "Title": "Extension of `data.frame`", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "bit64 (>= 4.0.0)", + "bit (>= 4.0.4)", + "R.utils (>= 2.13.0)", + "xts", + "zoo (>= 1.8-1)", + "yaml", + "knitr", + "markdown" + ], + "Description": "Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns, friendly and fast character-separated-value read/write. Offers a natural and flexible syntax, for faster development.", + "License": "MPL-2.0 | file LICENSE", + "URL": "https://r-datatable.com, https://Rdatatable.gitlab.io/data.table, https://github.com/Rdatatable/data.table", + "BugReports": "https://github.com/Rdatatable/data.table/issues", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "ByteCompile": "TRUE", + "Authors@R": "c( person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")), person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"), person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"), person(\"Jan\",\"Gorecki\", role=\"aut\", email=\"j.gorecki@wit.edu.pl\"), person(\"Michael\",\"Chirico\", role=\"aut\", email=\"michaelchirico4@gmail.com\", comment = c(ORCID=\"0000-0003-0787-087X\")), person(\"Toby\",\"Hocking\", role=\"aut\", email=\"toby.hocking@r-project.org\", comment = c(ORCID=\"0000-0002-3146-0865\")), person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")), person(\"Ivan\", \"Krylov\", role=\"aut\", email=\"ikrylov@disroot.org\", comment = c(ORCID=\"0000-0002-0172-3812\")), person(\"Pasha\",\"Stetsenko\", role=\"ctb\"), person(\"Tom\",\"Short\", role=\"ctb\"), person(\"Steve\",\"Lianoglou\", role=\"ctb\"), person(\"Eduard\",\"Antonyan\", role=\"ctb\"), person(\"Markus\",\"Bonsch\", role=\"ctb\"), person(\"Hugh\",\"Parsonage\", role=\"ctb\"), person(\"Scott\",\"Ritchie\", role=\"ctb\"), person(\"Kun\",\"Ren\", role=\"ctb\"), person(\"Xianying\",\"Tan\", role=\"ctb\"), person(\"Rick\",\"Saporta\", role=\"ctb\"), person(\"Otto\",\"Seiskari\", role=\"ctb\"), person(\"Xianghui\",\"Dong\", role=\"ctb\"), person(\"Michel\",\"Lang\", role=\"ctb\"), person(\"Watal\",\"Iwasaki\", role=\"ctb\"), person(\"Seth\",\"Wenchel\", role=\"ctb\"), person(\"Karl\",\"Broman\", role=\"ctb\"), person(\"Tobias\",\"Schmidt\", role=\"ctb\"), person(\"David\",\"Arenburg\", role=\"ctb\"), person(\"Ethan\",\"Smith\", role=\"ctb\"), person(\"Francois\",\"Cocquemas\", role=\"ctb\"), person(\"Matthieu\",\"Gomez\", role=\"ctb\"), person(\"Philippe\",\"Chataignon\", role=\"ctb\"), person(\"Nello\",\"Blaser\", role=\"ctb\"), person(\"Dmitry\",\"Selivanov\", role=\"ctb\"), person(\"Andrey\",\"Riabushenko\", role=\"ctb\"), person(\"Cheng\",\"Lee\", role=\"ctb\"), person(\"Declan\",\"Groves\", role=\"ctb\"), person(\"Daniel\",\"Possenriede\", role=\"ctb\"), person(\"Felipe\",\"Parages\", role=\"ctb\"), person(\"Denes\",\"Toth\", role=\"ctb\"), person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"), person(\"Ayappan\",\"Perumal\", role=\"ctb\"), person(\"James\",\"Sams\", role=\"ctb\"), person(\"Martin\",\"Morgan\", role=\"ctb\"), person(\"Michael\",\"Quinn\", role=\"ctb\"), person(given=\"@javrucebo\", role=\"ctb\", comment=\"GitHub user\"), person(\"Marc\",\"Halperin\", role=\"ctb\"), person(\"Roy\",\"Storey\", role=\"ctb\"), person(\"Manish\",\"Saraswat\", role=\"ctb\"), person(\"Morgan\",\"Jacob\", role=\"ctb\"), person(\"Michael\",\"Schubmehl\", role=\"ctb\"), person(\"Davis\",\"Vaughan\", role=\"ctb\"), person(\"Leonardo\",\"Silvestri\", role=\"ctb\"), person(\"Jim\",\"Hester\", role=\"ctb\"), person(\"Anthony\",\"Damico\", role=\"ctb\"), person(\"Sebastian\",\"Freundt\", role=\"ctb\"), person(\"David\",\"Simons\", role=\"ctb\"), person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"), person(\"Cole\",\"Miller\", role=\"ctb\"), person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"), person(\"Vaclav\",\"Tlapak\", role=\"ctb\"), person(\"Kevin\",\"Ushey\", role=\"ctb\"), person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"), person(\"Tony\",\"Fischetti\", role=\"ctb\"), person(\"Ofek\",\"Shilon\", role=\"ctb\"), person(\"Vadim\",\"Khotilovich\", role=\"ctb\"), person(\"Hadley\",\"Wickham\", role=\"ctb\"), person(\"Bennet\",\"Becker\", role=\"ctb\"), person(\"Kyle\",\"Haynes\", role=\"ctb\"), person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"), person(\"Olivier\",\"Delmarcell\", role=\"ctb\"), person(\"Josh\",\"O'Brien\", role=\"ctb\"), person(\"Dereck\",\"de Mezquita\", role=\"ctb\"), person(\"Michael\",\"Czekanski\", role=\"ctb\"), person(\"Dmitry\", \"Shemetov\", role=\"ctb\"), person(\"Nitish\", \"Jha\", role=\"ctb\"), person(\"Joshua\", \"Wu\", role=\"ctb\"), person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"), person(\"Anirban\", \"Chetia\", role=\"ctb\"), person(\"Doris\", \"Amoakohene\", role=\"ctb\"), person(\"Angel\", \"Feliz\", role=\"ctb\"), person(\"Michael\",\"Young\", role=\"ctb\"), person(\"Mark\", \"Seeto\", role=\"ctb\"), person(\"Philippe\", \"Grosjean\", role=\"ctb\"), person(\"Vincent\", \"Runge\", role=\"ctb\"), person(\"Christian\", \"Wia\", role=\"ctb\"), person(\"Elise\", \"Maigné\", role=\"ctb\"), person(\"Vincent\", \"Rocher\", role=\"ctb\"), person(\"Vijay\", \"Lulla\", role=\"ctb\"), person(\"Aljaž\", \"Sluga\", role=\"ctb\"), person(\"Bill\", \"Evans\", role=\"ctb\"), person(\"Reino\", \"Bruner\", role=\"ctb\"), person(given=\"@badasahog\", role=\"ctb\", comment=\"GitHub user\"), person(\"Vinit\", \"Thakur\", role=\"ctb\"), person(\"Mukul\", \"Kumar\", role=\"ctb\"), person(\"Ildikó\", \"Czeller\", role=\"ctb\"), person(\"Manmita\", \"Das\", role=\"ctb\") )", + "NeedsCompilation": "yes", + "Author": "Tyson Barrett [aut, cre] (ORCID: ), Matt Dowle [aut], Arun Srinivasan [aut], Jan Gorecki [aut], Michael Chirico [aut] (ORCID: ), Toby Hocking [aut] (ORCID: ), Benjamin Schwendinger [aut] (ORCID: ), Ivan Krylov [aut] (ORCID: ), Pasha Stetsenko [ctb], Tom Short [ctb], Steve Lianoglou [ctb], Eduard Antonyan [ctb], Markus Bonsch [ctb], Hugh Parsonage [ctb], Scott Ritchie [ctb], Kun Ren [ctb], Xianying Tan [ctb], Rick Saporta [ctb], Otto Seiskari [ctb], Xianghui Dong [ctb], Michel Lang [ctb], Watal Iwasaki [ctb], Seth Wenchel [ctb], Karl Broman [ctb], Tobias Schmidt [ctb], David Arenburg [ctb], Ethan Smith [ctb], Francois Cocquemas [ctb], Matthieu Gomez [ctb], Philippe Chataignon [ctb], Nello Blaser [ctb], Dmitry Selivanov [ctb], Andrey Riabushenko [ctb], Cheng Lee [ctb], Declan Groves [ctb], Daniel Possenriede [ctb], Felipe Parages [ctb], Denes Toth [ctb], Mus Yaramaz-David [ctb], Ayappan Perumal [ctb], James Sams [ctb], Martin Morgan [ctb], Michael Quinn [ctb], @javrucebo [ctb] (GitHub user), Marc Halperin [ctb], Roy Storey [ctb], Manish Saraswat [ctb], Morgan Jacob [ctb], Michael Schubmehl [ctb], Davis Vaughan [ctb], Leonardo Silvestri [ctb], Jim Hester [ctb], Anthony Damico [ctb], Sebastian Freundt [ctb], David Simons [ctb], Elliott Sales de Andrade [ctb], Cole Miller [ctb], Jens Peder Meldgaard [ctb], Vaclav Tlapak [ctb], Kevin Ushey [ctb], Dirk Eddelbuettel [ctb], Tony Fischetti [ctb], Ofek Shilon [ctb], Vadim Khotilovich [ctb], Hadley Wickham [ctb], Bennet Becker [ctb], Kyle Haynes [ctb], Boniface Christian Kamgang [ctb], Olivier Delmarcell [ctb], Josh O'Brien [ctb], Dereck de Mezquita [ctb], Michael Czekanski [ctb], Dmitry Shemetov [ctb], Nitish Jha [ctb], Joshua Wu [ctb], Iago Giné-Vázquez [ctb], Anirban Chetia [ctb], Doris Amoakohene [ctb], Angel Feliz [ctb], Michael Young [ctb], Mark Seeto [ctb], Philippe Grosjean [ctb], Vincent Runge [ctb], Christian Wia [ctb], Elise Maigné [ctb], Vincent Rocher [ctb], Vijay Lulla [ctb], Aljaž Sluga [ctb], Bill Evans [ctb], Reino Bruner [ctb], @badasahog [ctb] (GitHub user), Vinit Thakur [ctb], Mukul Kumar [ctb], Ildikó Czeller [ctb], Manmita Das [ctb]", + "Maintainer": "Tyson Barrett ", + "Repository": "CRAN" + }, + "datawizard": { + "Package": "datawizard", + "Version": "1.3.0", + "Source": "Repository", + "Type": "Package", + "Title": "Easy Data Wrangling and Statistical Transformations", + "Authors@R": "c( person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-1995-6531\")), person(\"Etienne\", \"Bacher\", , \"etienne.bacher@protonmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-9271-5075\")), person(\"Dominique\", \"Makowski\", , \"dom.makowski@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0001-5375-9967\")), person(\"Daniel\", \"Lüdecke\", , \"d.luedecke@uke.de\", role = \"aut\", comment = c(ORCID = \"0000-0002-8895-3206\")), person(\"Mattan S.\", \"Ben-Shachar\", , \"matanshm@post.bgu.ac.il\", role = \"aut\", comment = c(ORCID = \"0000-0002-4287-4801\")), person(\"Brenton M.\", \"Wiernik\", , \"brenton@wiernik.org\", role = \"aut\", comment = c(ORCID = \"0000-0001-9560-6336\")), person(\"Rémi\", \"Thériault\", , \"remi.theriault@mail.mcgill.ca\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4315-6788\")), person(\"Thomas J.\", \"Faulkenberry\", , \"faulkenberry@tarleton.edu\", role = \"rev\"), person(\"Robert\", \"Garrett\", , \"rcg4@illinois.edu\", role = \"rev\") )", + "Maintainer": "Etienne Bacher ", + "Description": "A lightweight package to assist in key steps involved in any data analysis workflow: (1) wrangling the raw data to get it in the needed form, (2) applying preprocessing steps and statistical transformations, and (3) compute statistical summaries of data properties and distributions. It is also the data wrangling backend for packages in 'easystats' ecosystem. References: Patil et al. (2022) .", + "License": "MIT + file LICENSE", + "URL": "https://easystats.github.io/datawizard/", + "BugReports": "https://github.com/easystats/datawizard/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "insight (>= 1.4.2)", + "stats", + "utils" + ], + "Suggests": [ + "bayestestR", + "boot", + "BH", + "brms", + "curl", + "data.table", + "dplyr (>= 1.1)", + "effectsize", + "emmeans", + "gamm4", + "ggplot2 (>= 3.5.0)", + "gt", + "haven", + "httr", + "knitr", + "lme4", + "mediation", + "modelbased", + "nanoparquet", + "parameters (>= 0.21.7)", + "performance (>= 0.14.0)", + "poorman (>= 0.2.7)", + "psych", + "readxl", + "readr", + "rio", + "rmarkdown", + "rstanarm", + "see", + "testthat (>= 3.2.1)", + "tibble", + "tidyr", + "tinytable (>= 0.13.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/Needs/website": "easystats/easystatstemplate", + "NeedsCompilation": "no", + "Author": "Indrajeet Patil [aut] (ORCID: ), Etienne Bacher [aut, cre] (ORCID: ), Dominique Makowski [aut] (ORCID: ), Daniel Lüdecke [aut] (ORCID: ), Mattan S. Ben-Shachar [aut] (ORCID: ), Brenton M. Wiernik [aut] (ORCID: ), Rémi Thériault [ctb] (ORCID: ), Thomas J. Faulkenberry [rev], Robert Garrett [rev]", + "Repository": "RSPM" + }, + "desc": { + "Package": "desc", + "Version": "1.4.3", + "Source": "Repository", + "Title": "Manipulate DESCRIPTION Files", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", role = \"aut\"), person(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"), person(\"Maëlle\", \"Salmon\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2815-0399\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Maintainer": "Gábor Csárdi ", + "Description": "Tools to read, write, create, and manipulate DESCRIPTION files. It is intended for packages that create or manipulate other packages.", + "License": "MIT + file LICENSE", + "URL": "https://desc.r-lib.org/, https://github.com/r-lib/desc", + "BugReports": "https://github.com/r-lib/desc/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli", + "R6", + "utils" + ], + "Suggests": [ + "callr", + "covr", + "gh", + "spelling", + "testthat", + "whoami", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "Collate": "'assertions.R' 'authors-at-r.R' 'built.R' 'classes.R' 'collate.R' 'constants.R' 'deps.R' 'desc-package.R' 'description.R' 'encoding.R' 'find-package-root.R' 'latex.R' 'non-oo-api.R' 'package-archives.R' 'read.R' 'remotes.R' 'str.R' 'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R' 'version.R'", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Kirill Müller [aut], Jim Hester [aut], Maëlle Salmon [ctb] (), Posit Software, PBC [cph, fnd]", + "Repository": "CRAN" + }, + "devtools": { + "Package": "devtools", + "Version": "2.4.6", + "Source": "Repository", + "Title": "Tools to Make Developing R Packages Easier", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Collection of package development tools.", + "License": "MIT + file LICENSE", + "URL": "https://devtools.r-lib.org/, https://github.com/r-lib/devtools", + "BugReports": "https://github.com/r-lib/devtools/issues", + "Depends": [ + "R (>= 4.1)", + "usethis (>= 3.2.1)" + ], + "Imports": [ + "cli (>= 3.6.5)", + "desc (>= 1.4.3)", + "ellipsis (>= 0.3.2)", + "fs (>= 1.6.6)", + "lifecycle (>= 1.0.4)", + "memoise (>= 2.0.1)", + "miniUI (>= 0.1.2)", + "pkgbuild (>= 1.4.8)", + "pkgdown (>= 2.1.3)", + "pkgload (>= 1.4.1)", + "profvis (>= 0.4.0)", + "rcmdcheck (>= 1.4.0)", + "remotes (>= 2.5.0)", + "rlang (>= 1.1.6)", + "roxygen2 (>= 7.3.3)", + "rversions (>= 2.1.2)", + "sessioninfo (>= 1.2.3)", + "stats", + "testthat (>= 3.2.3)", + "tools", + "urlchecker (>= 1.0.1)", + "utils", + "withr (>= 3.0.2)" + ], + "Suggests": [ + "BiocManager (>= 1.30.18)", + "callr (>= 3.7.1)", + "covr (>= 3.5.1)", + "curl (>= 4.3.2)", + "digest (>= 0.6.29)", + "DT (>= 0.23)", + "foghorn (>= 1.4.2)", + "gh (>= 1.3.0)", + "gmailr (>= 1.0.1)", + "httr (>= 1.4.3)", + "knitr (>= 1.39)", + "lintr (>= 3.0.0)", + "MASS", + "mockery (>= 0.4.3)", + "pingr (>= 2.0.1)", + "rhub (>= 1.1.1)", + "rmarkdown (>= 2.14)", + "rstudioapi (>= 0.13)", + "spelling (>= 2.2)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Winston Chang [aut], Jennifer Bryan [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "diffobj": { + "Package": "diffobj", + "Version": "0.3.5", + "Source": "Repository", + "Type": "Package", + "Title": "Diffs for R Objects", + "Description": "Generate a colorized diff of two R objects for an intuitive visualization of their differences.", + "Authors@R": "c( person( \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person( \"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\", role=c(\"ctb\", \"cph\"), comment=\"Original C implementation of Myers Diff Algorithm\"))", + "Depends": [ + "R (>= 3.1.0)" + ], + "License": "GPL-2 | GPL-3", + "URL": "https://github.com/brodieG/diffobj", + "BugReports": "https://github.com/brodieG/diffobj/issues", + "RoxygenNote": "7.1.1", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Suggests": [ + "knitr", + "rmarkdown" + ], + "Collate": "'capt.R' 'options.R' 'pager.R' 'check.R' 'finalizer.R' 'misc.R' 'html.R' 'styles.R' 's4.R' 'core.R' 'diff.R' 'get.R' 'guides.R' 'hunks.R' 'layout.R' 'myerssimple.R' 'rdiff.R' 'rds.R' 'set.R' 'subset.R' 'summmary.R' 'system.R' 'text.R' 'tochar.R' 'trim.R' 'word.R'", + "Imports": [ + "crayon (>= 1.3.2)", + "tools", + "methods", + "utils", + "stats" + ], + "NeedsCompilation": "yes", + "Author": "Brodie Gaslam [aut, cre], Michael B. Allen [ctb, cph] (Original C implementation of Myers Diff Algorithm)", + "Maintainer": "Brodie Gaslam ", + "Repository": "CRAN" + }, + "digest": { + "Package": "digest", + "Version": "0.6.37", + "Source": "Repository", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Antoine\", \"Lucas\", role=\"ctb\"), person(\"Jarek\", \"Tuszynski\", role=\"ctb\"), person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")), person(\"Mario\", \"Frasca\", role=\"ctb\"), person(\"Bryan\", \"Lewis\", role=\"ctb\"), person(\"Murray\", \"Stokely\", role=\"ctb\"), person(\"Hannes\", \"Muehleisen\", role=\"ctb\"), person(\"Duncan\", \"Murdoch\", role=\"ctb\"), person(\"Jim\", \"Hester\", role=\"ctb\"), person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")), person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")), person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Viliam\", \"Simko\", role=\"ctb\"), person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")), person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")), person(\"Matthew\", \"de Queljoe\", role=\"ctb\"), person(\"Dmitry\", \"Selivanov\", role=\"ctb\"), person(\"Ion\", \"Suruceanu\", role=\"ctb\"), person(\"Bill\", \"Denney\", role=\"ctb\"), person(\"Dirk\", \"Schumacher\", role=\"ctb\"), person(\"András\", \"Svraka\", role=\"ctb\"), person(\"Sergey\", \"Fedorov\", role=\"ctb\"), person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")), person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")), person(\"Kevin\", \"Tappe\", role=\"ctb\"), person(\"Harris\", \"McGehee\", role=\"ctb\"), person(\"Tim\", \"Mastny\", role=\"ctb\"), person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")), person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")), person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")), person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")), person(\"Sebastian\", \"Campbell\", role=\"ctb\"), person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")), person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")), person(\"Kevin\", \"Ushey\", role=\"ctb\"))", + "Date": "2024-08-19", + "Title": "Create Compact Hash Digests of R Objects", + "Description": "Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128' algorithms) permitting easy comparison of R language objects, as well as functions such as'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.", + "URL": "https://github.com/eddelbuettel/digest, https://dirk.eddelbuettel.com/code/digest.html", + "BugReports": "https://github.com/eddelbuettel/digest/issues", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "utils" + ], + "License": "GPL (>= 2)", + "Suggests": [ + "tinytest", + "simplermarkdown" + ], + "VignetteBuilder": "simplermarkdown", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (), Antoine Lucas [ctb], Jarek Tuszynski [ctb], Henrik Bengtsson [ctb] (), Simon Urbanek [ctb] (), Mario Frasca [ctb], Bryan Lewis [ctb], Murray Stokely [ctb], Hannes Muehleisen [ctb], Duncan Murdoch [ctb], Jim Hester [ctb], Wush Wu [ctb] (), Qiang Kou [ctb] (), Thierry Onkelinx [ctb] (), Michel Lang [ctb] (), Viliam Simko [ctb], Kurt Hornik [ctb] (), Radford Neal [ctb] (), Kendon Bell [ctb] (), Matthew de Queljoe [ctb], Dmitry Selivanov [ctb], Ion Suruceanu [ctb], Bill Denney [ctb], Dirk Schumacher [ctb], András Svraka [ctb], Sergey Fedorov [ctb], Will Landau [ctb] (), Floris Vanderhaeghe [ctb] (), Kevin Tappe [ctb], Harris McGehee [ctb], Tim Mastny [ctb], Aaron Peikert [ctb] (), Mark van der Loo [ctb] (), Chris Muir [ctb] (), Moritz Beller [ctb] (), Sebastian Campbell [ctb], Winston Chang [ctb] (), Dean Attali [ctb] (), Michael Chirico [ctb] (), Kevin Ushey [ctb]", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "docstyle": { + "Package": "docstyle", + "Version": "0.9.0", + "Source": "Local", + "Title": "Style-as-Code for Scientific Publishing", + "Authors@R": "person(\"Douglas\", \"Manuel\", , \"dmanuel@ohri.ca\", role = c(\"aut\", \"cre\"))", + "Description": "Generate Word, PDF, HTML, and PowerPoint assets from a single CSS + YAML configuration. Provides round-trip collaboration support for scientific publishing workflows, allowing reviewer edits from Word to be imported back into Quarto/Markdown source files.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Roxygen": "list(markdown = TRUE)", + "RoxygenNote": "7.3.3", + "Imports": [ + "digest", + "httr", + "jsonlite", + "officer", + "rstudioapi", + "xml2", + "yaml" + ], + "Suggests": [ + "devtools", + "knitr", + "quarto", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "VignetteBuilder": "quarto", + "URL": "https://github.com/dmanuel/docstyle", + "BugReports": "https://github.com/dmanuel/docstyle/issues", + "Author": "Douglas Manuel [aut, cre]", + "Maintainer": "Douglas Manuel ", + "RemoteType": "local", + "RemoteUrl": "~/github/docstyle" + }, + "downlit": { + "Package": "downlit", + "Version": "0.4.5", + "Source": "Repository", + "Title": "Syntax Highlighting and Automatic Linking", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Syntax highlighting of R code, specifically designed for the needs of 'RMarkdown' packages like 'pkgdown', 'hugodown', and 'bookdown'. It includes linking of function calls to their documentation on the web, and automatic translation of ANSI escapes in output to the equivalent HTML.", + "License": "MIT + file LICENSE", + "URL": "https://downlit.r-lib.org/, https://github.com/r-lib/downlit", + "BugReports": "https://github.com/r-lib/downlit/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "brio", + "desc", + "digest", + "evaluate", + "fansi", + "memoise", + "rlang", + "vctrs", + "withr", + "yaml" + ], + "Suggests": [ + "covr", + "htmltools", + "jsonlite", + "MASS", + "MassSpecWavelet", + "pkgload", + "rmarkdown", + "testthat (>= 3.0.0)", + "xml2" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "dplyr": { + "Package": "dplyr", + "Version": "1.1.4", + "Source": "Repository", + "Type": "Package", + "Title": "A Grammar of Data Manipulation", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A fast, consistent tool for working with data frame like objects, both in memory and out of memory.", + "License": "MIT + file LICENSE", + "URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr", + "BugReports": "https://github.com/tidyverse/dplyr/issues", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "generics", + "glue (>= 1.3.2)", + "lifecycle (>= 1.0.3)", + "magrittr (>= 1.5)", + "methods", + "pillar (>= 1.9.0)", + "R6", + "rlang (>= 1.1.0)", + "tibble (>= 3.2.0)", + "tidyselect (>= 1.2.0)", + "utils", + "vctrs (>= 0.6.4)" + ], + "Suggests": [ + "bench", + "broom", + "callr", + "covr", + "DBI", + "dbplyr (>= 2.2.1)", + "ggplot2", + "knitr", + "Lahman", + "lobstr", + "microbenchmark", + "nycflights13", + "purrr", + "rmarkdown", + "RMySQL", + "RPostgreSQL", + "RSQLite", + "stringi (>= 1.7.6)", + "testthat (>= 3.1.5)", + "tidyr (>= 1.3.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre] (), Romain François [aut] (), Lionel Henry [aut], Kirill Müller [aut] (), Davis Vaughan [aut] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "ellipsis": { + "Package": "ellipsis", + "Version": "0.3.2", + "Source": "Repository", + "Title": "Tools for Working with ...", + "Description": "The ellipsis is a powerful tool for extending functions. Unfortunately this power comes at a cost: misspelled arguments will be silently ignored. The ellipsis package provides a collection of functions to catch problems and alert the user.", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = \"cph\") )", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "URL": "https://ellipsis.r-lib.org, https://github.com/r-lib/ellipsis", + "BugReports": "https://github.com/r-lib/ellipsis/issues", + "Depends": [ + "R (>= 3.2)" + ], + "Imports": [ + "rlang (>= 0.3.0)" + ], + "Suggests": [ + "covr", + "testthat" + ], + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], RStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "evaluate": { + "Package": "evaluate", + "Version": "1.0.3", + "Source": "Repository", + "Type": "Package", + "Title": "Parsing and Evaluation Tools that Provide More Details than the Default", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Yihui\", \"Xie\", role = \"aut\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Michael\", \"Lawrence\", role = \"ctb\"), person(\"Thomas\", \"Kluyver\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Barret\", \"Schloerke\", role = \"ctb\"), person(\"Adam\", \"Ryczkowski\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Michel\", \"Lang\", role = \"ctb\"), person(\"Karolis\", \"Koncevičius\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Parsing and evaluation tools that make it easy to recreate the command line behaviour of R.", + "License": "MIT + file LICENSE", + "URL": "https://evaluate.r-lib.org/, https://github.com/r-lib/evaluate", + "BugReports": "https://github.com/r-lib/evaluate/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Suggests": [ + "callr", + "covr", + "ggplot2 (>= 3.3.6)", + "lattice", + "methods", + "pkgload", + "rlang", + "knitr", + "testthat (>= 3.0.0)", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Yihui Xie [aut] (), Michael Lawrence [ctb], Thomas Kluyver [ctb], Jeroen Ooms [ctb], Barret Schloerke [ctb], Adam Ryczkowski [ctb], Hiroaki Yutani [ctb], Michel Lang [ctb], Karolis Koncevičius [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "fansi": { + "Package": "fansi", + "Version": "1.0.6", + "Source": "Repository", + "Title": "ANSI Control Sequence Aware String Functions", + "Description": "Counterparts to R string manipulation functions that account for the effects of ANSI text formatting control sequences.", + "Authors@R": "c( person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"), person(family=\"R Core Team\", email=\"R-core@r-project.org\", role=\"cph\", comment=\"UTF8 byte length calcs from src/util.c\" ))", + "Depends": [ + "R (>= 3.1.0)" + ], + "License": "GPL-2 | GPL-3", + "URL": "https://github.com/brodieG/fansi", + "BugReports": "https://github.com/brodieG/fansi/issues", + "VignetteBuilder": "knitr", + "Suggests": [ + "unitizer", + "knitr", + "rmarkdown" + ], + "Imports": [ + "grDevices", + "utils" + ], + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R' 'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R' 'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'", + "NeedsCompilation": "yes", + "Author": "Brodie Gaslam [aut, cre], Elliott Sales De Andrade [ctb], R Core Team [cph] (UTF8 byte length calcs from src/util.c)", + "Maintainer": "Brodie Gaslam ", + "Repository": "CRAN" + }, + "farver": { + "Package": "farver", + "Version": "2.1.2", + "Source": "Repository", + "Type": "Package", + "Title": "High Performance Colour Space Manipulation", + "Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Berendea\", \"Nicolae\", role = \"aut\", comment = \"Author of the ColorSpace C++ library\"), person(\"Romain\", \"François\", , \"romain@purrple.cat\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "The encoding of colour can be handled in many different ways, using different colour spaces. As different colour spaces have different uses, efficient conversion between these representations are important. The 'farver' package provides a set of functions that gives access to very fast colour space conversion and comparisons implemented in C++, and offers speed improvements over the 'convertColor' function in the 'grDevices' package.", + "License": "MIT + file LICENSE", + "URL": "https://farver.data-imaginist.com, https://github.com/thomasp85/farver", + "BugReports": "https://github.com/thomasp85/farver/issues", + "Suggests": [ + "covr", + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Author": "Thomas Lin Pedersen [cre, aut] (), Berendea Nicolae [aut] (Author of the ColorSpace C++ library), Romain François [aut] (), Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "fastmap": { + "Package": "fastmap", + "Version": "1.2.0", + "Source": "Repository", + "Title": "Fast Data Structures", + "Authors@R": "c( person(\"Winston\", \"Chang\", email = \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\") )", + "Description": "Fast implementation of data structures, including a key-value store, stack, and queue. Environments are commonly used as key-value stores in R, but every time a new key is used, it is added to R's global symbol table, causing a small amount of memory leakage. This can be problematic in cases where many different keys are used. Fastmap avoids this memory leak issue by implementing the map using data structures in C++.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Suggests": [ + "testthat (>= 2.1.1)" + ], + "URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap", + "BugReports": "https://github.com/r-lib/fastmap/issues", + "NeedsCompilation": "yes", + "Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd], Tessil [cph] (hopscotch_map library)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "fontawesome": { + "Package": "fontawesome", + "Version": "0.5.3", + "Source": "Repository", + "Type": "Package", + "Title": "Easily Work with 'Font Awesome' Icons", + "Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown' documents and 'Shiny' apps. These icons can be inserted into HTML content through inline 'SVG' tags or 'i' tags. There is also a utility function for exporting 'Font Awesome' icons as 'PNG' images for those situations where raster graphics are needed.", + "Authors@R": "c( person(\"Richard\", \"Iannone\", , \"rich@posit.co\", c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"ctb\"), person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome font\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "License": "MIT + file LICENSE", + "URL": "https://github.com/rstudio/fontawesome, https://rstudio.github.io/fontawesome/", + "BugReports": "https://github.com/rstudio/fontawesome/issues", + "Encoding": "UTF-8", + "ByteCompile": "true", + "RoxygenNote": "7.3.2", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "rlang (>= 1.0.6)", + "htmltools (>= 0.5.1.1)" + ], + "Suggests": [ + "covr", + "dplyr (>= 1.0.8)", + "gt (>= 0.9.0)", + "knitr (>= 1.31)", + "testthat (>= 3.0.0)", + "rsvg" + ], + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Richard Iannone [aut, cre] (), Christophe Dervieux [ctb] (), Winston Chang [ctb], Dave Gandy [ctb, cph] (Font-Awesome font), Posit Software, PBC [cph, fnd]", + "Maintainer": "Richard Iannone ", + "Repository": "CRAN" + }, + "forcats": { + "Package": "forcats", + "Version": "1.0.0", + "Source": "Repository", + "Title": "Tools for Working with Categorical Variables (Factors)", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "Helpers for reordering factor levels (including moving specified levels to front, ordering by first appearance, reversing, and randomly shuffling), and tools for modifying factor levels (including collapsing rare levels into other, 'anonymising', and manually 'recoding').", + "License": "MIT + file LICENSE", + "URL": "https://forcats.tidyverse.org/, https://github.com/tidyverse/forcats", + "BugReports": "https://github.com/tidyverse/forcats/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "glue", + "lifecycle", + "magrittr", + "rlang (>= 1.0.0)", + "tibble" + ], + "Suggests": [ + "covr", + "dplyr", + "ggplot2", + "knitr", + "readr", + "rmarkdown", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], RStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "foreach": { + "Package": "foreach", + "Version": "1.5.2", + "Source": "Repository", + "Type": "Package", + "Title": "Provides Foreach Looping Construct", + "Authors@R": "c(person(\"Folashade\", \"Daniel\", role=\"cre\", email=\"fdaniel@microsoft.com\"), person(\"Hong\", \"Ooi\", role=\"ctb\"), person(\"Rich\", \"Calaway\", role=\"ctb\"), person(\"Microsoft\", role=c(\"aut\", \"cph\")), person(\"Steve\", \"Weston\", role=\"aut\"))", + "Description": "Support for the foreach looping construct. Foreach is an idiom that allows for iterating over elements in a collection, without the use of an explicit loop counter. This package in particular is intended to be used for its return value, rather than for its side effects. In that sense, it is similar to the standard lapply function, but doesn't require the evaluation of a function. Using foreach without side effects also facilitates executing the loop in parallel.", + "License": "Apache License (== 2.0)", + "URL": "https://github.com/RevolutionAnalytics/foreach", + "BugReports": "https://github.com/RevolutionAnalytics/foreach/issues", + "Depends": [ + "R (>= 2.5.0)" + ], + "Imports": [ + "codetools", + "utils", + "iterators" + ], + "Suggests": [ + "randomForest", + "doMC", + "doParallel", + "testthat", + "knitr", + "rmarkdown" + ], + "VignetteBuilder": "knitr", + "RoxygenNote": "7.1.1", + "Collate": "'callCombine.R' 'foreach.R' 'do.R' 'foreach-ext.R' 'foreach-pkg.R' 'getDoPar.R' 'getDoSeq.R' 'getsyms.R' 'iter.R' 'nextElem.R' 'onLoad.R' 'setDoPar.R' 'setDoSeq.R' 'times.R' 'utils.R'", + "NeedsCompilation": "no", + "Author": "Folashade Daniel [cre], Hong Ooi [ctb], Rich Calaway [ctb], Microsoft [aut, cph], Steve Weston [aut]", + "Maintainer": "Folashade Daniel ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "foreign": { + "Package": "foreign", + "Version": "0.8-87", + "Source": "Repository", + "Priority": "recommended", + "Date": "2024-06-25", + "Title": "Read Data Stored by 'Minitab', 'S', 'SAS', 'SPSS', 'Stata', 'Systat', 'Weka', 'dBase', ...", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "methods", + "utils", + "stats" + ], + "Authors@R": "c( person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cph\", \"cre\")), person(\"Roger\", \"Bivand\", role = c(\"ctb\", \"cph\")), person(c(\"Vincent\", \"J.\"), \"Carey\", role = c(\"ctb\", \"cph\")), person(\"Saikat\", \"DebRoy\", role = c(\"ctb\", \"cph\")), person(\"Stephen\", \"Eglen\", role = c(\"ctb\", \"cph\")), person(\"Rajarshi\", \"Guha\", role = c(\"ctb\", \"cph\")), person(\"Swetlana\", \"Herbrandt\", role = \"ctb\"), person(\"Nicholas\", \"Lewin-Koh\", role = c(\"ctb\", \"cph\")), person(\"Mark\", \"Myatt\", role = c(\"ctb\", \"cph\")), person(\"Michael\", \"Nelson\", role = \"ctb\"), person(\"Ben\", \"Pfaff\", role = \"ctb\"), person(\"Brian\", \"Quistorff\", role = \"ctb\"), person(\"Frank\", \"Warmerdam\", role = c(\"ctb\", \"cph\")), person(\"Stephen\", \"Weigand\", role = c(\"ctb\", \"cph\")), person(\"Free Software Foundation, Inc.\", role = \"cph\"))", + "Contact": "see 'MailingList'", + "Copyright": "see file COPYRIGHTS", + "Description": "Reading and writing data stored by some versions of 'Epi Info', 'Minitab', 'S', 'SAS', 'SPSS', 'Stata', 'Systat', 'Weka', and for reading and writing some 'dBase' files.", + "ByteCompile": "yes", + "Biarch": "yes", + "License": "GPL (>= 2)", + "BugReports": "https://bugs.r-project.org", + "MailingList": "R-help@r-project.org", + "URL": "https://svn.r-project.org/R-packages/trunk/foreign/", + "NeedsCompilation": "yes", + "Author": "R Core Team [aut, cph, cre], Roger Bivand [ctb, cph], Vincent J. Carey [ctb, cph], Saikat DebRoy [ctb, cph], Stephen Eglen [ctb, cph], Rajarshi Guha [ctb, cph], Swetlana Herbrandt [ctb], Nicholas Lewin-Koh [ctb, cph], Mark Myatt [ctb, cph], Michael Nelson [ctb], Ben Pfaff [ctb], Brian Quistorff [ctb], Frank Warmerdam [ctb, cph], Stephen Weigand [ctb, cph], Free Software Foundation, Inc. [cph]", + "Maintainer": "R Core Team ", + "Repository": "CRAN" + }, + "fs": { + "Package": "fs", + "Version": "1.6.7", + "Source": "Repository", + "Title": "Cross-Platform File System Operations Based on 'libuv'", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", , \"jeroenooms@gmail.com\", role = \"cre\"), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "A cross-platform interface to file system operations, built on top of the 'libuv' C library.", + "License": "MIT + file LICENSE", + "URL": "https://fs.r-lib.org, https://github.com/r-lib/fs", + "BugReports": "https://github.com/r-lib/fs/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "covr", + "crayon", + "knitr", + "pillar (>= 1.0.0)", + "rmarkdown", + "spelling", + "testthat (>= 3.0.0)", + "tibble (>= 1.1.0)", + "vctrs (>= 0.3.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "SystemRequirements": "GNU make", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut], Hadley Wickham [aut], Gábor Csárdi [aut], Jeroen Ooms [cre], libuv project contributors [cph] (libuv library), Joyent, Inc. and other Node contributors [cph] (libuv library), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "generics": { + "Package": "generics", + "Version": "0.1.3", + "Source": "Repository", + "Title": "Common S3 Generics not Provided by Base R Methods Related to Model Fitting", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"Max\", \"Kuhn\", , \"max@rstudio.com\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = \"aut\"), person(\"RStudio\", role = \"cph\") )", + "Description": "In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics.", + "License": "MIT + file LICENSE", + "URL": "https://generics.r-lib.org, https://github.com/r-lib/generics", + "BugReports": "https://github.com/r-lib/generics/issues", + "Depends": [ + "R (>= 3.2)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "covr", + "pkgload", + "testthat (>= 3.0.0)", + "tibble", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.0", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Max Kuhn [aut], Davis Vaughan [aut], RStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "gert": { + "Package": "gert", + "Version": "2.3.1", + "Source": "Repository", + "Type": "Package", + "Title": "Simple Git Client for R", + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Jennifer\", \"Bryan\", role = \"ctb\", email = \"jenny@posit.co\", comment = c(ORCID = \"0000-0002-6983-2759\")))", + "Description": "Simple git client for R based on 'libgit2' with support for SSH and HTTPS remotes. All functions in 'gert' use basic R data types (such as vectors and data-frames) for their arguments and return values. User credentials are shared with command line 'git' through the git-credential store and ssh keys stored on disk or ssh-agent.", + "License": "MIT + file LICENSE", + "URL": "https://docs.ropensci.org/gert/, https://ropensci.r-universe.dev/gert", + "BugReports": "https://github.com/r-lib/gert/issues", + "Imports": [ + "askpass", + "credentials (>= 1.2.1)", + "openssl (>= 2.0.3)", + "rstudioapi (>= 0.11)", + "sys", + "zip (>= 2.1.0)" + ], + "Suggests": [ + "spelling", + "knitr", + "rmarkdown", + "testthat" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "SystemRequirements": "libgit2 (>= 1.0): libgit2-devel (rpm) or libgit2-dev (deb)", + "Language": "en-US", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), Jennifer Bryan [ctb] (ORCID: )", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "ggplot2": { + "Package": "ggplot2", + "Version": "3.5.1", + "Source": "Repository", + "Title": "Create Elegant Data Visualisations Using the Grammar of Graphics", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Winston\", \"Chang\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Kohske\", \"Takahashi\", role = \"aut\"), person(\"Claus\", \"Wilke\", role = \"aut\", comment = c(ORCID = \"0000-0002-7470-9261\")), person(\"Kara\", \"Woo\", role = \"aut\", comment = c(ORCID = \"0000-0002-5125-4188\")), person(\"Hiroaki\", \"Yutani\", role = \"aut\", comment = c(ORCID = \"0000-0002-3385-7233\")), person(\"Dewey\", \"Dunnington\", role = \"aut\", comment = c(ORCID = \"0000-0002-9415-4582\")), person(\"Teun\", \"van den Brand\", role = \"aut\", comment = c(ORCID = \"0000-0002-9335-7468\")), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A system for 'declaratively' creating graphics, based on \"The Grammar of Graphics\". You provide the data, tell 'ggplot2' how to map variables to aesthetics, what graphical primitives to use, and it takes care of the details.", + "License": "MIT + file LICENSE", + "URL": "https://ggplot2.tidyverse.org, https://github.com/tidyverse/ggplot2", + "BugReports": "https://github.com/tidyverse/ggplot2/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Imports": [ + "cli", + "glue", + "grDevices", + "grid", + "gtable (>= 0.1.1)", + "isoband", + "lifecycle (> 1.0.1)", + "MASS", + "mgcv", + "rlang (>= 1.1.0)", + "scales (>= 1.3.0)", + "stats", + "tibble", + "vctrs (>= 0.6.0)", + "withr (>= 2.5.0)" + ], + "Suggests": [ + "covr", + "dplyr", + "ggplot2movies", + "hexbin", + "Hmisc", + "knitr", + "mapproj", + "maps", + "multcomp", + "munsell", + "nlme", + "profvis", + "quantreg", + "ragg (>= 1.2.6)", + "RColorBrewer", + "rmarkdown", + "rpart", + "sf (>= 0.7-3)", + "svglite (>= 2.1.2)", + "testthat (>= 3.1.2)", + "vdiffr (>= 1.0.6)", + "xml2" + ], + "Enhances": [ + "sp" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "ggtext, tidyr, forcats, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.1", + "Collate": "'ggproto.R' 'ggplot-global.R' 'aaa-.R' 'aes-colour-fill-alpha.R' 'aes-evaluation.R' 'aes-group-order.R' 'aes-linetype-size-shape.R' 'aes-position.R' 'compat-plyr.R' 'utilities.R' 'aes.R' 'utilities-checks.R' 'legend-draw.R' 'geom-.R' 'annotation-custom.R' 'annotation-logticks.R' 'geom-polygon.R' 'geom-map.R' 'annotation-map.R' 'geom-raster.R' 'annotation-raster.R' 'annotation.R' 'autolayer.R' 'autoplot.R' 'axis-secondary.R' 'backports.R' 'bench.R' 'bin.R' 'coord-.R' 'coord-cartesian-.R' 'coord-fixed.R' 'coord-flip.R' 'coord-map.R' 'coord-munch.R' 'coord-polar.R' 'coord-quickmap.R' 'coord-radial.R' 'coord-sf.R' 'coord-transform.R' 'data.R' 'docs_layer.R' 'facet-.R' 'facet-grid-.R' 'facet-null.R' 'facet-wrap.R' 'fortify-lm.R' 'fortify-map.R' 'fortify-multcomp.R' 'fortify-spatial.R' 'fortify.R' 'stat-.R' 'geom-abline.R' 'geom-rect.R' 'geom-bar.R' 'geom-bin2d.R' 'geom-blank.R' 'geom-boxplot.R' 'geom-col.R' 'geom-path.R' 'geom-contour.R' 'geom-count.R' 'geom-crossbar.R' 'geom-segment.R' 'geom-curve.R' 'geom-defaults.R' 'geom-ribbon.R' 'geom-density.R' 'geom-density2d.R' 'geom-dotplot.R' 'geom-errorbar.R' 'geom-errorbarh.R' 'geom-freqpoly.R' 'geom-function.R' 'geom-hex.R' 'geom-histogram.R' 'geom-hline.R' 'geom-jitter.R' 'geom-label.R' 'geom-linerange.R' 'geom-point.R' 'geom-pointrange.R' 'geom-quantile.R' 'geom-rug.R' 'geom-sf.R' 'geom-smooth.R' 'geom-spoke.R' 'geom-text.R' 'geom-tile.R' 'geom-violin.R' 'geom-vline.R' 'ggplot2-package.R' 'grob-absolute.R' 'grob-dotstack.R' 'grob-null.R' 'grouping.R' 'theme-elements.R' 'guide-.R' 'guide-axis.R' 'guide-axis-logticks.R' 'guide-axis-stack.R' 'guide-axis-theta.R' 'guide-legend.R' 'guide-bins.R' 'guide-colorbar.R' 'guide-colorsteps.R' 'guide-custom.R' 'layer.R' 'guide-none.R' 'guide-old.R' 'guides-.R' 'guides-grid.R' 'hexbin.R' 'import-standalone-obj-type.R' 'import-standalone-types-check.R' 'labeller.R' 'labels.R' 'layer-sf.R' 'layout.R' 'limits.R' 'margins.R' 'performance.R' 'plot-build.R' 'plot-construction.R' 'plot-last.R' 'plot.R' 'position-.R' 'position-collide.R' 'position-dodge.R' 'position-dodge2.R' 'position-identity.R' 'position-jitter.R' 'position-jitterdodge.R' 'position-nudge.R' 'position-stack.R' 'quick-plot.R' 'reshape-add-margins.R' 'save.R' 'scale-.R' 'scale-alpha.R' 'scale-binned.R' 'scale-brewer.R' 'scale-colour.R' 'scale-continuous.R' 'scale-date.R' 'scale-discrete-.R' 'scale-expansion.R' 'scale-gradient.R' 'scale-grey.R' 'scale-hue.R' 'scale-identity.R' 'scale-linetype.R' 'scale-linewidth.R' 'scale-manual.R' 'scale-shape.R' 'scale-size.R' 'scale-steps.R' 'scale-type.R' 'scale-view.R' 'scale-viridis.R' 'scales-.R' 'stat-align.R' 'stat-bin.R' 'stat-bin2d.R' 'stat-bindot.R' 'stat-binhex.R' 'stat-boxplot.R' 'stat-contour.R' 'stat-count.R' 'stat-density-2d.R' 'stat-density.R' 'stat-ecdf.R' 'stat-ellipse.R' 'stat-function.R' 'stat-identity.R' 'stat-qq-line.R' 'stat-qq.R' 'stat-quantilemethods.R' 'stat-sf-coordinates.R' 'stat-sf.R' 'stat-smooth-methods.R' 'stat-smooth.R' 'stat-sum.R' 'stat-summary-2d.R' 'stat-summary-bin.R' 'stat-summary-hex.R' 'stat-summary.R' 'stat-unique.R' 'stat-ydensity.R' 'summarise-plot.R' 'summary.R' 'theme.R' 'theme-defaults.R' 'theme-current.R' 'utilities-break.R' 'utilities-grid.R' 'utilities-help.R' 'utilities-matrix.R' 'utilities-patterns.R' 'utilities-resolution.R' 'utilities-tidy-eval.R' 'zxx.R' 'zzz.R'", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut] (), Winston Chang [aut] (), Lionel Henry [aut], Thomas Lin Pedersen [aut, cre] (), Kohske Takahashi [aut], Claus Wilke [aut] (), Kara Woo [aut] (), Hiroaki Yutani [aut] (), Dewey Dunnington [aut] (), Teun van den Brand [aut] (), Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "gh": { + "Package": "gh", + "Version": "1.5.0", + "Source": "Repository", + "Title": "'GitHub' 'API'", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"cre\", \"ctb\")), person(\"Jennifer\", \"Bryan\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Minimal client to access the 'GitHub' 'API'.", + "License": "MIT + file LICENSE", + "URL": "https://gh.r-lib.org/, https://github.com/r-lib/gh#readme", + "BugReports": "https://github.com/r-lib/gh/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "cli (>= 3.0.1)", + "gitcreds", + "glue", + "httr2 (>= 1.0.6)", + "ini", + "jsonlite", + "lifecycle", + "rlang (>= 1.0.0)" + ], + "Suggests": [ + "connectcreds", + "covr", + "knitr", + "rmarkdown", + "rprojroot", + "spelling", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-29", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.2.9000", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [cre, ctb], Jennifer Bryan [aut], Hadley Wickham [aut], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "gitcreds": { + "Package": "gitcreds", + "Version": "0.1.2", + "Source": "Repository", + "Title": "Query 'git' Credentials from 'R'", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "Query, set, delete credentials from the 'git' credential store. Manage 'GitHub' tokens and other 'git' credentials. This package is to be used by other packages that need to authenticate to 'GitHub' and/or other 'git' repositories.", + "License": "MIT + file LICENSE", + "URL": "https://gitcreds.r-lib.org/, https://github.com/r-lib/gitcreds", + "BugReports": "https://github.com/r-lib/gitcreds/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Suggests": [ + "codetools", + "covr", + "knitr", + "mockery", + "oskeyring", + "rmarkdown", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1.9000", + "SystemRequirements": "git", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], RStudio [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "glmnet": { + "Package": "glmnet", + "Version": "4.1-10", + "Source": "Repository", + "Type": "Package", + "Title": "Lasso and Elastic-Net Regularized Generalized Linear Models", + "Date": "2025-07-15", + "Authors@R": "c(person(\"Jerome\", \"Friedman\", role=c(\"aut\")), person(\"Trevor\", \"Hastie\", role=c(\"aut\", \"cre\"), email = \"hastie@stanford.edu\"), person(\"Rob\", \"Tibshirani\", role=c(\"aut\")), person(\"Balasubramanian\", \"Narasimhan\", role=c(\"aut\")), person(\"Kenneth\",\"Tay\",role=c(\"aut\")), person(\"Noah\", \"Simon\", role=c(\"aut\")), person(\"Junyang\", \"Qian\", role=c(\"ctb\")), person(\"James\", \"Yang\", role=c(\"aut\")))", + "Depends": [ + "R (>= 3.6.0)", + "Matrix (>= 1.0-6)" + ], + "Imports": [ + "methods", + "utils", + "foreach", + "shape", + "survival", + "Rcpp" + ], + "Suggests": [ + "knitr", + "lars", + "testthat", + "xfun", + "rmarkdown" + ], + "SystemRequirements": "C++17", + "Description": "Extremely efficient procedures for fitting the entire lasso or elastic-net regularization path for linear regression, logistic and multinomial regression models, Poisson regression, Cox model, multiple-response Gaussian, and the grouped multinomial regression; see and . There are two new and important additions. The family argument can be a GLM family object, which opens the door to any programmed family (). This comes with a modest computational cost, so when the built-in families suffice, they should be used instead. The other novelty is the relax option, which refits each of the active sets in the path unpenalized. The algorithm uses cyclical coordinate descent in a path-wise fashion, as described in the papers cited.", + "License": "GPL-2", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "URL": "https://glmnet.stanford.edu", + "RoxygenNote": "7.3.2", + "LinkingTo": [ + "RcppEigen", + "Rcpp" + ], + "NeedsCompilation": "yes", + "Author": "Jerome Friedman [aut], Trevor Hastie [aut, cre], Rob Tibshirani [aut], Balasubramanian Narasimhan [aut], Kenneth Tay [aut], Noah Simon [aut], Junyang Qian [ctb], James Yang [aut]", + "Maintainer": "Trevor Hastie ", + "Repository": "CRAN" + }, + "glue": { + "Package": "glue", + "Version": "1.8.0", + "Source": "Repository", + "Title": "Interpreted String Literals", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "An implementation of interpreted string literals, inspired by Python's Literal String Interpolation and Docstrings and Julia's Triple-Quoted String Literals .", + "License": "MIT + file LICENSE", + "URL": "https://glue.tidyverse.org/, https://github.com/tidyverse/glue", + "BugReports": "https://github.com/tidyverse/glue/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "crayon", + "DBI (>= 1.2.0)", + "dplyr", + "knitr", + "magrittr", + "rlang", + "rmarkdown", + "RSQLite", + "testthat (>= 3.2.0)", + "vctrs (>= 0.3.0)", + "waldo (>= 0.5.3)", + "withr" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/Needs/website": "bench, forcats, ggbeeswarm, ggplot2, R.utils, rprintf, tidyr, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (), Jennifer Bryan [aut, cre] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "gridExtra": { + "Package": "gridExtra", + "Version": "2.3", + "Source": "Repository", + "Authors@R": "c(person(\"Baptiste\", \"Auguie\", email = \"baptiste.auguie@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Anton\", \"Antonov\", email = \"tonytonov@gmail.com\", role = c(\"ctb\")))", + "License": "GPL (>= 2)", + "Title": "Miscellaneous Functions for \"Grid\" Graphics", + "Type": "Package", + "Description": "Provides a number of user-level functions to work with \"grid\" graphics, notably to arrange multiple grid-based plots on a page, and draw tables.", + "VignetteBuilder": "knitr", + "Imports": [ + "gtable", + "grid", + "grDevices", + "graphics", + "utils" + ], + "Suggests": [ + "ggplot2", + "egg", + "lattice", + "knitr", + "testthat" + ], + "RoxygenNote": "6.0.1", + "NeedsCompilation": "no", + "Author": "Baptiste Auguie [aut, cre], Anton Antonov [ctb]", + "Maintainer": "Baptiste Auguie ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "gt": { + "Package": "gt", + "Version": "1.3.0", + "Source": "Repository", + "Type": "Package", + "Title": "Easily Create Presentation-Ready Display Tables", + "Authors@R": "c( person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Shannon\", \"Haughton\", , \"shannon.l.haughton@gsk.com\", role = \"aut\"), person(\"Ellis\", \"Hughes\", , \"ellis.h.hughes@gsk.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-0637-4436\")), person(\"Alexandra\", \"Lauer\", , \"alexandralauer1@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4191-6301\")), person(\"Romain\", \"François\", , \"romain@tada.science\", role = \"aut\"), person(\"JooYoung\", \"Seo\", , \"jseo1005@illinois.edu\", role = \"aut\", comment = c(ORCID = \"0000-0002-4064-6012\")), person(\"Ken\", \"Brevoort\", , \"ken@brevoort.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4001-8358\")), person(\"Olivier\", \"Roy\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Build display tables from tabular data with an easy-to-use set of functions. With its progressive approach, we can construct display tables with a cohesive set of table parts. Table values can be formatted using any of the included formatting functions. Footnotes and cell styles can be precisely added through a location targeting system. The way in which 'gt' handles things for you means that you don't often have to worry about the fine details.", + "License": "MIT + file LICENSE", + "URL": "https://gt.rstudio.com, https://github.com/rstudio/gt", + "BugReports": "https://github.com/rstudio/gt/issues", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "base64enc (>= 0.1-3)", + "bigD (>= 0.2)", + "bitops (>= 1.0-7)", + "cli (>= 3.6.3)", + "commonmark (>= 1.9.1)", + "dplyr (>= 1.1.4)", + "fs (>= 1.6.4)", + "glue (>= 1.8.0)", + "htmltools (>= 0.5.8.1)", + "htmlwidgets (>= 1.6.4)", + "juicyjuice (>= 0.1.0)", + "magrittr (>= 2.0.3)", + "markdown (>= 1.13)", + "reactable (>= 0.4.4)", + "rlang (>= 1.1.4)", + "sass (>= 0.4.9)", + "scales (>= 1.3.0)", + "tidyselect (>= 1.2.1)", + "vctrs", + "xml2 (>= 1.3.6)" + ], + "Suggests": [ + "bit64", + "farver", + "fontawesome (>= 0.5.2)", + "ggplot2", + "grid", + "gtable (>= 0.3.6)", + "katex (>= 1.4.1)", + "knitr", + "lubridate", + "magick", + "paletteer", + "RColorBrewer", + "rmarkdown (>= 2.20)", + "rsvg", + "rvest", + "shiny (>= 1.9.1)", + "testthat (>= 3.1.9)", + "tidyr (>= 1.0.0)", + "webshot2 (>= 0.1.0)", + "withr" + ], + "Config/Needs/coverage": "officer", + "Config/Needs/website": "quarto", + "ByteCompile": "true", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Richard Iannone [aut, cre] (ORCID: ), Joe Cheng [aut], Barret Schloerke [aut] (ORCID: ), Shannon Haughton [aut], Ellis Hughes [aut] (ORCID: ), Alexandra Lauer [aut] (ORCID: ), Romain François [aut], JooYoung Seo [aut] (ORCID: ), Ken Brevoort [aut] (ORCID: ), Olivier Roy [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Richard Iannone ", + "Repository": "CRAN" + }, + "gtable": { + "Package": "gtable", + "Version": "0.3.6", + "Source": "Repository", + "Title": "Arrange 'Grobs' in Tables", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to make it easier to work with \"tables\" of 'grobs'. The 'gtable' package defines a 'gtable' grob class that specifies a grid along with a list of grobs and their placement in the grid. Further the package makes it easy to manipulate and combine 'gtable' objects so that complex compositions can be built up sequentially.", + "License": "MIT + file LICENSE", + "URL": "https://gtable.r-lib.org, https://github.com/r-lib/gtable", + "BugReports": "https://github.com/r-lib/gtable/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "cli", + "glue", + "grid", + "lifecycle", + "rlang (>= 1.1.0)", + "stats" + ], + "Suggests": [ + "covr", + "ggplot2", + "knitr", + "profvis", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2024-10-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "haven": { + "Package": "haven", + "Version": "2.5.4", + "Source": "Repository", + "Title": "Import and Export 'SPSS', 'Stata' and 'SAS' Files", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Evan\", \"Miller\", role = c(\"aut\", \"cph\"), comment = \"Author of included ReadStat code\"), person(\"Danny\", \"Smith\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Import foreign statistical formats into R via the embedded 'ReadStat' C library, .", + "License": "MIT + file LICENSE", + "URL": "https://haven.tidyverse.org, https://github.com/tidyverse/haven, https://github.com/WizardMac/ReadStat", + "BugReports": "https://github.com/tidyverse/haven/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli (>= 3.0.0)", + "forcats (>= 0.2.0)", + "hms", + "lifecycle", + "methods", + "readr (>= 0.1.0)", + "rlang (>= 0.4.0)", + "tibble", + "tidyselect", + "vctrs (>= 0.3.0)" + ], + "Suggests": [ + "covr", + "crayon", + "fs", + "knitr", + "pillar (>= 1.4.0)", + "rmarkdown", + "testthat (>= 3.0.0)", + "utf8" + ], + "LinkingTo": [ + "cpp11" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "GNU make, zlib: zlib1g-dev (deb), zlib-devel (rpm)", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Evan Miller [aut, cph] (Author of included ReadStat code), Danny Smith [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "here": { + "Package": "here", + "Version": "1.0.2", + "Source": "Repository", + "Title": "A Simpler Way to Find Your Files", + "Date": "2025-09-06", + "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\", comment = c(ORCID = \"0000-0002-6983-2759\")))", + "Description": "Constructs paths to your project's files. Declare the relative path of a file within your project with 'i_am()'. Use the 'here()' function as a drop-in replacement for 'file.path()', it will always locate the files relative to your project root.", + "License": "MIT + file LICENSE", + "URL": "https://here.r-lib.org/, https://github.com/r-lib/here", + "BugReports": "https://github.com/r-lib/here/issues", + "Imports": [ + "rprojroot (>= 2.1.0)" + ], + "Suggests": [ + "conflicted", + "covr", + "fs", + "knitr", + "palmerpenguins", + "plyr", + "readr", + "rlang", + "rmarkdown", + "testthat", + "uuid", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3.9000", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (ORCID: ), Jennifer Bryan [ctb] (ORCID: )", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "highr": { + "Package": "highr", + "Version": "0.11", + "Source": "Repository", + "Type": "Package", + "Title": "Syntax Highlighting for R Source Code", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Yixuan\", \"Qiu\", role = \"aut\"), person(\"Christopher\", \"Gandrud\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\") )", + "Description": "Provides syntax highlighting for R source code. Currently it supports LaTeX and HTML output. Source code of other languages is supported via Andre Simon's highlight package ().", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "xfun (>= 0.18)" + ], + "Suggests": [ + "knitr", + "markdown", + "testit" + ], + "License": "GPL", + "URL": "https://github.com/yihui/highr", + "BugReports": "https://github.com/yihui/highr/issues", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (), Yixuan Qiu [aut], Christopher Gandrud [ctb], Qiang Li [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "hms": { + "Package": "hms", + "Version": "1.1.3", + "Source": "Repository", + "Title": "Pretty Time of Day", + "Date": "2023-03-21", + "Authors@R": "c( person(\"Kirill\", \"Müller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\"), person(\"RStudio\", role = \"fnd\") )", + "Description": "Implements an S3 class for storing and formatting time-of-day values, based on the 'difftime' class.", + "Imports": [ + "lifecycle", + "methods", + "pkgconfig", + "rlang (>= 1.0.2)", + "vctrs (>= 0.3.8)" + ], + "Suggests": [ + "crayon", + "lubridate", + "pillar (>= 1.1.0)", + "testthat (>= 3.0.0)" + ], + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms", + "BugReports": "https://github.com/tidyverse/hms/issues", + "RoxygenNote": "7.2.3", + "Config/testthat/edition": "3", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "false", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (), R Consortium [fnd], RStudio [fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "htmlTable": { + "Package": "htmlTable", + "Version": "2.4.3", + "Source": "Repository", + "Title": "Advanced Tables for Markdown/HTML", + "Authors@R": "c( person(\"Max\", \"Gordon\", email = \"max@gforge.se\", role = c(\"aut\", \"cre\")), person(\"Stephen\", \"Gragg\", role=c(\"aut\")), person(\"Peter\", \"Konings\", role=c(\"aut\")))", + "Maintainer": "Max Gordon ", + "Description": "Tables with state-of-the-art layout elements such as row spanners, column spanners, table spanners, zebra striping, and more. While allowing advanced layout, the underlying css-structure is simple in order to maximize compatibility with common word processors. The package also contains a few text formatting functions that help outputting text compatible with HTML/LaTeX.", + "License": "GPL (>= 3)", + "URL": "https://gforge.se/packages/", + "BugReports": "https://github.com/gforge/htmlTable/issues", + "Biarch": "yes", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "stringr", + "knitr (>= 1.6)", + "magrittr (>= 1.5)", + "methods", + "checkmate", + "htmlwidgets", + "htmltools", + "rstudioapi (>= 0.6)" + ], + "Suggests": [ + "testthat", + "XML", + "xml2", + "Hmisc", + "rmarkdown", + "chron", + "lubridate", + "tibble", + "purrr", + "tidyselect", + "glue", + "rlang", + "tidyr (>= 0.7.2)", + "dplyr (>= 0.7.4)" + ], + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.2.2", + "Author": "Max Gordon [aut, cre], Stephen Gragg [aut], Peter Konings [aut]", + "Repository": "RSPM" + }, + "htmltools": { + "Package": "htmltools", + "Version": "0.5.8.1", + "Source": "Repository", + "Type": "Package", + "Title": "Tools for HTML", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Yihui\", \"Xie\", , \"yihui@posit.co\", role = \"aut\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools for HTML generation and output.", + "License": "GPL (>= 2)", + "URL": "https://github.com/rstudio/htmltools, https://rstudio.github.io/htmltools/", + "BugReports": "https://github.com/rstudio/htmltools/issues", + "Depends": [ + "R (>= 2.14.1)" + ], + "Imports": [ + "base64enc", + "digest", + "fastmap (>= 1.1.0)", + "grDevices", + "rlang (>= 1.0.0)", + "utils" + ], + "Suggests": [ + "Cairo", + "markdown", + "ragg", + "shiny", + "testthat", + "withr" + ], + "Enhances": [ + "knitr" + ], + "Config/Needs/check": "knitr", + "Config/Needs/website": "rstudio/quillt, bench", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R' 'html_print.R' 'htmltools-package.R' 'images.R' 'known_tags.R' 'selector.R' 'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R' 'template.R'", + "NeedsCompilation": "yes", + "Author": "Joe Cheng [aut], Carson Sievert [aut, cre] (), Barret Schloerke [aut] (), Winston Chang [aut] (), Yihui Xie [aut], Jeff Allen [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "htmlwidgets": { + "Package": "htmlwidgets", + "Version": "1.6.4", + "Source": "Repository", + "Type": "Package", + "Title": "HTML Widgets for R", + "Authors@R": "c( person(\"Ramnath\", \"Vaidyanathan\", role = c(\"aut\", \"cph\")), person(\"Yihui\", \"Xie\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Kenton\", \"Russell\", role = c(\"aut\", \"cph\")), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A framework for creating HTML widgets that render in various contexts including the R console, 'R Markdown' documents, and 'Shiny' web applications.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/ramnathv/htmlwidgets", + "BugReports": "https://github.com/ramnathv/htmlwidgets/issues", + "Imports": [ + "grDevices", + "htmltools (>= 0.5.7)", + "jsonlite (>= 0.9.16)", + "knitr (>= 1.8)", + "rmarkdown", + "yaml" + ], + "Suggests": [ + "testthat" + ], + "Enhances": [ + "shiny (>= 1.1)" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Ramnath Vaidyanathan [aut, cph], Yihui Xie [aut], JJ Allaire [aut], Joe Cheng [aut], Carson Sievert [aut, cre] (), Kenton Russell [aut, cph], Ellis Hughes [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "httpuv": { + "Package": "httpuv", + "Version": "1.6.16", + "Source": "Repository", + "Type": "Package", + "Title": "HTTP and WebSocket Server Library", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit, PBC\", \"fnd\", role = \"cph\"), person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Andrzej\", \"Krzemienski\", role = \"cph\", comment = \"optional.hpp\"), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"), person(\"Niels\", \"Provos\", role = \"cph\", comment = \"libuv subcomponent: tree.h\"), person(\"Internet Systems Consortium, Inc.\", role = \"cph\", comment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"), person(\"Alexander\", \"Chemeris\", role = \"cph\", comment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"), person(\"Google, Inc.\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Sony Mobile Communcations AB\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Berkeley Software Design Inc.\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Kenneth\", \"MacKay\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Steve\", \"Reid\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"James\", \"Brown\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"Bob\", \"Trower\", role = \"aut\", comment = \"base64 implementation\"), person(\"Alexander\", \"Peslyak\", role = \"aut\", comment = \"MD5 implementation\"), person(\"Trantor Standard Systems\", role = \"cph\", comment = \"base64 implementation\"), person(\"Igor\", \"Sysoev\", role = \"cph\", comment = \"http-parser\") )", + "Description": "Provides low-level socket and protocol support for handling HTTP and WebSocket requests directly from within R. It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the libuv and http-parser C libraries, both of which were developed by Joyent, Inc. (See LICENSE file for libuv and http-parser license information.)", + "License": "GPL (>= 2) | file LICENSE", + "URL": "https://github.com/rstudio/httpuv", + "BugReports": "https://github.com/rstudio/httpuv/issues", + "Depends": [ + "R (>= 2.15.1)" + ], + "Imports": [ + "later (>= 0.8.0)", + "promises", + "R6", + "Rcpp (>= 1.0.7)", + "utils" + ], + "Suggests": [ + "callr", + "curl", + "jsonlite", + "testthat", + "websocket" + ], + "LinkingTo": [ + "later", + "Rcpp" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "GNU make, zlib", + "Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R' 'staticServer.R' 'static_paths.R' 'utils.R'", + "NeedsCompilation": "yes", + "Author": "Joe Cheng [aut], Winston Chang [aut, cre], Posit, PBC fnd [cph], Hector Corrada Bravo [ctb], Jeroen Ooms [ctb], Andrzej Krzemienski [cph] (optional.hpp), libuv project contributors [cph] (libuv library, see src/libuv/AUTHORS file), Joyent, Inc. and other Node contributors [cph] (libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file), Niels Provos [cph] (libuv subcomponent: tree.h), Internet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c), Alexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from msinttypes)), Google, Inc. [cph] (libuv subcomponent: pthread-fixes.c), Sony Mobile Communcations AB [cph] (libuv subcomponent: pthread-fixes.c), Berkeley Software Design Inc. [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Kenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Steve Reid [aut] (SHA-1 implementation), James Brown [aut] (SHA-1 implementation), Bob Trower [aut] (base64 implementation), Alexander Peslyak [aut] (MD5 implementation), Trantor Standard Systems [cph] (base64 implementation), Igor Sysoev [cph] (http-parser)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "httr": { + "Package": "httr", + "Version": "1.4.8", + "Source": "Repository", + "Title": "Tools for Working with URLs and HTTP", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Useful tools for working with HTTP organised by HTTP verbs (GET(), POST(), etc). Configuration functions make it easy to control additional request components (authenticate(), add_headers() and so on).", + "License": "MIT + file LICENSE", + "URL": "https://httr.r-lib.org/, https://github.com/r-lib/httr", + "BugReports": "https://github.com/r-lib/httr/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "curl (>= 5.1.0)", + "jsonlite", + "mime", + "openssl (>= 0.8)", + "R6" + ], + "Suggests": [ + "covr", + "httpuv", + "jpeg", + "knitr", + "png", + "readr", + "rmarkdown", + "testthat (>= 0.8.0)", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "httr2": { + "Package": "httr2", + "Version": "1.2.2", + "Source": "Repository", + "Title": "Perform HTTP Requests and Process the Responses", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Maximilian\", \"Girlich\", role = \"ctb\") )", + "Description": "Tools for creating and modifying HTTP requests, then performing them and processing the results. 'httr2' is a modern re-imagining of 'httr' that uses a pipe-based interface and solves more of the problems that API wrapping packages face.", + "License": "MIT + file LICENSE", + "URL": "https://httr2.r-lib.org, https://github.com/r-lib/httr2", + "BugReports": "https://github.com/r-lib/httr2/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "cli (>= 3.0.0)", + "curl (>= 6.4.0)", + "glue", + "lifecycle", + "magrittr", + "openssl", + "R6", + "rappdirs", + "rlang (>= 1.1.0)", + "vctrs (>= 0.6.3)", + "withr" + ], + "Suggests": [ + "askpass", + "bench", + "clipr", + "covr", + "docopt", + "httpuv", + "jose", + "jsonlite", + "knitr", + "later (>= 1.4.0)", + "nanonext", + "otel (>= 0.2.0)", + "otelsdk (>= 0.2.0)", + "paws.common (>= 0.8.0)", + "promises", + "rmarkdown", + "testthat (>= 3.1.8)", + "tibble", + "webfakes (>= 1.4.0)", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "resp-stream, req-perform", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd], Maximilian Girlich [ctb]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "igraph": { + "Package": "igraph", + "Version": "2.2.2", + "Source": "Repository", + "Title": "Network Analysis and Visualization", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Tamás\", \"Nepusz\", , \"ntamas@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-1451-338X\")), person(\"Vincent\", \"Traag\", role = \"aut\", comment = c(ORCID = \"0000-0003-3170-3879\")), person(\"Szabolcs\", \"Horvát\", , \"szhorvat@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-3100-523X\")), person(\"Fabio\", \"Zanini\", , \"fabio.zanini@unsw.edu.au\", role = \"aut\", comment = c(ORCID = \"0000-0001-7097-8539\")), person(\"Daniel\", \"Noom\", role = \"aut\"), person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Michael\", \"Antonov\", role = \"ctb\"), person(\"Chan Zuckerberg Initiative\", role = \"fnd\", comment = c(ROR = \"02qenvm24\")), person(\"David\", \"Schoch\", , \"david.schoch@cynkra.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-2952-4812\")), person(\"Maëlle\", \"Salmon\", , \"maelle@cynkra.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-2815-0399\")) )", + "Description": "Routines for simple graphs and network analysis. It can handle large graphs very well and provides functions for generating random and regular graphs, graph visualization, centrality methods and much more.", + "License": "GPL (>= 2)", + "URL": "https://r.igraph.org/, https://igraph.org/, https://igraph.discourse.group/", + "BugReports": "https://github.com/igraph/rigraph/issues", + "Depends": [ + "methods", + "R (>= 3.5.0)" + ], + "Imports": [ + "cli", + "graphics", + "grDevices", + "lifecycle", + "magrittr", + "Matrix", + "pkgconfig (>= 2.0.0)", + "rlang (>= 1.1.0)", + "stats", + "utils", + "vctrs" + ], + "Suggests": [ + "ape (>= 5.7-0.1)", + "callr", + "decor", + "digest", + "igraphdata", + "knitr", + "rgl (>= 1.3.14)", + "rmarkdown", + "scales", + "stats4", + "tcltk", + "testthat", + "vdiffr", + "withr" + ], + "Enhances": [ + "graph" + ], + "LinkingTo": [ + "cpp11 (>= 0.5.0)" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "false", + "Config/build/never-clean": "true", + "Config/comment/compilation-database": "Generate manually with pkgload:::generate_db() for faster pkgload::load_all()", + "Config/Needs/build": "r-lib/roxygen2, devtools, irlba, pkgconfig, igraph/igraph.r2cdocs, moodymudskipper/devtag", + "Config/Needs/coverage": "covr", + "Config/Needs/website": "here, readr, tibble, xmlparsedata, xml2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "aaa-auto, vs-es, scan, vs-operators, weakref, watts.strogatz.game", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3.9000", + "SystemRequirements": "libxml2 (optional), glpk (>= 4.57, optional)", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut] (ORCID: ), Tamás Nepusz [aut] (ORCID: ), Vincent Traag [aut] (ORCID: ), Szabolcs Horvát [aut] (ORCID: ), Fabio Zanini [aut] (ORCID: ), Daniel Noom [aut], Kirill Müller [aut, cre] (ORCID: ), Michael Antonov [ctb], Chan Zuckerberg Initiative [fnd] (ROR: ), David Schoch [aut] (ORCID: ), Maëlle Salmon [aut] (ORCID: )", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "ini": { + "Package": "ini", + "Version": "0.3.1", + "Source": "Repository", + "Type": "Package", + "Title": "Read and Write '.ini' Files", + "Date": "2018-05-19", + "Author": "David Valentim Dias", + "Maintainer": "David Valentim Dias ", + "Description": "Parse simple '.ini' configuration files to an structured list. Users can manipulate this resulting list with lapply() functions. This same structured list can be used to write back to file after modifications.", + "License": "GPL-3", + "URL": "https://github.com/dvdscripter/ini", + "BugReports": "https://github.com/dvdscripter/ini/issues", + "LazyData": "FALSE", + "RoxygenNote": "6.0.1", + "Suggests": [ + "testthat" + ], + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "insight": { + "Package": "insight", + "Version": "1.4.6", + "Source": "Repository", + "Type": "Package", + "Title": "Easy Access to Model Information for Various Model Objects", + "Authors@R": "c(person(given = \"Daniel\", family = \"Lüdecke\", role = c(\"aut\", \"cre\"), email = \"officialeasystats@gmail.com\", comment = c(ORCID = \"0000-0002-8895-3206\")), person(given = \"Dominique\", family = \"Makowski\", role = c(\"aut\", \"ctb\"), email = \"dom.makowski@gmail.com\", comment = c(ORCID = \"0000-0001-5375-9967\")), person(given = \"Indrajeet\", family = \"Patil\", role = c(\"aut\", \"ctb\"), email = \"patilindrajeet.science@gmail.com\", comment = c(ORCID = \"0000-0003-1995-6531\")), person(given = \"Philip\", family = \"Waggoner\", role = c(\"aut\", \"ctb\"), email = \"philip.waggoner@gmail.com\", comment = c(ORCID = \"0000-0002-7825-7573\")), person(given = \"Mattan S.\", family = \"Ben-Shachar\", role = c(\"aut\", \"ctb\"), email = \"matanshm@post.bgu.ac.il\", comment = c(ORCID = \"0000-0002-4287-4801\")), person(given = \"Brenton M.\", family = \"Wiernik\", role = c(\"aut\", \"ctb\"), email = \"brenton@wiernik.org\", comment = c(ORCID = \"0000-0001-9560-6336\")), person(given = \"Vincent\", family = \"Arel-Bundock\", email = \"vincent.arel-bundock@umontreal.ca\", role = c(\"aut\", \"ctb\"), comment = c(ORCID = \"0000-0003-2042-7063\")), person(given = \"Etienne\", family = \"Bacher\", email = \"etienne.bacher@protonmail.com\", role = c(\"aut\", \"ctb\"), comment = c(ORCID = \"0000-0002-9271-5075\")), person(given = \"Alex\", family = \"Hayes\", role = c(\"rev\"), email = \"alexpghayes@gmail.com\", comment = c(ORCID = \"0000-0002-4985-5160\")), person(given = \"Grant\", family = \"McDermott\", role = c(\"ctb\"), email = \"grantmcd@uoregon.edu\", comment = c(ORCID = \"0000-0001-7883-8573\")), person(given = \"Rémi\", family = \"Thériault\", role = \"ctb\", email = \"remi.theriault@mail.mcgill.ca\", comment = c(ORCID = \"0000-0003-4315-6788\")), person(given = \"Alex\", family = \"Reinhart\", role = \"ctb\", email = \"areinhar@stat.cmu.edu\", comment = c(ORCID = \"0000-0002-6658-514X\")))", + "Maintainer": "Daniel Lüdecke ", + "Description": "A tool to provide an easy, intuitive and consistent access to information contained in various R models, like model formulas, model terms, information about random effects, data that was used to fit the model or data from response variables. 'insight' mainly revolves around two types of functions: Functions that find (the names of) information, starting with 'find_', and functions that get the underlying data, starting with 'get_'. The package has a consistent syntax and works with many different model objects, where otherwise functions to access these information are missing.", + "License": "GPL-3", + "URL": "https://easystats.github.io/insight/", + "BugReports": "https://github.com/easystats/insight/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "methods", + "stats", + "utils" + ], + "Suggests": [ + "AER", + "afex", + "aod", + "ape", + "BayesFactor", + "bayestestR", + "bbmle", + "bdsmatrix", + "betareg", + "biglm", + "BH", + "blavaan (>= 0.5-5)", + "blme", + "boot", + "brms", + "broom", + "car", + "carData", + "censReg", + "cgam", + "clubSandwich", + "cobalt", + "coxme", + "cplm", + "crch", + "curl", + "datawizard (>= 1.2.0)", + "dbarts", + "effectsize", + "emmeans", + "epiR", + "estimatr", + "feisr", + "fixest (>= 0.11.2)", + "fungible", + "fwb", + "gam", + "gamlss", + "gamlss.data", + "gamm4", + "gbm", + "gee", + "geepack", + "geoR", + "GLMMadaptive", + "glmmTMB (>= 1.1.12)", + "glmtoolbox", + "gmnl", + "grDevices", + "gt", + "httptest2", + "httr2", + "interp", + "ivreg", + "JM", + "knitr", + "lavaan", + "lavaSearch2", + "lcmm", + "lfe", + "lme4", + "lmerTest", + "lmtest", + "logistf", + "logitr", + "marginaleffects (>= 0.29.0)", + "MASS", + "Matrix", + "mclogit", + "mclust", + "MCMCglmm", + "merTools", + "metaBMA", + "metadat", + "metafor", + "metaplus", + "mgcv", + "mhurdle", + "mice (>= 3.17.0)", + "mlogit", + "mmrm", + "modelbased (>= 0.9.0)", + "multgee", + "MuMIn", + "mvtnorm", + "nestedLogit", + "nlme", + "nnet", + "nonnest2", + "ordinal", + "panelr", + "parameters (>= 0.28.0)", + "parsnip", + "pbkrtest", + "performance", + "phylolm", + "plm", + "PROreg (>= 1.3.0)", + "pscl", + "psych", + "quantreg", + "Rcpp", + "RcppEigen", + "recipes", + "rmarkdown", + "rms", + "robustbase", + "robustlmm", + "rpart", + "rstanarm (>= 2.21.1)", + "rstantools (>= 2.1.0)", + "rstudioapi", + "RWiener", + "sandwich", + "sdmTMB", + "sampleSelection", + "serp", + "speedglm", + "splines", + "statmod", + "survey", + "survival", + "svylme", + "testthat", + "tidymodels", + "tinytable (>= 0.13.0)", + "TMB", + "truncreg", + "tune", + "tweedie", + "VGAM", + "WeightIt", + "withr", + "workflows" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/Needs/website": "easystats/easystatstemplate", + "Config/Needs/check": "stan-dev/cmdstanr", + "NeedsCompilation": "no", + "Author": "Daniel Lüdecke [aut, cre] (ORCID: ), Dominique Makowski [aut, ctb] (ORCID: ), Indrajeet Patil [aut, ctb] (ORCID: ), Philip Waggoner [aut, ctb] (ORCID: ), Mattan S. Ben-Shachar [aut, ctb] (ORCID: ), Brenton M. Wiernik [aut, ctb] (ORCID: ), Vincent Arel-Bundock [aut, ctb] (ORCID: ), Etienne Bacher [aut, ctb] (ORCID: ), Alex Hayes [rev] (ORCID: ), Grant McDermott [ctb] (ORCID: ), Rémi Thériault [ctb] (ORCID: ), Alex Reinhart [ctb] (ORCID: )", + "Repository": "CRAN" + }, + "isoband": { + "Package": "isoband", + "Version": "0.2.7", + "Source": "Repository", + "Title": "Generate Isolines and Isobands from Regularly Spaced Elevation Grids", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Claus O.\", \"Wilke\", , \"wilke@austin.utexas.edu\", role = \"aut\", comment = c(\"Original author\", ORCID = \"0000-0002-7470-9261\")), person(\"Thomas Lin\", \"Pedersen\", , \"thomasp85@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-5147-4711\")) )", + "Description": "A fast C++ implementation to generate contour lines (isolines) and contour polygons (isobands) from regularly spaced grids containing elevation data.", + "License": "MIT + file LICENSE", + "URL": "https://isoband.r-lib.org", + "BugReports": "https://github.com/r-lib/isoband/issues", + "Imports": [ + "grid", + "utils" + ], + "Suggests": [ + "covr", + "ggplot2", + "knitr", + "magick", + "microbenchmark", + "rmarkdown", + "sf", + "testthat", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "C++11", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre] (), Claus O. Wilke [aut] (Original author, ), Thomas Lin Pedersen [aut] ()", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "iterators": { + "Package": "iterators", + "Version": "1.0.14", + "Source": "Repository", + "Type": "Package", + "Title": "Provides Iterator Construct", + "Authors@R": "c(person(\"Folashade\", \"Daniel\", role=\"cre\", email=\"fdaniel@microsoft.com\"), person(\"Revolution\", \"Analytics\", role=c(\"aut\", \"cph\")), person(\"Steve\", \"Weston\", role=\"aut\"))", + "Description": "Support for iterators, which allow a programmer to traverse through all the elements of a vector, list, or other collection of data.", + "URL": "https://github.com/RevolutionAnalytics/iterators", + "Depends": [ + "R (>= 2.5.0)", + "utils" + ], + "Suggests": [ + "RUnit", + "foreach" + ], + "License": "Apache License (== 2.0)", + "NeedsCompilation": "no", + "Author": "Folashade Daniel [cre], Revolution Analytics [aut, cph], Steve Weston [aut]", + "Maintainer": "Folashade Daniel ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "jomo": { + "Package": "jomo", + "Version": "2.7-6", + "Source": "Repository", + "Type": "Package", + "Title": "Multilevel Joint Modelling Multiple Imputation", + "Date": "2023-04-13", + "Author": "Matteo Quartagno, James Carpenter", + "Maintainer": "Matteo Quartagno ", + "Description": "Similarly to package 'pan', 'jomo' is a package for multilevel joint modelling multiple imputation (Carpenter and Kenward, 2013) . Novel aspects of 'jomo' are the possibility of handling binary and categorical data through latent normal variables, the option to use cluster-specific covariance matrices and to impute compatibly with the substantive model.", + "License": "GPL-2", + "LazyData": "yes", + "Suggests": [ + "mitml" + ], + "Imports": [ + "stats", + "lme4", + "survival", + "MASS", + "ordinal", + "tibble" + ], + "NeedsCompilation": "yes", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "jquerylib": { + "Package": "jquerylib", + "Version": "0.1.4", + "Source": "Repository", + "Title": "Obtain 'jQuery' as an HTML Dependency Object", + "Authors@R": "c( person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"), person(family = \"RStudio\", role = \"cph\"), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt\") )", + "Description": "Obtain any major version of 'jQuery' () and use it in any webpage generated by 'htmltools' (e.g. 'shiny', 'htmlwidgets', and 'rmarkdown'). Most R users don't need to use this package directly, but other R packages (e.g. 'shiny', 'rmarkdown', etc.) depend on this package to avoid bundling redundant copies of 'jQuery'.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Config/testthat/edition": "3", + "RoxygenNote": "7.0.2", + "Imports": [ + "htmltools" + ], + "Suggests": [ + "testthat" + ], + "NeedsCompilation": "no", + "Author": "Carson Sievert [aut, cre] (), Joe Cheng [aut], RStudio [cph], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "jsonlite": { + "Package": "jsonlite", + "Version": "1.9.1", + "Source": "Repository", + "Title": "A Simple and Robust JSON Parser and Generator for R", + "License": "MIT + file LICENSE", + "Depends": [ + "methods" + ], + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Duncan\", \"Temple Lang\", role = \"ctb\"), person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))", + "URL": "https://jeroen.r-universe.dev/jsonlite https://arxiv.org/abs/1403.2805", + "BugReports": "https://github.com/jeroen/jsonlite/issues", + "Maintainer": "Jeroen Ooms ", + "VignetteBuilder": "knitr, R.rsp", + "Description": "A reasonably fast JSON parser and generator, optimized for statistical data and the web. Offers simple, flexible tools for working with JSON in R, and is particularly powerful for building pipelines and interacting with a web API. The implementation is based on the mapping described in the vignette (Ooms, 2014). In addition to converting JSON data from/to R objects, 'jsonlite' contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications.", + "Suggests": [ + "httr", + "vctrs", + "testthat", + "knitr", + "rmarkdown", + "R.rsp", + "sf" + ], + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)", + "Repository": "CRAN" + }, + "juicyjuice": { + "Package": "juicyjuice", + "Version": "0.1.0", + "Source": "Repository", + "Title": "Inline CSS Properties into HTML Tags Using 'juice'", + "Authors@R": "c( person(\"Richard\", \"Iannone\", , \"riannone@me.com\", c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Automattic\", role = c(\"cph\"), comment = \"juice library\"), person(\"juice contributors\", role = c(\"ctb\"), comment = \"juice library\") )", + "Description": "There are occasions where you need a piece of HTML with integrated styles. A prime example of this is HTML email. This transformation involves moving the CSS and associated formatting instructions from the style block in the head of your document into the body of the HTML. Many prominent email clients require integrated styles in HTML email; otherwise a received HTML email will be displayed without any styling. This package will quickly and precisely perform these CSS transformations when given HTML text and it does so by using the JavaScript 'juice' library.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/rich-iannone/juicyjuice", + "BugReports": "https://github.com/rich-iannone/juicyjuice/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "Imports": [ + "V8 (>= 4.2.0)" + ], + "Suggests": [ + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Richard Iannone [aut, cre, cph] (), Automattic [cph] (juice library), juice contributors [ctb] (juice library)", + "Maintainer": "Richard Iannone ", + "Repository": "CRAN" + }, + "knitr": { + "Package": "knitr", + "Version": "1.51", + "Source": "Repository", + "Type": "Package", + "Title": "A General-Purpose Package for Dynamic Report Generation in R", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Abhraneel\", \"Sarma\", role = \"ctb\"), person(\"Adam\", \"Vogt\", role = \"ctb\"), person(\"Alastair\", \"Andrew\", role = \"ctb\"), person(\"Alex\", \"Zvoleff\", role = \"ctb\"), person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"), person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"), person(\"Aron\", \"Atkins\", role = \"ctb\"), person(\"Aaron\", \"Wolen\", role = \"ctb\"), person(\"Ashley\", \"Manton\", role = \"ctb\"), person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")), person(\"Ben\", \"Baumer\", role = \"ctb\"), person(\"Brian\", \"Diggs\", role = \"ctb\"), person(\"Brian\", \"Zhang\", role = \"ctb\"), person(\"Bulat\", \"Yapparov\", role = \"ctb\"), person(\"Cassio\", \"Pereira\", role = \"ctb\"), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person(\"David\", \"Hall\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", role = \"ctb\"), person(\"David\", \"Robinson\", role = \"ctb\"), person(\"Doug\", \"Hemken\", role = \"ctb\"), person(\"Duncan\", \"Murdoch\", role = \"ctb\"), person(\"Elio\", \"Campitelli\", role = \"ctb\"), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Emily\", \"Riederer\", role = \"ctb\"), person(\"Fabian\", \"Hirschmann\", role = \"ctb\"), person(\"Fitch\", \"Simeon\", role = \"ctb\"), person(\"Forest\", \"Fang\", role = \"ctb\"), person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"), person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"), person(\"Gregoire\", \"Detrez\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Hao\", \"Zhu\", role = \"ctb\"), person(\"Heewon\", \"Jeon\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Hodges\", \"Daniel\", role = \"ctb\"), person(\"Jacob\", \"Bien\", role = \"ctb\"), person(\"Jake\", \"Burkhead\", role = \"ctb\"), person(\"James\", \"Manton\", role = \"ctb\"), person(\"Jared\", \"Lander\", role = \"ctb\"), person(\"Jason\", \"Punyon\", role = \"ctb\"), person(\"Javier\", \"Luraschi\", role = \"ctb\"), person(\"Jeff\", \"Arnold\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", role = \"ctb\"), person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"), person(\"Jeremy\", \"Stephens\", role = \"ctb\"), person(\"Jim\", \"Hester\", role = \"ctb\"), person(\"Joe\", \"Cheng\", role = \"ctb\"), person(\"Johannes\", \"Ranke\", role = \"ctb\"), person(\"John\", \"Honaker\", role = \"ctb\"), person(\"John\", \"Muschelli\", role = \"ctb\"), person(\"Jonathan\", \"Keane\", role = \"ctb\"), person(\"JJ\", \"Allaire\", role = \"ctb\"), person(\"Johan\", \"Toloe\", role = \"ctb\"), person(\"Jonathan\", \"Sidi\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Julien\", \"Barnier\", role = \"ctb\"), person(\"Kaiyin\", \"Zhong\", role = \"ctb\"), person(\"Kamil\", \"Slowikowski\", role = \"ctb\"), person(\"Karl\", \"Forner\", role = \"ctb\"), person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"), person(\"Kirill\", \"Mueller\", role = \"ctb\"), person(\"Kohske\", \"Takahashi\", role = \"ctb\"), person(\"Lorenz\", \"Walthert\", role = \"ctb\"), person(\"Lucas\", \"Gallindo\", role = \"ctb\"), person(\"Marius\", \"Hofert\", role = \"ctb\"), person(\"Martin\", \"Modrák\", role = \"ctb\"), person(\"Michael\", \"Chirico\", role = \"ctb\"), person(\"Michael\", \"Friendly\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", role = \"ctb\"), person(\"Michel\", \"Kuhlmann\", role = \"ctb\"), person(\"Miller\", \"Patrick\", role = \"ctb\"), person(\"Nacho\", \"Caballero\", role = \"ctb\"), person(\"Nick\", \"Salkowski\", role = \"ctb\"), person(\"Niels Richard\", \"Hansen\", role = \"ctb\"), person(\"Noam\", \"Ross\", role = \"ctb\"), person(\"Obada\", \"Mahdi\", role = \"ctb\"), person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")), person(\"Pedro\", \"Faria\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\"), person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"), person(\"Rodrigo\", \"Copetti\", role = \"ctb\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Ruaridh\", \"Williamson\", role = \"ctb\"), person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")), person(\"Scott\", \"Kostyshak\", role = \"ctb\"), person(\"Sebastian\", \"Meyer\", role = \"ctb\"), person(\"Sietse\", \"Brouwer\", role = \"ctb\"), person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"), person(\"Sylvain\", \"Rousseau\", role = \"ctb\"), person(\"Taiyun\", \"Wei\", role = \"ctb\"), person(\"Thibaut\", \"Assus\", role = \"ctb\"), person(\"Thibaut\", \"Lamadon\", role = \"ctb\"), person(\"Thomas\", \"Leeper\", role = \"ctb\"), person(\"Tim\", \"Mastny\", role = \"ctb\"), person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"), person(\"Trevor\", \"Davis\", role = \"ctb\"), person(\"Viktoras\", \"Veitas\", role = \"ctb\"), person(\"Weicheng\", \"Zhu\", role = \"ctb\"), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Zachary\", \"Foster\", role = \"ctb\"), person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a general-purpose tool for dynamic report generation in R using Literate Programming techniques.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "evaluate (>= 0.15)", + "highr (>= 0.11)", + "methods", + "tools", + "xfun (>= 0.52)", + "yaml (>= 2.1.19)" + ], + "Suggests": [ + "bslib", + "DBI (>= 0.4-1)", + "digest", + "formatR", + "gifski", + "gridSVG", + "htmlwidgets (>= 0.7)", + "jpeg", + "JuliaCall (>= 0.11.1)", + "magick", + "litedown", + "markdown (>= 1.3)", + "otel", + "otelsdk", + "png", + "ragg", + "reticulate (>= 1.4)", + "rgl (>= 0.95.1201)", + "rlang", + "rmarkdown", + "sass", + "showtext", + "styler (>= 1.2.0)", + "targets (>= 0.6.0)", + "testit", + "tibble", + "tikzDevice (>= 0.10)", + "tinytex (>= 0.56)", + "webshot", + "rstudioapi", + "svglite" + ], + "License": "GPL", + "URL": "https://yihui.org/knitr/", + "BugReports": "https://github.com/yihui/knitr/issues", + "Encoding": "UTF-8", + "VignetteBuilder": "litedown, knitr", + "SystemRequirements": "Package vignettes based on R Markdown v2 or reStructuredText require Pandoc (http://pandoc.org). The function rst2pdf() requires rst2pdf (https://github.com/rst2pdf/rst2pdf).", + "Collate": "'block.R' 'cache.R' 'citation.R' 'hooks-html.R' 'plot.R' 'utils.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks.R' 'otel.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (ORCID: , URL: https://yihui.org), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (ORCID: ), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (ORCID: ), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (ORCID: ), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (ORCID: ), Posit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "labeling": { + "Package": "labeling", + "Version": "0.4.3", + "Source": "Repository", + "Type": "Package", + "Title": "Axis Labeling", + "Date": "2023-08-29", + "Author": "Justin Talbot,", + "Maintainer": "Nuno Sempere ", + "Description": "Functions which provide a range of axis labeling algorithms.", + "License": "MIT + file LICENSE | Unlimited", + "Collate": "'labeling.R'", + "NeedsCompilation": "no", + "Imports": [ + "stats", + "graphics" + ], + "Repository": "CRAN" + }, + "later": { + "Package": "later", + "Version": "1.4.8", + "Source": "Repository", + "Type": "Package", + "Title": "Utilities for Scheduling Functions to Execute Later with Event Loops", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"), person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\") )", + "Description": "Executes arbitrary R or C functions some time after the current time, after the R execution stack has emptied. The functions are scheduled in an event loop.", + "License": "MIT + file LICENSE", + "URL": "https://later.r-lib.org, https://github.com/r-lib/later", + "BugReports": "https://github.com/r-lib/later/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Imports": [ + "Rcpp (>= 1.0.10)", + "rlang" + ], + "Suggests": [ + "knitr", + "nanonext", + "promises", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "Rcpp" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-07-18", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Winston Chang [aut] (ORCID: ), Joe Cheng [aut], Charlie Gao [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: ), Marcus Geelnard [ctb, cph] (TinyCThread library, https://tinycthread.github.io/), Evan Nemerson [ctb, cph] (TinyCThread library, https://tinycthread.github.io/)", + "Maintainer": "Charlie Gao ", + "Repository": "CRAN" + }, + "lattice": { + "Package": "lattice", + "Version": "0.22-6", + "Source": "Repository", + "Date": "2024-03-20", + "Priority": "recommended", + "Title": "Trellis Graphics for R", + "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"), email = \"deepayan.sarkar@r-project.org\", comment = c(ORCID = \"0000-0003-4107-1553\")), person(\"Felix\", \"Andrews\", role = \"ctb\"), person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"), person(\"Neil\", \"Klepeis\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"), person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"), person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"), person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\"), person(\"Alexandre\", \"Courtiol\", role = \"ctb\", comment = \"generics for larrows, lpolygon, lrect and lsegments\") )", + "Description": "A powerful and elegant high-level data visualization system inspired by Trellis graphics, with an emphasis on multivariate data. Lattice is sufficient for typical graphics needs, and is also flexible enough to handle most nonstandard requirements. See ?Lattice for an introduction.", + "Depends": [ + "R (>= 4.0.0)" + ], + "Suggests": [ + "KernSmooth", + "MASS", + "latticeExtra", + "colorspace" + ], + "Imports": [ + "grid", + "grDevices", + "graphics", + "stats", + "utils" + ], + "Enhances": [ + "chron", + "zoo" + ], + "LazyLoad": "yes", + "LazyData": "yes", + "License": "GPL (>= 2)", + "URL": "https://lattice.r-forge.r-project.org/", + "BugReports": "https://github.com/deepayan/lattice/issues", + "NeedsCompilation": "yes", + "Author": "Deepayan Sarkar [aut, cre] (), Felix Andrews [ctb], Kevin Wright [ctb] (documentation), Neil Klepeis [ctb], Johan Larsson [ctb] (miscellaneous improvements), Zhijian (Jason) Wen [cph] (filled contour code), Paul Murrell [ctb], Stefan Eng [ctb] (violin plot improvements), Achim Zeileis [ctb] (modern colors), Alexandre Courtiol [ctb] (generics for larrows, lpolygon, lrect and lsegments)", + "Maintainer": "Deepayan Sarkar ", + "Repository": "CRAN" + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.4", + "Source": "Repository", + "Title": "Manage the Life Cycle of your Package Functions", + "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Manage the life cycle of your exported functions with shared conventions, documentation badges, and user-friendly deprecation warnings.", + "License": "MIT + file LICENSE", + "URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle", + "BugReports": "https://github.com/r-lib/lifecycle/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "glue", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "covr", + "crayon", + "knitr", + "lintr", + "rmarkdown", + "testthat (>= 3.0.1)", + "tibble", + "tidyverse", + "tools", + "vctrs", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate, usethis", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "litedown": { + "Package": "litedown", + "Version": "0.9", + "Source": "Repository", + "Type": "Package", + "Title": "A Lightweight Version of R Markdown", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Tim\", \"Taylor\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8587-7113\")), person() )", + "Description": "Render R Markdown to Markdown (without using 'knitr'), and Markdown to lightweight HTML or 'LaTeX' documents with the 'commonmark' package (instead of 'Pandoc'). Some missing Markdown features in 'commonmark' are also supported, such as raw HTML or 'LaTeX' blocks, 'LaTeX' math, superscripts, subscripts, footnotes, element attributes, and appendices, but not all 'Pandoc' Markdown features are (or will be) supported. With additional JavaScript and CSS, you can also create HTML slides and articles. This package can be viewed as a trimmed-down version of R Markdown and 'knitr'. It does not aim at rich Markdown features or a large variety of output formats (the primary formats are HTML and 'LaTeX'). Book and website projects of multiple input documents are also supported.", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "utils", + "commonmark (>= 2.0.0)", + "xfun (>= 0.55)" + ], + "Suggests": [ + "rbibutils", + "rstudioapi", + "tinytex" + ], + "License": "MIT + file LICENSE", + "URL": "https://github.com/yihui/litedown", + "BugReports": "https://github.com/yihui/litedown/issues", + "VignetteBuilder": "litedown", + "RoxygenNote": "7.3.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (ORCID: , URL: https://yihui.org), Tim Taylor [ctb] (ORCID: )", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "lme4": { + "Package": "lme4", + "Version": "2.0-1", + "Source": "Repository", + "Title": "Linear Mixed-Effects Models using 'Eigen' and S4", + "Authors@R": "c(person(\"Douglas\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Martin\", \"Maechler\", role = \"aut\", comment = c(ORCID = \"0000-0002-8685-9910\")), person(\"Ben\", \"Bolker\", role = c(\"cre\", \"aut\"), email = \"bbolker+lme4@gmail.com\", comment = c(ORCID = \"0000-0002-2127-0443\")), person(\"Steven\", \"Walker\", role = \"aut\", comment = c(ORCID = \"0000-0002-4394-9078\")), person(\"Rune Haubo Bojesen\", \"Christensen\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4494-3399\")), person(\"Henrik\", \"Singmann\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4842-3657\")), person(\"Bin\", \"Dai\", role = \"ctb\"), person(\"Fabian\", \"Scheipl\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8172-3603\")), person(\"Gabor\", \"Grothendieck\", role = \"ctb\"), person(\"Peter\", \"Green\", role = \"ctb\", comment = c(ORCID = \"0000-0002-0238-9852\")), person(\"John\", \"Fox\", role = \"ctb\"), person(\"Alexander\", \"Bauer\", role = \"ctb\"), person(\"Pavel N.\", \"Krivitsky\", role = c(\"ctb\", \"cph\"), comment = c(ORCID = \"0000-0002-9101-3362\", \"shared copyright on simulate.formula\")), person(\"Emi\", \"Tanaka\", role = \"ctb\", comment = c(ORCID = \"0000-0002-1455-259X\")), person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")), person(\"Ross D.\", \"Boylan\", role = \"ctb\", comment = c(ORCID = \"0009-0003-4123-8090\")), person(\"Anna\", \"Ly\", role = \"aut\", comment = c(ORCID = \"0000-0002-0210-0342\")))", + "Description": "Fit linear and generalized linear mixed-effects models. The models and their components are represented using S4 classes and methods. The core computational algorithms are implemented using the 'Eigen' C++ library for numerical linear algebra and 'RcppEigen' \"glue\".", + "Depends": [ + "R (>= 3.6)", + "Matrix", + "methods", + "stats" + ], + "LinkingTo": [ + "Matrix (>= 1.5-0)", + "Rcpp (>= 0.10.5)", + "RcppEigen (>= 0.3.3.9.4)" + ], + "Imports": [ + "MASS", + "Rdpack", + "boot", + "graphics", + "grid", + "lattice", + "minqa (>= 1.1.15)", + "nlme (>= 3.1-123)", + "nloptr (>= 1.0.4)", + "parallel", + "reformulas (>= 0.4.3.1)", + "rlang", + "splines", + "utils" + ], + "Suggests": [ + "HSAUR3", + "MEMSS", + "car", + "dfoptim", + "gamm4", + "ggplot2", + "glmmTMB", + "knitr", + "merDeriv", + "mgcv", + "mlmRev", + "numDeriv", + "optimx (>= 2013.8.6)", + "pbkrtest", + "rmarkdown", + "rr2", + "semEff", + "statmod", + "testthat (>= 0.8.1)", + "tibble" + ], + "Enhances": [ + "DHARMa", + "performance" + ], + "RdMacros": "Rdpack", + "VignetteBuilder": "knitr", + "LazyData": "yes", + "License": "GPL (>= 2)", + "URL": "https://github.com/lme4/lme4/", + "BugReports": "https://github.com/lme4/lme4/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Douglas Bates [aut] (ORCID: ), Martin Maechler [aut] (ORCID: ), Ben Bolker [cre, aut] (ORCID: ), Steven Walker [aut] (ORCID: ), Rune Haubo Bojesen Christensen [ctb] (ORCID: ), Henrik Singmann [ctb] (ORCID: ), Bin Dai [ctb], Fabian Scheipl [ctb] (ORCID: ), Gabor Grothendieck [ctb], Peter Green [ctb] (ORCID: ), John Fox [ctb], Alexander Bauer [ctb], Pavel N. Krivitsky [ctb, cph] (ORCID: , shared copyright on simulate.formula), Emi Tanaka [ctb] (ORCID: ), Mikael Jagan [aut] (ORCID: ), Ross D. Boylan [ctb] (ORCID: ), Anna Ly [aut] (ORCID: )", + "Maintainer": "Ben Bolker ", + "Repository": "CRAN" + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.3", + "Source": "Repository", + "Type": "Package", + "Title": "A Forward-Pipe Operator for R", + "Authors@R": "c( person(\"Stefan Milton\", \"Bache\", , \"stefan@stefanbache.dk\", role = c(\"aut\", \"cph\"), comment = \"Original author and creator of magrittr\"), person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"cre\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"", + "License": "MIT + file LICENSE", + "URL": "https://magrittr.tidyverse.org, https://github.com/tidyverse/magrittr", + "BugReports": "https://github.com/tidyverse/magrittr/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Suggests": [ + "covr", + "knitr", + "rlang", + "rmarkdown", + "testthat" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "Yes", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "yes", + "Author": "Stefan Milton Bache [aut, cph] (Original author and creator of magrittr), Hadley Wickham [aut], Lionel Henry [cre], RStudio [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "markdown": { + "Package": "markdown", + "Version": "2.0", + "Source": "Repository", + "Type": "Package", + "Title": "Render Markdown with 'commonmark'", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Jeffrey\", \"Horner\", role = \"aut\"), person(\"Henrik\", \"Bengtsson\", role = \"ctb\"), person(\"Jim\", \"Hester\", role = \"ctb\"), person(\"Yixuan\", \"Qiu\", role = \"ctb\"), person(\"Kohske\", \"Takahashi\", role = \"ctb\"), person(\"Adam\", \"November\", role = \"ctb\"), person(\"Nacho\", \"Caballero\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Thomas\", \"Leeper\", role = \"ctb\"), person(\"Joe\", \"Cheng\", role = \"ctb\"), person(\"Andrzej\", \"Oles\", role = \"ctb\"), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Render Markdown to full and lightweight HTML/LaTeX documents with the 'commonmark' package. This package has been superseded by 'litedown'.", + "Depends": [ + "R (>= 2.11.1)" + ], + "Imports": [ + "utils", + "xfun", + "litedown (>= 0.6)" + ], + "Suggests": [ + "knitr", + "rmarkdown (>= 2.18)", + "yaml", + "RCurl" + ], + "License": "MIT + file LICENSE", + "URL": "https://github.com/rstudio/markdown", + "BugReports": "https://github.com/rstudio/markdown/issues", + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (), JJ Allaire [aut], Jeffrey Horner [aut], Henrik Bengtsson [ctb], Jim Hester [ctb], Yixuan Qiu [ctb], Kohske Takahashi [ctb], Adam November [ctb], Nacho Caballero [ctb], Jeroen Ooms [ctb], Thomas Leeper [ctb], Joe Cheng [ctb], Andrzej Oles [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "memoise": { + "Package": "memoise", + "Version": "2.0.1", + "Source": "Repository", + "Title": "'Memoisation' of Functions", + "Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Jim\", family = \"Hester\", role = \"aut\"), person(given = \"Winston\", family = \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"), person(given = \"Kirill\", family = \"Müller\", role = \"aut\", email = \"krlmlr+r@mailbox.org\"), person(given = \"Daniel\", family = \"Cook\", role = \"aut\", email = \"danielecook@gmail.com\"), person(given = \"Mark\", family = \"Edmondson\", role = \"ctb\", email = \"r@sunholo.com\"))", + "Description": "Cache the results of a function so that when you call it again with the same arguments it returns the previously computed value.", + "License": "MIT + file LICENSE", + "URL": "https://memoise.r-lib.org, https://github.com/r-lib/memoise", + "BugReports": "https://github.com/r-lib/memoise/issues", + "Imports": [ + "rlang (>= 0.4.10)", + "cachem" + ], + "Suggests": [ + "digest", + "aws.s3", + "covr", + "googleAuthR", + "googleCloudStorageR", + "httr", + "testthat" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Winston Chang [aut, cre], Kirill Müller [aut], Daniel Cook [aut], Mark Edmondson [ctb]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "mgcv": { + "Package": "mgcv", + "Version": "1.9-1", + "Source": "Repository", + "Author": "Simon Wood ", + "Maintainer": "Simon Wood ", + "Title": "Mixed GAM Computation Vehicle with Automatic Smoothness Estimation", + "Description": "Generalized additive (mixed) models, some of their extensions and other generalized ridge regression with multiple smoothing parameter estimation by (Restricted) Marginal Likelihood, Generalized Cross Validation and similar, or using iterated nested Laplace approximation for fully Bayesian inference. See Wood (2017) for an overview. Includes a gam() function, a wide variety of smoothers, 'JAGS' support and distributions beyond the exponential family.", + "Priority": "recommended", + "Depends": [ + "R (>= 3.6.0)", + "nlme (>= 3.1-64)" + ], + "Imports": [ + "methods", + "stats", + "graphics", + "Matrix", + "splines", + "utils" + ], + "Suggests": [ + "parallel", + "survival", + "MASS" + ], + "LazyLoad": "yes", + "ByteCompile": "yes", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "mice": { + "Package": "mice", + "Version": "3.19.0", + "Source": "Repository", + "Type": "Package", + "Title": "Multivariate Imputation by Chained Equations", + "Date": "2025-12-09", + "Authors@R": "c(person(\"Stef\", \"van Buuren\", role = c(\"aut\",\"cre\"), email = \"stef.vanbuuren@tno.nl\"), person(\"Karin\", \"Groothuis-Oudshoorn\", role = \"aut\", email = \"c.g.m.oudshoorn@utwente.nl\"), person(\"Gerko\",\"Vink\", role = \"ctb\", email = \"g.vink@uu.nl\"), person(\"Rianne\",\"Schouten\", role = \"ctb\", email = \"R.M.Schouten@uu.nl\"), person(\"Alexander\", \"Robitzsch\", role = \"ctb\", email = \"robitzsch@ipn.uni-kiel.de\"), person(\"Patrick\", \"Rockenschaub\", role = \"ctb\", email = \"rockenschaub.patrick@gmail.com\"), person(\"Lisa\",\"Doove\", role = \"ctb\", email = \"lisa.doove@ppw.kuleuven.be\"), person(\"Shahab\",\"Jolani\", role = \"ctb\", email = \"s.jolani@maastrichtuniversity.nl\"), person(\"Margarita\",\"Moreno-Betancur\", role=\"ctb\", email = \"margarita.moreno@mcri.edu.au\"), person(\"Ian\", \"White\", role=\"ctb\", email = \"ian.white@ucl.ac.uk\"), person(\"Philipp\",\"Gaffert\", role = \"ctb\", email = \"philipp.gaffert@gfk.com\"), person(\"Florian\",\"Meinfelder\", role = \"ctb\", email = \"florian.meinfelder@uni-bamberg.de\"), person(\"Bernie\",\"Gray\", role = \"ctb\", email = \"bfgray3@gmail.com\"), person(\"Vincent\", \"Arel-Bundock\", role = \"ctb\", email = \"vincent.arel-bundock@umontreal.ca\"), person(\"Mingyang\", \"Cai\", role = \"ctb\", email = \"m.cai@uu.nl\"), person(\"Thom\", \"Volker\", role = \"ctb\", email = \"t.b.volker@uu.nl\"), person(\"Edoardo\", \"Costantini\", role = \"ctb\", email = \"e.costantini@tilburguniversity.edu\"), person(\"Caspar\", \"van Lissa\", role = \"ctb\", email = \"c.j.vanlissa@uu.nl\"), person(\"Hanne\", \"Oberman\", role = \"ctb\", email = \"h.i.oberman@uu.nl\"), person(\"Stephen\", \"Wade\", role = \"ctb\", email = \"stephematician@gmail.com\"), person(\"Florian\", \"van Leeuwen\", role = \"ctb\", email = \"f.d.vanleeuwen@uu.nl\"), person(\"Frederik\", \"Fabricius-Bjerre\", role = \"ctb\", email = \"frederik@fabriciusbjerre.dk\"))", + "Maintainer": "Stef van Buuren ", + "Depends": [ + "R (>= 2.10.0)" + ], + "Imports": [ + "broom", + "dplyr", + "glmnet", + "graphics", + "grDevices", + "lattice", + "mitml", + "nnet", + "Rcpp", + "rpart", + "stats", + "tidyr", + "utils" + ], + "Suggests": [ + "broom.mixed", + "future", + "furrr", + "haven", + "knitr", + "literanger", + "lme4", + "MASS", + "miceadds", + "pan", + "parallelly", + "purrr", + "ranger", + "randomForest", + "rmarkdown", + "rstan", + "survival", + "testthat" + ], + "Description": "Multiple imputation using Fully Conditional Specification (FCS) implemented by the MICE algorithm as described in Van Buuren and Groothuis-Oudshoorn (2011) . Each variable has its own imputation model. Built-in imputation models are provided for continuous data (predictive mean matching, normal), binary data (logistic regression), unordered categorical data (polytomous logistic regression) and ordered categorical data (proportional odds). MICE can also impute continuous two-level data (normal model, pan, second-level variables). Passive imputation can be used to maintain consistency between variables. Various diagnostic plots are available to inspect the quality of the imputations.", + "Encoding": "UTF-8", + "LazyLoad": "yes", + "LazyData": "yes", + "URL": "https://github.com/amices/mice, https://amices.org/mice/, https://stefvanbuuren.name/fimd/", + "BugReports": "https://github.com/amices/mice/issues", + "LinkingTo": [ + "cpp11", + "Rcpp" + ], + "License": "GPL (>= 2)", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Stef van Buuren [aut, cre], Karin Groothuis-Oudshoorn [aut], Gerko Vink [ctb], Rianne Schouten [ctb], Alexander Robitzsch [ctb], Patrick Rockenschaub [ctb], Lisa Doove [ctb], Shahab Jolani [ctb], Margarita Moreno-Betancur [ctb], Ian White [ctb], Philipp Gaffert [ctb], Florian Meinfelder [ctb], Bernie Gray [ctb], Vincent Arel-Bundock [ctb], Mingyang Cai [ctb], Thom Volker [ctb], Edoardo Costantini [ctb], Caspar van Lissa [ctb], Hanne Oberman [ctb], Stephen Wade [ctb], Florian van Leeuwen [ctb], Frederik Fabricius-Bjerre [ctb]", + "Repository": "CRAN" + }, + "mime": { + "Package": "mime", + "Version": "0.12", + "Source": "Repository", + "Type": "Package", + "Title": "Map Filenames to MIME Types", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"Beilei\", \"Bian\", role = \"ctb\") )", + "Description": "Guesses the MIME type from a filename extension using the data derived from /etc/mime.types in UNIX-type systems.", + "Imports": [ + "tools" + ], + "License": "GPL", + "URL": "https://github.com/yihui/mime", + "BugReports": "https://github.com/yihui/mime/issues", + "RoxygenNote": "7.1.1", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Yihui Xie [aut, cre] (), Jeffrey Horner [ctb], Beilei Bian [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "miniUI": { + "Package": "miniUI", + "Version": "0.1.2", + "Source": "Repository", + "Type": "Package", + "Title": "Shiny UI Widgets for Small Screens", + "Authors@R": "c( person(\"Joe\", \"Cheng\", role = c(\"cre\", \"aut\"), email = \"joe@posit.co\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides UI widget and layout functions for writing Shiny apps that work well on small screens.", + "License": "GPL-3", + "URL": "https://github.com/rstudio/miniUI", + "BugReports": "https://github.com/rstudio/miniUI/issues", + "Imports": [ + "shiny (>= 0.13)", + "htmltools (>= 0.3)", + "utils" + ], + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Joe Cheng [cre, aut], Posit Software, PBC [cph, fnd] (03wc8by49)", + "Maintainer": "Joe Cheng ", + "Repository": "CRAN" + }, + "minqa": { + "Package": "minqa", + "Version": "1.2.8", + "Source": "Repository", + "Type": "Package", + "Title": "Derivative-Free Optimization Algorithms by Quadratic Approximation", + "Authors@R": "c(person(given = \"Douglas\", family = \"Bates\", role = \"aut\"), person(given = c(\"Katharine\", \"M.\"), family = \"Mullen\", role = c(\"aut\", \"cre\"), email = \"katharine.mullen@stat.ucla.edu\"), person(given = c(\"John\", \"C.\"), family = \"Nash\", role = \"aut\"), person(given = \"Ravi\", family = \"Varadhan\", role = \"aut\"))", + "Maintainer": "Katharine M. Mullen ", + "Description": "Derivative-free optimization by quadratic approximation based on an interface to Fortran implementations by M. J. D. Powell.", + "License": "GPL-2", + "URL": "http://optimizer.r-forge.r-project.org", + "Imports": [ + "Rcpp (>= 0.9.10)" + ], + "LinkingTo": [ + "Rcpp" + ], + "SystemRequirements": "GNU make", + "NeedsCompilation": "yes", + "Repository": "CRAN", + "Author": "Douglas Bates [aut], Katharine M. Mullen [aut, cre], John C. Nash [aut], Ravi Varadhan [aut]" + }, + "mitml": { + "Package": "mitml", + "Version": "0.4-5", + "Source": "Repository", + "Type": "Package", + "Title": "Tools for Multiple Imputation in Multilevel Modeling", + "Date": "2023-03-08", + "Author": "Simon Grund [aut,cre], Alexander Robitzsch [aut], Oliver Luedtke [aut]", + "Maintainer": "Simon Grund ", + "BugReports": "https://github.com/simongrund1/mitml/issues", + "Imports": [ + "pan", + "jomo", + "haven", + "grDevices", + "graphics", + "stats", + "methods", + "utils" + ], + "Suggests": [ + "mice", + "miceadds", + "Amelia", + "lme4", + "nlme", + "lavaan", + "geepack", + "glmmTMB", + "survival", + "knitr", + "rmarkdown" + ], + "LazyData": "true", + "LazyLoad": "true", + "Description": "Provides tools for multiple imputation of missing data in multilevel modeling. Includes a user-friendly interface to the packages 'pan' and 'jomo', and several functions for visualization, data management and the analysis of multiply imputed data sets.", + "License": "GPL (>= 2)", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "multcomp": { + "Package": "multcomp", + "Version": "1.4-30", + "Source": "Repository", + "Title": "Simultaneous Inference in General Parametric Models", + "Date": "2026-03-09", + "Authors@R": "c(person(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"), email = \"Torsten.Hothorn@R-project.org\", comment = c(ORCID = \"0000-0001-8301-0471\")), person(\"Frank\", \"Bretz\", role = \"aut\"), person(\"Peter\", \"Westfall\", role = \"aut\"), person(\"Richard M.\", \"Heiberger\", role = \"ctb\"), person(\"Andre\", \"Schuetzenmeister\", role = \"ctb\"), person(\"Susan\", \"Scheibe\", role = \"ctb\"), person(\"Christian\", \"Ritz\", role = \"ctb\"), person(\"Christian B.\", \"Pipper\", role = \"ctb\"))", + "Description": "Simultaneous tests and confidence intervals for general linear hypotheses in parametric models, including linear, generalized linear, linear mixed effects, and survival models. The package includes demos reproducing analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz, Hothorn, Westfall, 2010, CRC Press).", + "Depends": [ + "stats", + "graphics", + "mvtnorm (>= 1.0-10)", + "survival (>= 2.39-4)", + "TH.data (>= 1.0-2)" + ], + "Imports": [ + "sandwich (>= 2.3-0)", + "codetools" + ], + "Suggests": [ + "lme4 (>= 0.999375-16)", + "nlme", + "robustbase", + "coin", + "MASS", + "foreign", + "xtable", + "lmtest", + "coxme (>= 2.2-1)", + "SimComp", + "ISwR", + "tram (>= 0.2-5)", + "fixest (>= 0.10)", + "glmmTMB", + "DoseFinding", + "HH", + "asd", + "gsDesign", + "lattice", + "bibtex" + ], + "URL": "http://multcomp.R-forge.R-project.org, https://www.routledge.com/Multiple-Comparisons-Using-R/Bretz-Hothorn-Westfall/p/book/9781584885740", + "LazyData": "yes", + "License": "GPL-2", + "NeedsCompilation": "no", + "Author": "Torsten Hothorn [aut, cre] (ORCID: ), Frank Bretz [aut], Peter Westfall [aut], Richard M. Heiberger [ctb], Andre Schuetzenmeister [ctb], Susan Scheibe [ctb], Christian Ritz [ctb], Christian B. Pipper [ctb]", + "Maintainer": "Torsten Hothorn ", + "Repository": "CRAN" + }, + "munsell": { + "Package": "munsell", + "Version": "0.5.1", + "Source": "Repository", + "Type": "Package", + "Title": "Utilities for Using Munsell Colours", + "Author": "Charlotte Wickham ", + "Maintainer": "Charlotte Wickham ", + "Description": "Provides easy access to, and manipulation of, the Munsell colours. Provides a mapping between Munsell's original notation (e.g. \"5R 5/10\") and hexadecimal strings suitable for use directly in R graphics. Also provides utilities to explore slices through the Munsell colour tree, to transform Munsell colours and display colour palettes.", + "Suggests": [ + "ggplot2", + "testthat" + ], + "Imports": [ + "colorspace", + "methods" + ], + "License": "MIT + file LICENSE", + "URL": "https://cran.r-project.org/package=munsell, https://github.com/cwickham/munsell/", + "RoxygenNote": "7.3.1", + "Encoding": "UTF-8", + "BugReports": "https://github.com/cwickham/munsell/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "mvtnorm": { + "Package": "mvtnorm", + "Version": "1.3-3", + "Source": "Repository", + "Title": "Multivariate Normal and t Distributions", + "Date": "2025-01-09", + "Authors@R": "c(person(\"Alan\", \"Genz\", role = \"aut\"), person(\"Frank\", \"Bretz\", role = \"aut\"), person(\"Tetsuhisa\", \"Miwa\", role = \"aut\"), person(\"Xuefei\", \"Mi\", role = \"aut\"), person(\"Friedrich\", \"Leisch\", role = \"ctb\"), person(\"Fabian\", \"Scheipl\", role = \"ctb\"), person(\"Bjoern\", \"Bornkamp\", role = \"ctb\", comment = c(ORCID = \"0000-0002-6294-8185\")), person(\"Martin\", \"Maechler\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8685-9910\")), person(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"), email = \"Torsten.Hothorn@R-project.org\", comment = c(ORCID = \"0000-0001-8301-0471\")))", + "Description": "Computes multivariate normal and t probabilities, quantiles, random deviates, and densities. Log-likelihoods for multivariate Gaussian models and Gaussian copulae parameterised by Cholesky factors of covariance or precision matrices are implemented for interval-censored and exact data, or a mix thereof. Score functions for these log-likelihoods are available. A class representing multiple lower triangular matrices and corresponding methods are part of this package.", + "Imports": [ + "stats" + ], + "Depends": [ + "R(>= 3.5.0)" + ], + "Suggests": [ + "qrng", + "numDeriv" + ], + "License": "GPL-2", + "URL": "http://mvtnorm.R-forge.R-project.org", + "NeedsCompilation": "yes", + "Author": "Alan Genz [aut], Frank Bretz [aut], Tetsuhisa Miwa [aut], Xuefei Mi [aut], Friedrich Leisch [ctb], Fabian Scheipl [ctb], Bjoern Bornkamp [ctb] (), Martin Maechler [ctb] (), Torsten Hothorn [aut, cre] ()", + "Maintainer": "Torsten Hothorn ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "nlme": { + "Package": "nlme", + "Version": "3.1-167", + "Source": "Repository", + "Date": "2025-01-27", + "Priority": "recommended", + "Title": "Linear and Nonlinear Mixed Effects Models", + "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"), person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"), person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"), person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"), person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"), person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"), person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"), person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"), person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cre\"), comment = c(ROR = \"02zz1nj61\")))", + "Contact": "see 'MailingList'", + "Description": "Fit and compare Gaussian linear and nonlinear mixed-effects models.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "graphics", + "stats", + "utils", + "lattice" + ], + "Suggests": [ + "MASS", + "SASmixed" + ], + "LazyData": "yes", + "Encoding": "UTF-8", + "License": "GPL (>= 2)", + "BugReports": "https://bugs.r-project.org", + "MailingList": "R-help@r-project.org", + "URL": "https://svn.r-project.org/R-packages/trunk/nlme/", + "NeedsCompilation": "yes", + "Author": "José Pinheiro [aut] (S version), Douglas Bates [aut] (up to 2007), Saikat DebRoy [ctb] (up to 2002), Deepayan Sarkar [ctb] (up to 2005), EISPACK authors [ctb] (src/rs.f), Siem Heisterkamp [ctb] (Author fixed sigma), Bert Van Willigen [ctb] (Programmer fixed sigma), Johannes Ranke [ctb] (varConstProp()), R Core Team [aut, cre] (02zz1nj61)", + "Maintainer": "R Core Team ", + "Repository": "CRAN" + }, + "nloptr": { + "Package": "nloptr", + "Version": "2.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "R Interface to NLopt", + "Authors@R": "c(person(\"Jelmer\", \"Ypma\", role = \"aut\", email = \"uctpjyy@ucl.ac.uk\"), person(c(\"Steven\", \"G.\"), \"Johnson\", role = \"aut\", comment = \"author of the NLopt C library\"), person(\"Aymeric\", \"Stamm\", role = c(\"ctb\", \"cre\"), email = \"aymeric.stamm@cnrs.fr\", comment = c(ORCID = \"0000-0002-8725-3654\")), person(c(\"Hans\", \"W.\"), \"Borchers\", role = \"ctb\", email = \"hwborchers@googlemail.com\"), person(\"Dirk\", \"Eddelbuettel\", role = \"ctb\", email = \"edd@debian.org\"), person(\"Brian\", \"Ripley\", role = \"ctb\", comment = \"build process on multiple OS\"), person(\"Kurt\", \"Hornik\", role = \"ctb\", comment = \"build process on multiple OS\"), person(\"Julien\", \"Chiquet\", role = \"ctb\"), person(\"Avraham\", \"Adler\", role = \"ctb\", email = \"Avraham.Adler@gmail.com\", comment = c(ORCID = \"0000-0002-3039-0703\")), person(\"Xiongtao\", \"Dai\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\", email = \"jeroen@berkeley.edu\"), person(\"Tomas\", \"Kalibera\", role = \"ctb\"), person(\"Mikael\", \"Jagan\", role = \"ctb\"))", + "Description": "Solve optimization problems using an R interface to NLopt. NLopt is a free/open-source library for nonlinear optimization, providing a common interface for a number of different free optimization routines available online as well as original implementations of various other algorithms. See for more information on the available algorithms. Building from included sources requires 'CMake'. On Linux and 'macOS', if a suitable system build of NLopt (2.7.0 or later) is found, it is used; otherwise, it is built from included sources via 'CMake'. On Windows, NLopt is obtained through 'rwinlib' for 'R <= 4.1.x' or grabbed from the appropriate toolchain for 'R >= 4.2.0'.", + "License": "LGPL (>= 3)", + "SystemRequirements": "cmake (>= 3.2.0) which is used only on Linux or macOS systems when no system build of nlopt (>= 2.7.0) can be found.", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Suggests": [ + "knitr", + "rmarkdown", + "covr", + "tinytest" + ], + "VignetteBuilder": "knitr", + "URL": "https://github.com/astamm/nloptr, https://astamm.github.io/nloptr/", + "BugReports": "https://github.com/astamm/nloptr/issues", + "NeedsCompilation": "yes", + "UseLTO": "yes", + "Author": "Jelmer Ypma [aut], Steven G. Johnson [aut] (author of the NLopt C library), Aymeric Stamm [ctb, cre] (), Hans W. Borchers [ctb], Dirk Eddelbuettel [ctb], Brian Ripley [ctb] (build process on multiple OS), Kurt Hornik [ctb] (build process on multiple OS), Julien Chiquet [ctb], Avraham Adler [ctb] (), Xiongtao Dai [ctb], Jeroen Ooms [ctb], Tomas Kalibera [ctb], Mikael Jagan [ctb]", + "Maintainer": "Aymeric Stamm ", + "Repository": "RSPM" + }, + "nnet": { + "Package": "nnet", + "Version": "7.3-19", + "Source": "Repository", + "Priority": "recommended", + "Date": "2023-05-02", + "Depends": [ + "R (>= 3.0.0)", + "stats", + "utils" + ], + "Suggests": [ + "MASS" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"ripley@stats.ox.ac.uk\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Software for feed-forward neural networks with a single hidden layer, and for multinomial log-linear models.", + "Title": "Feed-Forward Neural Networks and Multinomial Log-Linear Models", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "NeedsCompilation": "yes", + "Author": "Brian Ripley [aut, cre, cph], William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "numDeriv": { + "Package": "numDeriv", + "Version": "2016.8-1.1", + "Source": "Repository", + "Title": "Accurate Numerical Derivatives", + "Description": "Methods for calculating (usually) accurate numerical first and second order derivatives. Accurate calculations are done using 'Richardson''s' extrapolation or, when applicable, a complex step derivative is available. A simple difference method is also provided. Simple difference is (usually) less accurate but is much quicker than 'Richardson''s' extrapolation and provides a useful cross-check. Methods are provided for real scalar and vector valued functions.", + "Depends": [ + "R (>= 2.11.1)" + ], + "LazyLoad": "yes", + "ByteCompile": "yes", + "License": "GPL-2", + "Copyright": "2006-2011, Bank of Canada. 2012-2016, Paul Gilbert", + "Author": "Paul Gilbert and Ravi Varadhan", + "Maintainer": "Paul Gilbert ", + "URL": "http://optimizer.r-forge.r-project.org/", + "NeedsCompilation": "no", + "Repository": "CRAN", + "Encoding": "UTF-8" + }, + "officer": { + "Package": "officer", + "Version": "0.7.3", + "Source": "Repository", + "Type": "Package", + "Title": "Manipulation of Microsoft Word and PowerPoint Documents", + "Authors@R": "c( person(\"David\", \"Gohel\", , \"david.gohel@ardata.fr\", role = c(\"aut\", \"cre\")), person(\"Stefan\", \"Moog\", , \"moogs@gmx.de\", role = \"aut\"), person(\"Mark\", \"Heckmann\", , \"heckmann.mark@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-0736-7417\")), person(\"ArData\", role = \"cph\"), person(\"Frank\", \"Hangler\", , \"frank@plotandscatter.com\", role = \"ctb\", comment = \"function body_replace_all_text\"), person(\"Liz\", \"Sander\", , \"lsander@civisanalytics.com\", role = \"ctb\", comment = \"several documentation fixes\"), person(\"Anton\", \"Victorson\", , \"anton@victorson.se\", role = \"ctb\", comment = \"fixes xml structures\"), person(\"Jon\", \"Calder\", , \"jonmcalder@gmail.com\", role = \"ctb\", comment = \"update vignettes\"), person(\"John\", \"Harrold\", , \"john.m.harrold@gmail.com\", role = \"ctb\", comment = \"function annotate_base\"), person(\"John\", \"Muschelli\", , \"muschellij2@gmail.com\", role = \"ctb\", comment = \"google doc compatibility\"), person(\"Bill\", \"Denney\", , \"wdenney@humanpredictions.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5759-428X\", \"function as.matrix.rpptx\")), person(\"Nikolai\", \"Beck\", , \"beck.nikolai@gmail.com\", role = \"ctb\", comment = \"set speaker notes for .pptx documents\"), person(\"Greg\", \"Leleu\", , \"gregoire.leleu@gmail.com\", role = \"ctb\", comment = \"fields functionality in ppt\"), person(\"Majid\", \"Eismann\", role = \"ctb\"), person(\"Wahiduzzaman\", \"Khan\", role = \"ctb\", comment = \"vectorization of remove_slide\"), person(\"Hongyuan\", \"Jia\", , \"hongyuanjia@cqust.edu.cn\", role = \"ctb\", comment = c(ORCID = \"0000-0002-0075-8183\")), person(\"Michael\", \"Stackhouse\", , \"mike.stackhouse@atorusresearch.com\", role = \"ctb\") )", + "Description": "Access and manipulate 'Microsoft Word', 'RTF' and 'Microsoft PowerPoint' documents from R. The package focuses on tabular and graphical reporting from R; it also provides two functions that let users get document content into data objects. A set of functions lets add and remove images, tables and paragraphs of text in new or existing documents. The package does not require any installation of Microsoft products to be able to write Microsoft files.", + "License": "MIT + file LICENSE", + "URL": "https://ardata-fr.github.io/officeverse/, https://davidgohel.github.io/officer/", + "BugReports": "https://github.com/davidgohel/officer/issues", + "Imports": [ + "cli", + "dplyr", + "graphics", + "grDevices", + "openssl", + "R6", + "ragg", + "stats", + "tidyr", + "utils", + "uuid", + "xml2 (>= 1.1.0)", + "zip (>= 2.1.0)" + ], + "Suggests": [ + "devEMF", + "doconv (>= 0.3.0)", + "gdtools", + "ggplot2", + "knitr", + "magick", + "rmarkdown", + "rsvg", + "testthat", + "withr" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "Collate": "'core_properties.R' 'custom_properties.R' 'defunct.R' 'dev-utils.R' 'docx_add.R' 'docx_comments.R' 'docx_cursor.R' 'docx_part.R' 'docx_replace.R' 'docx_section.R' 'docx_settings.R' 'docx_styles.R' 'docx_utils_funs.R' 'empty_content.R' 'formatting_properties.R' 'fortify_docx.R' 'fortify_pptx.R' 'knitr_utils.R' 'officer.R' 'ooxml.R' 'ooxml_block_objects.R' 'ooxml_run_objects.R' 'openxml_content_type.R' 'openxml_document.R' 'pack_folder.R' 'ph_location.R' 'post-proc.R' 'ppt_class_dir_collection.R' 'ppt_classes.R' 'ppt_notes.R' 'ppt_ph_dedupe_layout.R' 'ppt_ph_manipulate.R' 'ppt_ph_rename_layout.R' 'ppt_ph_with_methods.R' 'pptx_informations.R' 'pptx_layout_helper.R' 'pptx_matrix.R' 'utils.R' 'pptx_slide_manip.R' 'read_docx.R' 'docx_write.R' 'read_docx_styles.R' 'read_pptx.R' 'read_xlsx.R' 'relationship.R' 'rtf.R' 'shape_properties.R' 'shorcuts.R' 'docx_append_context.R' 'utils-xml.R' 'deprecated.R' 'zzz.R'", + "NeedsCompilation": "no", + "Author": "David Gohel [aut, cre], Stefan Moog [aut], Mark Heckmann [aut] (ORCID: ), ArData [cph], Frank Hangler [ctb] (function body_replace_all_text), Liz Sander [ctb] (several documentation fixes), Anton Victorson [ctb] (fixes xml structures), Jon Calder [ctb] (update vignettes), John Harrold [ctb] (function annotate_base), John Muschelli [ctb] (google doc compatibility), Bill Denney [ctb] (ORCID: , function as.matrix.rpptx), Nikolai Beck [ctb] (set speaker notes for .pptx documents), Greg Leleu [ctb] (fields functionality in ppt), Majid Eismann [ctb], Wahiduzzaman Khan [ctb] (vectorization of remove_slide), Hongyuan Jia [ctb] (ORCID: ), Michael Stackhouse [ctb]", + "Maintainer": "David Gohel ", + "Repository": "CRAN" + }, + "openssl": { + "Package": "openssl", + "Version": "2.3.5", + "Source": "Repository", + "Type": "Package", + "Title": "Toolkit for Encryption, Signatures and Certificates Based on OpenSSL", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Oliver\", \"Keyes\", role = \"ctb\"))", + "Description": "Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers. Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic signatures can either be created and verified manually or via x509 certificates. AES can be used in cbc, ctr or gcm mode for symmetric encryption; RSA for asymmetric (public key) encryption or EC for Diffie Hellman. High-level envelope functions combine RSA and AES for encrypting arbitrary sized data. Other utilities include key generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random number generator, and 'bignum' math methods for manually performing crypto calculations on large multibyte integers.", + "License": "MIT + file LICENSE", + "URL": "https://jeroen.r-universe.dev/openssl", + "BugReports": "https://github.com/jeroen/openssl/issues", + "SystemRequirements": "OpenSSL >= 1.0.2", + "VignetteBuilder": "knitr", + "Imports": [ + "askpass" + ], + "Suggests": [ + "curl", + "testthat (>= 2.1.0)", + "digest", + "knitr", + "rmarkdown", + "jsonlite", + "jose", + "sodium" + ], + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), Oliver Keyes [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "ordinal": { + "Package": "ordinal", + "Version": "2025.12-29", + "Source": "Repository", + "Type": "Package", + "Title": "Regression Models for Ordinal Data", + "Date": "2025-12-29", + "Authors@R": "person(given=\"Rune Haubo Bojesen\", family=\"Christensen\", email=\"rune.haubo@gmail.com\", role=c(\"aut\", \"cre\"))", + "LazyData": "true", + "ByteCompile": "yes", + "Depends": [ + "R (>= 2.13.0)", + "stats", + "methods" + ], + "Imports": [ + "ucminf", + "MASS", + "Matrix", + "numDeriv", + "nlme" + ], + "Suggests": [ + "lme4", + "nnet", + "xtable", + "testthat (>= 0.8)", + "tools" + ], + "Description": "Implementation of cumulative link (mixed) models also known as ordered regression models, proportional odds models, proportional hazards models for grouped survival times and ordered logit/probit/... models. Estimation is via maximum likelihood and mixed models are fitted with the Laplace approximation and adaptive Gauss-Hermite quadrature. Multiple random effect terms are allowed and they may be nested, crossed or partially nested/crossed. Restrictions of symmetry and equidistance can be imposed on the thresholds (cut-points/intercepts). Standard model methods are available (summary, anova, drop-methods, step, confint, predict etc.) in addition to profile methods and slice methods for visualizing the likelihood function and checking convergence.", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "URL": "https://github.com/runehaubo/ordinal", + "BugReports": "https://github.com/runehaubo/ordinal/issues", + "Author": "Rune Haubo Bojesen Christensen [aut, cre]", + "Maintainer": "Rune Haubo Bojesen Christensen ", + "Repository": "CRAN" + }, + "otel": { + "Package": "otel", + "Version": "0.2.0", + "Source": "Repository", + "Title": "OpenTelemetry R API", + "Authors@R": "person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\"))", + "Description": "High-quality, ubiquitous, and portable telemetry to enable effective observability. OpenTelemetry is a collection of tools, APIs, and SDKs used to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) for analysis in order to understand your software's performance and behavior. This package implements the OpenTelemetry API: . Use this package as a dependency if you want to instrument your R package for OpenTelemetry.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "Depends": [ + "R (>= 3.6.0)" + ], + "Suggests": [ + "callr", + "cli", + "glue", + "jsonlite", + "otelsdk", + "processx", + "shiny", + "spelling", + "testthat (>= 3.0.0)", + "utils", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "URL": "https://otel.r-lib.org, https://github.com/r-lib/otel", + "Additional_repositories": "https://github.com/r-lib/otelsdk/releases/download/devel", + "BugReports": "https://github.com/r-lib/otel/issues", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "pan": { + "Package": "pan", + "Version": "1.9", + "Source": "Repository", + "Date": "2023-8-19", + "Title": "Multiple Imputation for Multivariate Panel or Clustered Data", + "Author": "Original by Joseph L. Schafer", + "Maintainer": "Jing hua Zhao ", + "Suggests": [ + "mitools", + "lme4" + ], + "LazyData": "Yes", + "LazyLoad": "Yes", + "Description": "It provides functions and examples for maximum likelihood estimation for generalized linear mixed models and Gibbs sampler for multivariate linear mixed models with incomplete data, as described in Schafer JL (1997) \"Imputation of missing covariates under a multivariate linear mixed model\". Technical report 97-04, Dept. of Statistics, The Pennsylvania State University.", + "License": "GPL-3", + "NeedsCompilation": "yes", + "Repository": "RSPM", + "Depends": [ + "R (>= 2.10)" + ], + "Encoding": "UTF-8" + }, + "pillar": { + "Package": "pillar", + "Version": "1.10.1", + "Source": "Repository", + "Title": "Coloured Formatting for Columns", + "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\"), person(given = \"RStudio\", role = \"cph\"))", + "Description": "Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided by modern terminals.", + "License": "MIT + file LICENSE", + "URL": "https://pillar.r-lib.org/, https://github.com/r-lib/pillar", + "BugReports": "https://github.com/r-lib/pillar/issues", + "Imports": [ + "cli (>= 2.3.0)", + "glue", + "lifecycle", + "rlang (>= 1.0.2)", + "utf8 (>= 1.1.0)", + "utils", + "vctrs (>= 0.5.0)" + ], + "Suggests": [ + "bit64", + "DBI", + "debugme", + "DiagrammeR", + "dplyr", + "formattable", + "ggplot2", + "knitr", + "lubridate", + "nanotime", + "nycflights13", + "palmerpenguins", + "rmarkdown", + "scales", + "stringi", + "survival", + "testthat (>= 3.1.1)", + "tibble", + "units (>= 0.7.2)", + "vdiffr", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2, format_multi, ctl_colonnade, ctl_colonnade_1, ctl_colonnade_2", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/gha/extra-packages": "DiagrammeR=?ignore-before-r=3.5.0", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (), Hadley Wickham [aut], RStudio [cph]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "pkgbuild": { + "Package": "pkgbuild", + "Version": "1.4.8", + "Source": "Repository", + "Title": "Find Tools Needed to Build R Packages", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides functions used to build R packages. Locates compilers needed to build R packages on various platforms and ensures the PATH is configured appropriately so R can use them.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/pkgbuild, https://pkgbuild.r-lib.org", + "BugReports": "https://github.com/r-lib/pkgbuild/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Imports": [ + "callr (>= 3.2.0)", + "cli (>= 3.4.0)", + "desc", + "processx", + "R6" + ], + "Suggests": [ + "covr", + "cpp11", + "knitr", + "Rcpp", + "rmarkdown", + "testthat (>= 3.2.0)", + "withr (>= 2.3.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-30", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "pkgconfig": { + "Package": "pkgconfig", + "Version": "2.0.3", + "Source": "Repository", + "Title": "Private Configuration for 'R' Packages", + "Author": "Gábor Csárdi", + "Maintainer": "Gábor Csárdi ", + "Description": "Set configuration options on a per-package basis. Options set by a given package only apply to that package, other packages are unaffected.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "Imports": [ + "utils" + ], + "Suggests": [ + "covr", + "testthat", + "disposables (>= 1.0.3)" + ], + "URL": "https://github.com/r-lib/pkgconfig#readme", + "BugReports": "https://github.com/r-lib/pkgconfig/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "pkgdown": { + "Package": "pkgdown", + "Version": "2.2.0", + "Source": "Repository", + "Title": "Make Static HTML Documentation for a Package", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jay\", \"Hesselberth\", role = \"aut\", comment = c(ORCID = \"0000-0002-6299-179X\")), person(\"Maëlle\", \"Salmon\", role = \"aut\", comment = c(ORCID = \"0000-0002-2815-0399\")), person(\"Olivier\", \"Roy\", role = \"aut\"), person(\"Salim\", \"Brüggemann\", role = \"aut\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Generate an attractive and useful website from a source package. 'pkgdown' converts your documentation, vignettes, 'README', and more to 'HTML' making it easy to share information about your package online.", + "License": "MIT + file LICENSE", + "URL": "https://pkgdown.r-lib.org/, https://github.com/r-lib/pkgdown", + "BugReports": "https://github.com/r-lib/pkgdown/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "bslib (>= 0.5.1)", + "callr (>= 3.7.3)", + "cli (>= 3.6.1)", + "desc (>= 1.4.0)", + "downlit (>= 0.4.4)", + "fontawesome", + "fs (>= 1.4.0)", + "httr2 (>= 1.0.2)", + "jsonlite", + "lifecycle", + "openssl", + "purrr (>= 1.0.0)", + "ragg (>= 1.4.0)", + "rlang (>= 1.1.4)", + "rmarkdown (>= 2.27)", + "tibble", + "whisker", + "withr (>= 2.4.3)", + "xml2 (>= 1.3.1)", + "yaml (>= 2.3.9)" + ], + "Suggests": [ + "covr", + "diffviewer", + "evaluate (>= 0.24.0)", + "gert", + "gt", + "htmltools", + "htmlwidgets", + "knitr (>= 1.50)", + "magick", + "methods", + "pkgload (>= 1.0.2)", + "quarto", + "rsconnect", + "rstudioapi", + "rticles", + "sass", + "testthat (>= 3.1.3)", + "tools" + ], + "VignetteBuilder": "knitr, quarto", + "Config/Needs/website": "usethis, servr", + "Config/potools/style": "explicit", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "build-article, build-quarto-article, build-reference, build", + "Config/usethis/last-upkeep": "2025-09-07", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "SystemRequirements": "pandoc", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre] (ORCID: ), Jay Hesselberth [aut] (ORCID: ), Maëlle Salmon [aut] (ORCID: ), Olivier Roy [aut], Salim Brüggemann [aut] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "pkgload": { + "Package": "pkgload", + "Version": "1.5.0", + "Source": "Repository", + "Title": "Simulate Package Installation and Attach", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Some namespace and vignette code extracted from base R\") )", + "Description": "Simulates the process of installing a package and then attaching it. This is a key part of the 'devtools' package as it allows you to rapidly iterate while developing a package.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/pkgload, https://pkgload.r-lib.org", + "BugReports": "https://github.com/r-lib/pkgload/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "cli (>= 3.3.0)", + "desc", + "fs", + "glue", + "lifecycle", + "methods", + "pkgbuild", + "processx", + "rlang (>= 1.1.1)", + "rprojroot", + "utils" + ], + "Suggests": [ + "bitops", + "jsonlite", + "mathjaxr", + "pak", + "Rcpp", + "remotes", + "rstudioapi", + "testthat (>= 3.2.1.1)", + "usethis", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Config/testthat/start-first": "dll", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Winston Chang [aut], Jim Hester [aut], Lionel Henry [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Some namespace and vignette code extracted from base R)", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "polspline": { + "Package": "polspline", + "Version": "1.1.25", + "Source": "Repository", + "Date": "2024-05-10", + "Maintainer": "Charles Kooperberg ", + "Title": "Polynomial Spline Routines", + "Authors@R": "c(person(\"Charles\", \"Kooperberg\", role = c(\"aut\", \"cre\"), email = \"clk@fredhutch.org\"), person(\"Cleve\", \"Moler\", role = \"ctb\", comment = \"LINPACK routines in src\"), person(\"Jack\", \"Dongarra\", role = \"ctb\", comment = \"LINPACK routines in src\"))", + "Description": "Routines for the polynomial spline fitting routines hazard regression, hazard estimation with flexible tails, logspline, lspec, polyclass, and polymars, by C. Kooperberg and co-authors.", + "Imports": [ + "stats", + "graphics" + ], + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Author": "Charles Kooperberg [aut, cre], Cleve Moler [ctb] (LINPACK routines in src), Jack Dongarra [ctb] (LINPACK routines in src)", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "praise": { + "Package": "praise", + "Version": "1.0.0", + "Source": "Repository", + "Title": "Praise Users", + "Author": "Gabor Csardi, Sindre Sorhus", + "Maintainer": "Gabor Csardi ", + "Description": "Build friendly R packages that praise their users if they have done something good, or they just need it to feel better.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "URL": "https://github.com/gaborcsardi/praise", + "BugReports": "https://github.com/gaborcsardi/praise/issues", + "Suggests": [ + "testthat" + ], + "Collate": "'adjective.R' 'adverb.R' 'exclamation.R' 'verb.R' 'rpackage.R' 'package.R'", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "prettyunits": { + "Package": "prettyunits", + "Version": "1.2.0", + "Source": "Repository", + "Title": "Pretty, Human Readable Formatting of Quantities", + "Authors@R": "c( person(\"Gabor\", \"Csardi\", email=\"csardi.gabor@gmail.com\", role=c(\"aut\", \"cre\")), person(\"Bill\", \"Denney\", email=\"wdenney@humanpredictions.com\", role=c(\"ctb\"), comment=c(ORCID=\"0000-0002-5759-428X\")), person(\"Christophe\", \"Regouby\", email=\"christophe.regouby@free.fr\", role=c(\"ctb\")) )", + "Description": "Pretty, human readable formatting of quantities. Time intervals: '1337000' -> '15d 11h 23m 20s'. Vague time intervals: '2674000' -> 'about a month ago'. Bytes: '1337' -> '1.34 kB'. Rounding: '99' with 3 significant digits -> '99.0' p-values: '0.00001' -> '<0.0001'. Colors: '#FF0000' -> 'red'. Quantities: '1239437' -> '1.24 M'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/prettyunits", + "BugReports": "https://github.com/r-lib/prettyunits/issues", + "Depends": [ + "R(>= 2.10)" + ], + "Suggests": [ + "codetools", + "covr", + "testthat" + ], + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Gabor Csardi [aut, cre], Bill Denney [ctb] (), Christophe Regouby [ctb]", + "Maintainer": "Gabor Csardi ", + "Repository": "CRAN" + }, + "processx": { + "Package": "processx", + "Version": "3.8.6", + "Source": "Repository", + "Title": "Execute and Control System Processes", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to run system processes in the background. It can check if a background process is running; wait on a background process to finish; get the exit status of finished processes; kill background processes. It can read the standard output and error of the processes, using non-blocking connections. 'processx' can poll a process for standard output or error, with a timeout. It can also poll several processes at once.", + "License": "MIT + file LICENSE", + "URL": "https://processx.r-lib.org, https://github.com/r-lib/processx", + "BugReports": "https://github.com/r-lib/processx/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "ps (>= 1.2.0)", + "R6", + "utils" + ], + "Suggests": [ + "callr (>= 3.7.3)", + "cli (>= 3.3.0)", + "codetools", + "covr", + "curl", + "debugme", + "parallel", + "rlang (>= 1.0.2)", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1.9000", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre, cph] (), Winston Chang [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "profvis": { + "Package": "profvis", + "Version": "0.4.0", + "Source": "Repository", + "Title": "Interactive Visualizations for Profiling R Code", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Javier\", \"Luraschi\", role = \"aut\"), person(\"Timothy\", \"Mastny\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library\"), person(, \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/htmlwidgets/lib/jquery/AUTHORS.txt\"), person(\"Mike\", \"Bostock\", role = c(\"ctb\", \"cph\"), comment = \"D3 library\"), person(, \"D3 contributors\", role = \"ctb\", comment = \"D3 library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\") )", + "Description": "Interactive visualizations for profiling R code.", + "License": "MIT + file LICENSE", + "URL": "https://profvis.r-lib.org, https://github.com/r-lib/profvis", + "BugReports": "https://github.com/r-lib/profvis/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "htmlwidgets (>= 0.3.2)", + "rlang (>= 1.1.0)", + "vctrs" + ], + "Suggests": [ + "htmltools", + "knitr", + "rmarkdown", + "shiny", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate, rmarkdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Winston Chang [aut], Javier Luraschi [aut], Timothy Mastny [aut], Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/htmlwidgets/lib/jquery/AUTHORS.txt), Mike Bostock [ctb, cph] (D3 library), D3 contributors [ctb] (D3 library), Ivan Sagalaev [ctb, cph] (highlight.js library)", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "progress": { + "Package": "progress", + "Version": "1.2.3", + "Source": "Repository", + "Title": "Terminal Progress Bars", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Rich\", \"FitzJohn\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Configurable Progress bars, they may include percentage, elapsed time, and/or the estimated completion time. They work in terminals, in 'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'. The package also provides a 'C++' 'API', that works with or without 'Rcpp'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/progress#readme, http://r-lib.github.io/progress/", + "BugReports": "https://github.com/r-lib/progress/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "crayon", + "hms", + "prettyunits", + "R6" + ], + "Suggests": [ + "Rcpp", + "testthat (>= 3.0.0)", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Rich FitzJohn [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "promises": { + "Package": "promises", + "Version": "1.5.0", + "Source": "Repository", + "Type": "Package", + "Title": "Abstractions for Promise-Based Asynchronous Programming", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides fundamental abstractions for doing asynchronous programming in R using promises. Asynchronous programming is useful for allowing a single R process to orchestrate multiple tasks in the background while also attending to something else. Semantics are similar to 'JavaScript' promises, but with a syntax that is idiomatic R.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/promises/, https://github.com/rstudio/promises", + "BugReports": "https://github.com/rstudio/promises/issues", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "fastmap (>= 1.1.0)", + "later", + "lifecycle", + "magrittr (>= 1.5)", + "otel (>= 0.2.0)", + "R6", + "rlang" + ], + "Suggests": [ + "future (>= 1.21.0)", + "knitr", + "mirai", + "otelsdk (>= 0.2.0)", + "purrr", + "Rcpp", + "rmarkdown", + "spelling", + "testthat (>= 3.0.0)", + "vembedr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "rsconnect, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-05-27", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Joe Cheng [aut], Barret Schloerke [aut, cre] (ORCID: ), Winston Chang [aut] (ORCID: ), Charlie Gao [aut] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Barret Schloerke ", + "Repository": "CRAN" + }, + "ps": { + "Package": "ps", + "Version": "1.9.0", + "Source": "Repository", + "Title": "List, Query, Manipulate System Processes", + "Authors@R": "c( person(\"Jay\", \"Loden\", role = \"aut\"), person(\"Dave\", \"Daeschler\", role = \"aut\"), person(\"Giampaolo\", \"Rodola'\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "List, query and manipulate all system processes, on 'Windows', 'Linux' and 'macOS'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/ps, https://ps.r-lib.org/", + "BugReports": "https://github.com/r-lib/ps/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "callr", + "covr", + "curl", + "pillar", + "pingr", + "processx (>= 3.1.0)", + "R6", + "rlang", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Biarch": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Jay Loden [aut], Dave Daeschler [aut], Giampaolo Rodola' [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "purrr": { + "Package": "purrr", + "Version": "1.2.1", + "Source": "Repository", + "Title": "Functional Programming Tools", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )", + "Description": "A complete and consistent functional programming toolkit for R.", + "License": "MIT + file LICENSE", + "URL": "https://purrr.tidyverse.org/, https://github.com/tidyverse/purrr", + "BugReports": "https://github.com/tidyverse/purrr/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "cli (>= 3.6.1)", + "lifecycle (>= 1.0.3)", + "magrittr (>= 1.5.0)", + "rlang (>= 1.1.1)", + "vctrs (>= 0.6.3)" + ], + "Suggests": [ + "carrier (>= 0.3.0)", + "covr", + "dplyr (>= 0.7.8)", + "httr", + "knitr", + "lubridate", + "mirai (>= 2.5.1)", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble", + "tidyselect" + ], + "LinkingTo": [ + "cli" + ], + "VignetteBuilder": "knitr", + "Biarch": "true", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate, tidyr", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre] (ORCID: ), Lionel Henry [aut], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "quantreg": { + "Package": "quantreg", + "Version": "6.1", + "Source": "Repository", + "Title": "Quantile Regression", + "Description": "Estimation and inference methods for models for conditional quantile functions: Linear and nonlinear parametric and non-parametric (total variation penalized) models for conditional quantiles of a univariate response and several methods for handling censored survival data. Portfolio selection methods based on expected shortfall risk are also now included. See Koenker, R. (2005) Quantile Regression, Cambridge U. Press, and Koenker, R. et al. (2017) Handbook of Quantile Regression, CRC Press, .", + "Authors@R": "c( person(\"Roger\", \"Koenker\", role = c(\"cre\",\"aut\"), email = \"rkoenker@illinois.edu\"), person(\"Stephen\", \"Portnoy\", role = c(\"ctb\"), comment = \"Contributions to Censored QR code\", email = \"sportnoy@illinois.edu\"), person(c(\"Pin\", \"Tian\"), \"Ng\", role = c(\"ctb\"), comment = \"Contributions to Sparse QR code\", email = \"pin.ng@nau.edu\"), person(\"Blaise\", \"Melly\", role = c(\"ctb\"), comment = \"Contributions to preprocessing code\", email = \"mellyblaise@gmail.com\"), person(\"Achim\", \"Zeileis\", role = c(\"ctb\"), comment = \"Contributions to dynrq code essentially identical to his dynlm code\", email = \"Achim.Zeileis@uibk.ac.at\"), person(\"Philip\", \"Grosjean\", role = c(\"ctb\"), comment = \"Contributions to nlrq code\", email = \"phgrosjean@sciviews.org\"), person(\"Cleve\", \"Moler\", role = c(\"ctb\"), comment = \"author of several linpack routines\"), person(\"Yousef\", \"Saad\", role = c(\"ctb\"), comment = \"author of sparskit2\"), person(\"Victor\", \"Chernozhukov\", role = c(\"ctb\"), comment = \"contributions to extreme value inference code\"), person(\"Ivan\", \"Fernandez-Val\", role = c(\"ctb\"), comment = \"contributions to extreme value inference code\"), person(\"Martin\", \"Maechler\", role = \"ctb\", comment = c(\"tweaks (src/chlfct.f, 'tiny','Large')\", ORCID = \"0000-0002-8685-9910\")), person(c(\"Brian\", \"D\"), \"Ripley\", role = c(\"trl\",\"ctb\"), comment = \"Initial (2001) R port from S (to my everlasting shame -- how could I have been so slow to adopt R!) and for numerous other suggestions and useful advice\", email = \"ripley@stats.ox.ac.uk\"))", + "Maintainer": "Roger Koenker ", + "Repository": "RSPM", + "Depends": [ + "R (>= 3.5)", + "stats", + "SparseM" + ], + "Imports": [ + "methods", + "graphics", + "Matrix", + "MatrixModels", + "survival", + "MASS" + ], + "Suggests": [ + "interp", + "rgl", + "logspline", + "nor1mix", + "Formula", + "zoo", + "R.rsp", + "conquer" + ], + "License": "GPL (>= 2)", + "URL": "https://www.r-project.org", + "NeedsCompilation": "yes", + "VignetteBuilder": "R.rsp", + "Author": "Roger Koenker [cre, aut], Stephen Portnoy [ctb] (Contributions to Censored QR code), Pin Tian Ng [ctb] (Contributions to Sparse QR code), Blaise Melly [ctb] (Contributions to preprocessing code), Achim Zeileis [ctb] (Contributions to dynrq code essentially identical to his dynlm code), Philip Grosjean [ctb] (Contributions to nlrq code), Cleve Moler [ctb] (author of several linpack routines), Yousef Saad [ctb] (author of sparskit2), Victor Chernozhukov [ctb] (contributions to extreme value inference code), Ivan Fernandez-Val [ctb] (contributions to extreme value inference code), Martin Maechler [ctb] (tweaks (src/chlfct.f, 'tiny','Large'), ), Brian D Ripley [trl, ctb] (Initial (2001) R port from S (to my everlasting shame -- how could I have been so slow to adopt R!) and for numerous other suggestions and useful advice)", + "Encoding": "UTF-8" + }, + "ragg": { + "Package": "ragg", + "Version": "1.5.1", + "Source": "Repository", + "Type": "Package", + "Title": "Graphic Devices Based on AGG", + "Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Maxim\", \"Shemanarev\", role = c(\"aut\", \"cph\"), comment = \"Author of AGG\"), person(\"Tony\", \"Juricic\", , \"tonygeek@yahoo.com\", role = c(\"ctb\", \"cph\"), comment = \"Contributor to AGG\"), person(\"Milan\", \"Marusinec\", , \"milan@marusinec.sk\", role = c(\"ctb\", \"cph\"), comment = \"Contributor to AGG\"), person(\"Spencer\", \"Garrett\", role = \"ctb\", comment = \"Contributor to AGG\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Maintainer": "Thomas Lin Pedersen ", + "Description": "Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D drawing library. The 'ragg' package provides a set of graphic devices based on AGG to use as alternative to the raster devices provided through the 'grDevices' package.", + "License": "MIT + file LICENSE", + "URL": "https://ragg.r-lib.org, https://github.com/r-lib/ragg", + "BugReports": "https://github.com/r-lib/ragg/issues", + "Imports": [ + "systemfonts (>= 1.0.3)", + "textshaping (>= 0.3.0)" + ], + "Suggests": [ + "covr", + "graphics", + "grid", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "systemfonts", + "textshaping" + ], + "Config/build/compilation-database": "true", + "Config/Needs/website": "ggplot2, devoid, magick, bench, tidyr, ggridges, hexbin, sessioninfo, pkgdown, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "SystemRequirements": "freetype2, libpng, libtiff, libjpeg, libwebp, libwebpmux", + "NeedsCompilation": "yes", + "Author": "Thomas Lin Pedersen [cre, aut] (ORCID: ), Maxim Shemanarev [aut, cph] (Author of AGG), Tony Juricic [ctb, cph] (Contributor to AGG), Milan Marusinec [ctb, cph] (Contributor to AGG), Spencer Garrett [ctb] (Contributor to AGG), Posit Software, PBC [cph, fnd] (ROR: )", + "Repository": "CRAN" + }, + "rappdirs": { + "Package": "rappdirs", + "Version": "0.3.3", + "Source": "Repository", + "Type": "Package", + "Title": "Application Directories: Determine Where to Save Data, Caches, and Logs", + "Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = c(\"trl\", \"cre\", \"cph\"), email = \"hadley@rstudio.com\"), person(given = \"RStudio\", role = \"cph\"), person(given = \"Sridhar\", family = \"Ratnakumar\", role = \"aut\"), person(given = \"Trent\", family = \"Mick\", role = \"aut\"), person(given = \"ActiveState\", role = \"cph\", comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"), person(given = \"Eddy\", family = \"Petrisor\", role = \"ctb\"), person(given = \"Trevor\", family = \"Davis\", role = c(\"trl\", \"aut\")), person(given = \"Gabor\", family = \"Csardi\", role = \"ctb\"), person(given = \"Gregory\", family = \"Jefferis\", role = \"ctb\"))", + "Description": "An easy way to determine which directories on the users computer you should use to save data, caches and logs. A port of Python's 'Appdirs' () to R.", + "License": "MIT + file LICENSE", + "URL": "https://rappdirs.r-lib.org, https://github.com/r-lib/rappdirs", + "BugReports": "https://github.com/r-lib/rappdirs/issues", + "Depends": [ + "R (>= 3.2)" + ], + "Suggests": [ + "roxygen2", + "testthat (>= 3.0.0)", + "covr", + "withr" + ], + "Copyright": "Original python appdirs module copyright (c) 2010 ActiveState Software Inc. R port copyright Hadley Wickham, RStudio. See file LICENSE for details.", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [trl, cre, cph], RStudio [cph], Sridhar Ratnakumar [aut], Trent Mick [aut], ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs), Eddy Petrisor [ctb], Trevor Davis [trl, aut], Gabor Csardi [ctb], Gregory Jefferis [ctb]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "rbibutils": { + "Package": "rbibutils", + "Version": "2.4.1", + "Source": "Repository", + "Type": "Package", + "Title": "Read 'Bibtex' Files and Convert Between Bibliography Formats", + "Authors@R": "c( person(given = c(\"Georgi\", \"N.\"), family = \"Boshnakov\", role = c(\"aut\", \"cre\"), \t email = \"georgi.boshnakov@manchester.ac.uk\", comment = c(ORCID = \"0000-0003-2839-346X\", \"R port, R code, new C code and modifications to bibutils' C code, conversion to Bibentry (R and C code)\") ), person(given = \"Chris\", family = \"Putman\", role = \"aut\", comment = \"src/*, author of the bibutils libraries, https://sourceforge.net/projects/bibutils/\"), person(given = \"Richard\", family = \"Mathar\", role = \"ctb\", comment = \"src/addsout.c\"), person(given = \"Johannes\", family = \"Wilm\", role = \"ctb\", comment = \"src/biblatexin.c, src/bltypes.c\"), person(\"R Core Team\", role = \"ctb\", comment = \"base R's bibentry and bibstyle implementation\") )", + "Description": "Read and write 'Bibtex' files. Convert between bibliography formats, including 'Bibtex', 'Biblatex', 'PubMed', 'Endnote', and 'Bibentry'. Includes a port of the 'bibutils' utilities by Chris Putnam . Supports all bibliography formats and character encodings implemented in 'bibutils'.", + "License": "GPL-2", + "URL": "https://geobosh.github.io/rbibutils/ (doc), https://CRAN.R-project.org/package=rbibutils", + "BugReports": "https://github.com/GeoBosh/rbibutils/issues", + "Depends": [ + "R (>= 2.10)" + ], + "Imports": [ + "utils", + "tools" + ], + "Suggests": [ + "testthat" + ], + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Config/Needs/memcheck": "devtools, rcmdcheck", + "Author": "Georgi N. Boshnakov [aut, cre] (ORCID: , R port, R code, new C code and modifications to bibutils' C code, conversion to Bibentry (R and C code)), Chris Putman [aut] (src/*, author of the bibutils libraries, https://sourceforge.net/projects/bibutils/), Richard Mathar [ctb] (src/addsout.c), Johannes Wilm [ctb] (src/biblatexin.c, src/bltypes.c), R Core Team [ctb] (base R's bibentry and bibstyle implementation)", + "Maintainer": "Georgi N. Boshnakov ", + "Repository": "CRAN" + }, + "rcmdcheck": { + "Package": "rcmdcheck", + "Version": "1.4.0", + "Source": "Repository", + "Title": "Run 'R CMD check' from 'R' and Capture Results", + "Authors@R": "person(given = \"Gábor\", family = \"Csárdi\", role = c(\"cre\", \"aut\"), email = \"csardi.gabor@gmail.com\")", + "Description": "Run 'R CMD check' from 'R' and capture the results of the individual checks. Supports running checks in the background, timeouts, pretty printing and comparing check results.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.github.io/rcmdcheck/, https://github.com/r-Lib/rcmdcheck#readme", + "BugReports": "https://github.com/r-Lib/rcmdcheck/issues", + "Imports": [ + "callr (>= 3.1.1.9000)", + "cli (>= 3.0.0)", + "curl", + "desc (>= 1.2.0)", + "digest", + "pkgbuild", + "prettyunits", + "R6", + "rprojroot", + "sessioninfo (>= 1.1.1)", + "utils", + "withr", + "xopen" + ], + "Suggests": [ + "covr", + "knitr", + "mockery", + "processx", + "ps", + "rmarkdown", + "svglite", + "testthat", + "webfakes" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [cre, aut]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "reactR": { + "Package": "reactR", + "Version": "0.6.1", + "Source": "Repository", + "Type": "Package", + "Title": "React Helpers", + "Date": "2024-09-14", + "Authors@R": "c( person( \"Facebook\", \"Inc\" , role = c(\"aut\", \"cph\") , comment = \"React library in lib, https://reactjs.org/; see AUTHORS for full list of contributors\" ), person( \"Michel\",\"Weststrate\", , role = c(\"aut\", \"cph\") , comment = \"mobx library in lib, https://github.com/mobxjs\" ), person( \"Kent\", \"Russell\" , role = c(\"aut\", \"cre\") , comment = \"R interface\" , email = \"kent.russell@timelyportfolio.com\" ), person( \"Alan\", \"Dipert\" , role = c(\"aut\") , comment = \"R interface\" , email = \"alan@rstudio.com\" ), person( \"Greg\", \"Lin\" , role = c(\"aut\") , comment = \"R interface\" , email = \"glin@glin.io\" ) )", + "Maintainer": "Kent Russell ", + "Description": "Make it easy to use 'React' in R with 'htmlwidget' scaffolds, helper dependency functions, an embedded 'Babel' 'transpiler', and examples.", + "URL": "https://github.com/react-R/reactR", + "BugReports": "https://github.com/react-R/reactR/issues", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Imports": [ + "htmltools" + ], + "Suggests": [ + "htmlwidgets (>= 1.5.3)", + "rmarkdown", + "shiny", + "V8", + "knitr", + "usethis", + "jsonlite" + ], + "RoxygenNote": "7.3.2", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Author": "Facebook Inc [aut, cph] (React library in lib, https://reactjs.org/; see AUTHORS for full list of contributors), Michel Weststrate [aut, cph] (mobx library in lib, https://github.com/mobxjs), Kent Russell [aut, cre] (R interface), Alan Dipert [aut] (R interface), Greg Lin [aut] (R interface)", + "Repository": "CRAN" + }, + "reactable": { + "Package": "reactable", + "Version": "0.4.5", + "Source": "Repository", + "Type": "Package", + "Title": "Interactive Data Tables for R", + "Authors@R": "c( person(\"Greg\", \"Lin\", email = \"glin@glin.io\", role = c(\"aut\", \"cre\")), person(\"Tanner\", \"Linsley\", role = c(\"ctb\", \"cph\"), comment = \"React Table library\"), person(family = \"Emotion team and other contributors\", role = c(\"ctb\", \"cph\"), comment = \"Emotion library\"), person(\"Kent\", \"Russell\", role = c(\"ctb\", \"cph\"), comment = \"reactR package\"), person(\"Ramnath\", \"Vaidyanathan\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"Joe\", \"Cheng\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"JJ\", \"Allaire\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"Yihui\", \"Xie\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"Kenton\", \"Russell\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(family = \"Facebook, Inc. and its affiliates\", role = c(\"ctb\", \"cph\"), comment = \"React library\"), person(family = \"FormatJS\", role = c(\"ctb\", \"cph\"), comment = \"FormatJS libraries\"), person(family = \"Feross Aboukhadijeh, and other contributors\", role = c(\"ctb\", \"cph\"), comment = \"buffer library\"), person(\"Roman\", \"Shtylman\", role = c(\"ctb\", \"cph\"), comment = \"process library\"), person(\"James\", \"Halliday\", role = c(\"ctb\", \"cph\"), comment = \"stream-browserify library\"), person(family = \"Posit Software, PBC\", role = c(\"fnd\", \"cph\")) )", + "Description": "Interactive data tables for R, based on the 'React Table' JavaScript library. Provides an HTML widget that can be used in 'R Markdown' or 'Quarto' documents, 'Shiny' applications, or viewed from an R console.", + "License": "MIT + file LICENSE", + "URL": "https://glin.github.io/reactable/, https://github.com/glin/reactable", + "BugReports": "https://github.com/glin/reactable/issues", + "Depends": [ + "R (>= 3.1)" + ], + "Imports": [ + "digest", + "htmltools (>= 0.5.2)", + "htmlwidgets (>= 1.5.3)", + "jsonlite", + "reactR" + ], + "Suggests": [ + "covr", + "crosstalk", + "dplyr", + "fontawesome", + "knitr", + "leaflet", + "MASS", + "rmarkdown", + "shiny", + "sparkline", + "testthat", + "tippy", + "V8" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Greg Lin [aut, cre], Tanner Linsley [ctb, cph] (React Table library), Emotion team and other contributors [ctb, cph] (Emotion library), Kent Russell [ctb, cph] (reactR package), Ramnath Vaidyanathan [ctb, cph] (htmlwidgets package), Joe Cheng [ctb, cph] (htmlwidgets package), JJ Allaire [ctb, cph] (htmlwidgets package), Yihui Xie [ctb, cph] (htmlwidgets package), Kenton Russell [ctb, cph] (htmlwidgets package), Facebook, Inc. and its affiliates [ctb, cph] (React library), FormatJS [ctb, cph] (FormatJS libraries), Feross Aboukhadijeh, and other contributors [ctb, cph] (buffer library), Roman Shtylman [ctb, cph] (process library), James Halliday [ctb, cph] (stream-browserify library), Posit Software, PBC [fnd, cph]", + "Maintainer": "Greg Lin ", + "Repository": "CRAN" + }, + "readr": { + "Package": "readr", + "Version": "2.1.5", + "Source": "Repository", + "Title": "Read Rectangular Text Data", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\") )", + "Description": "The goal of 'readr' is to provide a fast and friendly way to read rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to flexibly parse many types of data found in the wild, while still cleanly failing when data unexpectedly changes.", + "License": "MIT + file LICENSE", + "URL": "https://readr.tidyverse.org, https://github.com/tidyverse/readr", + "BugReports": "https://github.com/tidyverse/readr/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli (>= 3.2.0)", + "clipr", + "crayon", + "hms (>= 0.4.1)", + "lifecycle (>= 0.2.0)", + "methods", + "R6", + "rlang", + "tibble", + "utils", + "vroom (>= 1.6.0)" + ], + "Suggests": [ + "covr", + "curl", + "datasets", + "knitr", + "rmarkdown", + "spelling", + "stringi", + "testthat (>= 3.2.0)", + "tzdb (>= 0.1.1)", + "waldo", + "withr", + "xml2" + ], + "LinkingTo": [ + "cpp11", + "tzdb (>= 0.1.1)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "false", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Romain Francois [ctb], Jennifer Bryan [aut, cre] (), Shelby Bearrows [ctb], Posit Software, PBC [cph, fnd], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [ctb, cph] (grisu3 implementation), Mikkel Jørgensen [ctb, cph] (grisu3 implementation)", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "reformulas": { + "Package": "reformulas", + "Version": "0.4.4", + "Source": "Repository", + "Title": "Machinery for Processing Random Effect Formulas", + "Authors@R": "c( person(given = \"Ben\", family = \"Bolker\", role = c(\"aut\", \"cre\"), email = \"bolker@mcmaster.ca\", comment=c(ORCID=\"0000-0002-2127-0443\")), person(\"Anna\", \"Ly\", role = \"ctb\", comment = c(ORCID = \"0000-0002-0210-0342\")) )", + "Description": "Takes formulas including random-effects components (formatted as in 'lme4', 'glmmTMB', etc.) and processes them. Includes various helper functions.", + "URL": "https://github.com/bbolker/reformulas", + "License": "GPL-3", + "Encoding": "UTF-8", + "Imports": [ + "stats", + "methods", + "Matrix", + "Rdpack" + ], + "RdMacros": "Rdpack", + "Suggests": [ + "lme4", + "tinytest", + "glmmTMB", + "Formula" + ], + "RoxygenNote": "7.3.3", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Ben Bolker [aut, cre] (ORCID: ), Anna Ly [ctb] (ORCID: )", + "Maintainer": "Ben Bolker ", + "Repository": "CRAN" + }, + "remotes": { + "Package": "remotes", + "Version": "2.5.0", + "Source": "Repository", + "Title": "R Package Installation from Remote Repositories, Including 'GitHub'", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Martin\", \"Morgan\", role = \"aut\"), person(\"Dan\", \"Tenenbaum\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = \"cph\") )", + "Description": "Download and install R packages stored in 'GitHub', 'GitLab', 'Bitbucket', 'Bioconductor', or plain 'subversion' or 'git' repositories. This package provides the 'install_*' functions in 'devtools'. Indeed most of the code was copied over from 'devtools'.", + "License": "MIT + file LICENSE", + "URL": "https://remotes.r-lib.org, https://github.com/r-lib/remotes#readme", + "BugReports": "https://github.com/r-lib/remotes/issues", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "methods", + "stats", + "tools", + "utils" + ], + "Suggests": [ + "brew", + "callr", + "codetools", + "covr", + "curl", + "git2r (>= 0.23.0)", + "knitr", + "mockery", + "pingr", + "pkgbuild (>= 1.0.1)", + "rmarkdown", + "rprojroot", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "Subversion for install_svn, git for install_git", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Jim Hester [aut], Hadley Wickham [aut], Winston Chang [aut], Martin Morgan [aut], Dan Tenenbaum [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "renv": { + "Package": "renv", + "Version": "1.1.2", + "Source": "Repository", + "Type": "Package", + "Title": "Project Environments", + "Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@rstudio.com\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv", + "BugReports": "https://github.com/rstudio/renv/issues", + "Imports": [ + "utils" + ], + "Suggests": [ + "BiocManager", + "cli", + "compiler", + "covr", + "cpp11", + "devtools", + "gitcreds", + "jsonlite", + "jsonvalidate", + "knitr", + "miniUI", + "modules", + "packrat", + "pak", + "R6", + "remotes", + "reticulate", + "rmarkdown", + "rstudioapi", + "shiny", + "testthat", + "uuid", + "waldo", + "yaml", + "webfakes" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes", + "NeedsCompilation": "no", + "Author": "Kevin Ushey [aut, cre] (), Hadley Wickham [aut] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Kevin Ushey ", + "Repository": "CRAN" + }, + "rlang": { + "Package": "rlang", + "Version": "1.1.7", + "Source": "Repository", + "Title": "Functions for Base Types and Core R and 'Tidyverse' Features", + "Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.", + "Authors@R": "c( person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"), person(given = \"mikefc\", email = \"mikefc@coolbutuseless.com\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(given = \"Yann\", family = \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "License": "MIT + file LICENSE", + "ByteCompile": "true", + "Biarch": "true", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "cli (>= 3.1.0)", + "covr", + "crayon", + "desc", + "fs", + "glue", + "knitr", + "magrittr", + "methods", + "pillar", + "pkgload", + "rmarkdown", + "stats", + "testthat (>= 3.2.0)", + "tibble", + "usethis", + "vctrs (>= 0.2.3)", + "withr" + ], + "Enhances": [ + "winch" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang", + "BugReports": "https://github.com/r-lib/rlang/issues", + "Config/build/compilation-database": "true", + "Config/testthat/edition": "3", + "Config/Needs/website": "dplyr, tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], mikefc [cph] (Hash implementation based on Mike's xxhashlite), Yann Collet [cph] (Author of the embedded xxHash library), Posit, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "rmarkdown": { + "Package": "rmarkdown", + "Version": "2.29", + "Source": "Repository", + "Type": "Package", + "Title": "Dynamic Documents for R", + "Authors@R": "c( person(\"JJ\", \"Allaire\", , \"jj@posit.co\", role = \"aut\"), person(\"Yihui\", \"Xie\", , \"xie@yihui.name\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Jonathan\", \"McPherson\", , \"jonathan@posit.co\", role = \"aut\"), person(\"Javier\", \"Luraschi\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"aut\"), person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"), person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Andrew\", \"Dunning\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0464-5036\")), person(\"Atsushi\", \"Yasumoto\", role = c(\"ctb\", \"cph\"), comment = c(ORCID = \"0000-0002-8335-495X\", cph = \"Number sections Lua filter\")), person(\"Barret\", \"Schloerke\", role = \"ctb\"), person(\"Carson\", \"Sievert\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Devon\", \"Ryan\", , \"dpryan79@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8549-0971\")), person(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(\"Jeff\", \"Allen\", , \"jeff@posit.co\", role = \"ctb\"), person(\"JooYoung\", \"Seo\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4064-6012\")), person(\"Malcolm\", \"Barrett\", role = \"ctb\"), person(\"Rob\", \"Hyndman\", , \"Rob.Hyndman@monash.edu\", role = \"ctb\"), person(\"Romain\", \"Lesur\", role = \"ctb\"), person(\"Roy\", \"Storey\", role = \"ctb\"), person(\"Ruben\", \"Arslan\", , \"ruben.arslan@uni-goettingen.de\", role = \"ctb\"), person(\"Sergio\", \"Oller\", role = \"ctb\"), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"), comment = \"html5shiv library\"), person(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"), comment = \"Respond.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(\"Greg\", \"Franko\", role = c(\"ctb\", \"cph\"), comment = \"tocify library\"), person(\"John\", \"MacFarlane\", role = c(\"ctb\", \"cph\"), comment = \"Pandoc templates\"), person(, \"Google, Inc.\", role = c(\"ctb\", \"cph\"), comment = \"ioslides library\"), person(\"Dave\", \"Raggett\", role = \"ctb\", comment = \"slidy library\"), person(, \"W3C\", role = \"cph\", comment = \"slidy library\"), person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome\"), person(\"Ben\", \"Sperry\", role = \"ctb\", comment = \"Ionicons\"), person(, \"Drifty\", role = \"cph\", comment = \"Ionicons\"), person(\"Aidan\", \"Lister\", role = c(\"ctb\", \"cph\"), comment = \"jQuery StickyTabs\"), person(\"Benct Philip\", \"Jonsson\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\"), person(\"Albert\", \"Krewinkel\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\") )", + "Description": "Convert R Markdown documents into a variety of formats.", + "License": "GPL-3", + "URL": "https://github.com/rstudio/rmarkdown, https://pkgs.rstudio.com/rmarkdown/", + "BugReports": "https://github.com/rstudio/rmarkdown/issues", + "Depends": [ + "R (>= 3.0)" + ], + "Imports": [ + "bslib (>= 0.2.5.1)", + "evaluate (>= 0.13)", + "fontawesome (>= 0.5.0)", + "htmltools (>= 0.5.1)", + "jquerylib", + "jsonlite", + "knitr (>= 1.43)", + "methods", + "tinytex (>= 0.31)", + "tools", + "utils", + "xfun (>= 0.36)", + "yaml (>= 2.1.19)" + ], + "Suggests": [ + "digest", + "dygraphs", + "fs", + "rsconnect", + "downlit (>= 0.4.0)", + "katex (>= 1.4.0)", + "sass (>= 0.4.0)", + "shiny (>= 1.6.0)", + "testthat (>= 3.0.3)", + "tibble", + "vctrs", + "cleanrmd", + "withr (>= 2.4.2)", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "rstudio/quillt, pkgdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "pandoc (>= 1.14) - http://pandoc.org", + "NeedsCompilation": "no", + "Author": "JJ Allaire [aut], Yihui Xie [aut, cre] (), Christophe Dervieux [aut] (), Jonathan McPherson [aut], Javier Luraschi [aut], Kevin Ushey [aut], Aron Atkins [aut], Hadley Wickham [aut], Joe Cheng [aut], Winston Chang [aut], Richard Iannone [aut] (), Andrew Dunning [ctb] (), Atsushi Yasumoto [ctb, cph] (, Number sections Lua filter), Barret Schloerke [ctb], Carson Sievert [ctb] (), Devon Ryan [ctb] (), Frederik Aust [ctb] (), Jeff Allen [ctb], JooYoung Seo [ctb] (), Malcolm Barrett [ctb], Rob Hyndman [ctb], Romain Lesur [ctb], Roy Storey [ctb], Ruben Arslan [ctb], Sergio Oller [ctb], Posit Software, PBC [cph, fnd], jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Alexander Farkas [ctb, cph] (html5shiv library), Scott Jehl [ctb, cph] (Respond.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), Greg Franko [ctb, cph] (tocify library), John MacFarlane [ctb, cph] (Pandoc templates), Google, Inc. [ctb, cph] (ioslides library), Dave Raggett [ctb] (slidy library), W3C [cph] (slidy library), Dave Gandy [ctb, cph] (Font-Awesome), Ben Sperry [ctb] (Ionicons), Drifty [cph] (Ionicons), Aidan Lister [ctb, cph] (jQuery StickyTabs), Benct Philip Jonsson [ctb, cph] (pagebreak Lua filter), Albert Krewinkel [ctb, cph] (pagebreak Lua filter)", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "rms": { + "Package": "rms", + "Version": "8.1-1", + "Source": "Repository", + "Date": "2026-02-17", + "Title": "Regression Modeling Strategies", + "Authors@R": "person(given = c(\"Frank E\"), family = \"Harrell Jr\", role = c(\"aut\", \"cre\"), email = \"fh@fharrell.com\")", + "Depends": [ + "R (>= 4.4.0)", + "Hmisc (>= 5.2-5)" + ], + "Imports": [ + "methods", + "survival", + "quantreg", + "ggplot2", + "Matrix", + "SparseM", + "rpart", + "nlme (>= 3.1-123)", + "polspline", + "multcomp", + "htmlTable (>= 1.11.0)", + "htmltools", + "MASS", + "cluster", + "digest", + "colorspace", + "knitr", + "grDevices", + "scales" + ], + "Suggests": [ + "boot", + "tcltk", + "plotly (>= 4.5.6)", + "mice", + "icenReg", + "rmsb", + "nnet", + "VGAM", + "lattice", + "kableExtra" + ], + "Description": "Regression modeling, testing, estimation, validation, graphics, prediction, and typesetting by storing enhanced model design attributes in the fit. 'rms' is a collection of functions that assist with and streamline modeling. It also contains functions for binary and ordinal logistic regression models, ordinal models for continuous Y with a variety of distribution families, and the Buckley-James multiple regression model for right-censored responses, and implements penalized maximum likelihood estimation for logistic and ordinary linear models. 'rms' works with almost any regression model, but it was especially written to work with binary or ordinal regression models, Cox regression, accelerated failure time models, ordinary linear models,\tthe Buckley-James model, generalized least squares for serially or spatially correlated observations, generalized linear models, and quantile regression.", + "License": "GPL (>= 2)", + "URL": "https://hbiostat.org/R/rms/, https://github.com/harrelfe/rms", + "LazyLoad": "yes", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Frank E Harrell Jr [aut, cre]", + "Maintainer": "Frank E Harrell Jr ", + "Repository": "CRAN" + }, + "roxygen2": { + "Package": "roxygen2", + "Version": "7.3.3", + "Source": "Repository", + "Title": "In-Line Documentation for R", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Peter\", \"Danenberg\", , \"pcd@roxygen.org\", role = c(\"aut\", \"cph\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"aut\"), person(\"Manuel\", \"Eugster\", role = c(\"aut\", \"cph\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Generate your Rd documentation, 'NAMESPACE' file, and collation field using specially formatted comments. Writing documentation in-line with code makes it easier to keep your documentation up-to-date as your requirements change. 'roxygen2' is inspired by the 'Doxygen' system for C++.", + "License": "MIT + file LICENSE", + "URL": "https://roxygen2.r-lib.org/, https://github.com/r-lib/roxygen2", + "BugReports": "https://github.com/r-lib/roxygen2/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "brew", + "cli (>= 3.3.0)", + "commonmark", + "desc (>= 1.2.0)", + "knitr", + "methods", + "pkgload (>= 1.0.2)", + "purrr (>= 1.0.0)", + "R6 (>= 2.1.2)", + "rlang (>= 1.0.6)", + "stringi", + "stringr (>= 1.0.0)", + "utils", + "withr", + "xml2" + ], + "Suggests": [ + "covr", + "R.methodsS3", + "R.oo", + "rmarkdown (>= 2.16)", + "testthat (>= 3.1.2)", + "yaml" + ], + "LinkingTo": [ + "cpp11" + ], + "VignetteBuilder": "knitr", + "Config/Needs/development": "testthat", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Encoding": "UTF-8", + "Language": "en-GB", + "RoxygenNote": "7.3.2.9000", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre, cph] (ORCID: ), Peter Danenberg [aut, cph], Gábor Csárdi [aut], Manuel Eugster [aut, cph], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "rpart": { + "Package": "rpart", + "Version": "4.1.23", + "Source": "Repository", + "Priority": "recommended", + "Date": "2023-12-04", + "Authors@R": "c(person(\"Terry\", \"Therneau\", role = \"aut\", email = \"therneau@mayo.edu\"), person(\"Beth\", \"Atkinson\", role = c(\"aut\", \"cre\"), email = \"atkinson@mayo.edu\"), person(\"Brian\", \"Ripley\", role = \"trl\", email = \"ripley@stats.ox.ac.uk\", comment = \"producer of the initial R port, maintainer 1999-2017\"))", + "Description": "Recursive partitioning for classification, regression and survival trees. An implementation of most of the functionality of the 1984 book by Breiman, Friedman, Olshen and Stone.", + "Title": "Recursive Partitioning and Regression Trees", + "Depends": [ + "R (>= 2.15.0)", + "graphics", + "stats", + "grDevices" + ], + "Suggests": [ + "survival" + ], + "License": "GPL-2 | GPL-3", + "LazyData": "yes", + "ByteCompile": "yes", + "NeedsCompilation": "yes", + "Author": "Terry Therneau [aut], Beth Atkinson [aut, cre], Brian Ripley [trl] (producer of the initial R port, maintainer 1999-2017)", + "Maintainer": "Beth Atkinson ", + "Repository": "CRAN", + "URL": "https://github.com/bethatkinson/rpart, https://cran.r-project.org/package=rpart", + "BugReports": "https://github.com/bethatkinson/rpart/issues" + }, + "rprojroot": { + "Package": "rprojroot", + "Version": "2.1.1", + "Source": "Repository", + "Title": "Finding Files in Project Subdirectories", + "Authors@R": "person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\"))", + "Description": "Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a directory that matches a certain criterion, e.g., it contains a certain regular file.", + "License": "MIT + file LICENSE", + "URL": "https://rprojroot.r-lib.org/, https://github.com/r-lib/rprojroot", + "BugReports": "https://github.com/r-lib/rprojroot/issues", + "Depends": [ + "R (>= 3.0.0)" + ], + "Suggests": [ + "covr", + "knitr", + "lifecycle", + "rlang", + "rmarkdown", + "testthat (>= 3.2.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (ORCID: )", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "rstudioapi": { + "Package": "rstudioapi", + "Version": "0.17.1", + "Source": "Repository", + "Title": "Safely Access the RStudio API", + "Description": "Access the RStudio API (if available) and provide informative error messages when it's not.", + "Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\"), person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@posit.co\"), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@posit.co\"), person(\"Gary\", \"Ritchie\", role = c(\"aut\"), email = \"gary@posit.co\"), person(family = \"RStudio\", role = \"cph\") )", + "Maintainer": "Kevin Ushey ", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/rstudioapi/, https://github.com/rstudio/rstudioapi", + "BugReports": "https://github.com/rstudio/rstudioapi/issues", + "RoxygenNote": "7.3.2", + "Suggests": [ + "testthat", + "knitr", + "rmarkdown", + "clipr", + "covr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Kevin Ushey [aut, cre], JJ Allaire [aut], Hadley Wickham [aut], Gary Ritchie [aut], RStudio [cph]", + "Repository": "CRAN" + }, + "rversions": { + "Package": "rversions", + "Version": "3.0.0", + "Source": "Repository", + "Title": "Query 'R' Versions, Including 'r-release' and 'r-oldrel'", + "Authors@R": "c(person(given = \"Gábor\", family = \"Csárdi\", role = c(\"aut\", \"cre\"), email = \"csardi.gabor@gmail.com\"), person(given = \"Jeroen\", family = \"Ooms\", role = \"ctb\", email = \"jeroen.ooms@stat.ucla.edu\"), person(given = \"R Consortium\", role = \"fnd\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")))", + "Description": "Query the main 'R' 'SVN' repository to find the versions 'r-release' and 'r-oldrel' refer to, and also all previous 'R' versions and their release dates.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-hub/rversions, https://r-hub.github.io/rversions/", + "BugReports": "https://github.com/r-hub/rversions/issues", + "Imports": [ + "curl" + ], + "Suggests": [ + "pillar", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Jeroen Ooms [ctb], R Consortium [fnd], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "sandwich": { + "Package": "sandwich", + "Version": "3.1-1", + "Source": "Repository", + "Date": "2024-09-16", + "Title": "Robust Covariance Matrix Estimators", + "Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")), person(given = \"Thomas\", family = \"Lumley\", role = \"aut\", email = \"t.lumley@auckland.ac.nz\", comment = c(ORCID = \"0000-0003-4255-5437\")), person(given = \"Nathaniel\", family = \"Graham\", role = \"ctb\", email = \"npgraham1@gmail.com\", comment = c(ORCID = \"0009-0002-1215-5256\")), person(given = \"Susanne\", family = \"Koell\", role = \"ctb\"))", + "Description": "Object-oriented software for model-robust covariance matrix estimators. Starting out from the basic robust Eicker-Huber-White sandwich covariance methods include: heteroscedasticity-consistent (HC) covariances for cross-section data; heteroscedasticity- and autocorrelation-consistent (HAC) covariances for time series data (such as Andrews' kernel HAC, Newey-West, and WEAVE estimators); clustered covariances (one-way and multi-way); panel and panel-corrected covariances; outer-product-of-gradients covariances; and (clustered) bootstrap covariances. All methods are applicable to (generalized) linear model objects fitted by lm() and glm() but can also be adapted to other classes through S3 methods. Details can be found in Zeileis et al. (2020) , Zeileis (2004) and Zeileis (2006) .", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "stats", + "utils", + "zoo" + ], + "Suggests": [ + "AER", + "car", + "geepack", + "lattice", + "lme4", + "lmtest", + "MASS", + "multiwayvcov", + "parallel", + "pcse", + "plm", + "pscl", + "scatterplot3d", + "stats4", + "strucchange", + "survival" + ], + "License": "GPL-2 | GPL-3", + "URL": "https://sandwich.R-Forge.R-project.org/", + "BugReports": "https://sandwich.R-Forge.R-project.org/contact.html", + "NeedsCompilation": "no", + "Author": "Achim Zeileis [aut, cre] (), Thomas Lumley [aut] (), Nathaniel Graham [ctb] (), Susanne Koell [ctb]", + "Maintainer": "Achim Zeileis ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "sass": { + "Package": "sass", + "Version": "0.4.9", + "Source": "Repository", + "Type": "Package", + "Title": "Syntactically Awesome Style Sheets ('Sass')", + "Description": "An 'SCSS' compiler, powered by the 'LibSass' library. With this, R developers can use variables, inheritance, and functions to generate dynamic style sheets. The package uses the 'Sass CSS' extension language, which is stable, powerful, and CSS compatible.", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@rstudio.com\", \"aut\"), person(\"Timothy\", \"Mastny\", , \"tim.mastny@gmail.com\", \"aut\"), person(\"Richard\", \"Iannone\", , \"rich@rstudio.com\", \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Barret\", \"Schloerke\", , \"barret@rstudio.com\", \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Carson\", \"Sievert\", , \"carson@rstudio.com\", c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Christophe\", \"Dervieux\", , \"cderv@rstudio.com\", c(\"ctb\"), comment = c(ORCID = \"0000-0003-4474-2498\")), person(family = \"RStudio\", role = c(\"cph\", \"fnd\")), person(family = \"Sass Open Source Foundation\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Greter\", \"Marcel\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Mifsud\", \"Michael\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Hampton\", \"Catlin\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Natalie\", \"Weizenbaum\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Chris\", \"Eppstein\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Adams\", \"Joseph\", role = c(\"ctb\", \"cph\"), comment = \"json.cpp\"), person(\"Trifunovic\", \"Nemanja\", role = c(\"ctb\", \"cph\"), comment = \"utf8.h\") )", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/sass/, https://github.com/rstudio/sass", + "BugReports": "https://github.com/rstudio/sass/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "SystemRequirements": "GNU make", + "Imports": [ + "fs (>= 1.2.4)", + "rlang (>= 0.4.10)", + "htmltools (>= 0.5.1)", + "R6", + "rappdirs" + ], + "Suggests": [ + "testthat", + "knitr", + "rmarkdown", + "withr", + "shiny", + "curl" + ], + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Joe Cheng [aut], Timothy Mastny [aut], Richard Iannone [aut] (), Barret Schloerke [aut] (), Carson Sievert [aut, cre] (), Christophe Dervieux [ctb] (), RStudio [cph, fnd], Sass Open Source Foundation [ctb, cph] (LibSass library), Greter Marcel [ctb, cph] (LibSass library), Mifsud Michael [ctb, cph] (LibSass library), Hampton Catlin [ctb, cph] (LibSass library), Natalie Weizenbaum [ctb, cph] (LibSass library), Chris Eppstein [ctb, cph] (LibSass library), Adams Joseph [ctb, cph] (json.cpp), Trifunovic Nemanja [ctb, cph] (utf8.h)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "scales": { + "Package": "scales", + "Version": "1.3.0", + "Source": "Repository", + "Title": "Scale Functions for Visualization", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\")), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Dana\", \"Seidel\", role = \"aut\"), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Graphical scales map data to aesthetics, and provide methods for automatically determining breaks and labels for axes and legends.", + "License": "MIT + file LICENSE", + "URL": "https://scales.r-lib.org, https://github.com/r-lib/scales", + "BugReports": "https://github.com/r-lib/scales/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli", + "farver (>= 2.0.3)", + "glue", + "labeling", + "lifecycle", + "munsell (>= 0.5)", + "R6", + "RColorBrewer", + "rlang (>= 1.0.0)", + "viridisLite" + ], + "Suggests": [ + "bit64", + "covr", + "dichromat", + "ggplot2", + "hms (>= 0.5.0)", + "stringi", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyLoad": "yes", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [cre, aut] (), Dana Seidel [aut], Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "secretbase": { + "Package": "secretbase", + "Version": "1.2.0", + "Source": "Repository", + "Type": "Package", + "Title": "Cryptographic Hash, Extendable-Output and Binary/Text Encoding Functions", + "Authors@R": "c( person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Hibiki AI Limited\", role = \"cph\") )", + "Description": "Fast and memory-efficient streaming hash functions, binary/text encoding and serialization. Hashes strings and raw vectors directly. Stream hashes files which can be larger than memory, as well as in-memory objects through R's serialization mechanism. Implements the SHA-256, SHA-3 and 'Keccak' cryptographic hash functions, SHAKE256 extendable-output function (XOF), 'SipHash' pseudo-random function, base64 and base58 encoding, 'CBOR' and 'JSON' serialization.", + "License": "MIT + file LICENSE", + "URL": "https://shikokuchuo.net/secretbase/, https://github.com/shikokuchuo/secretbase/", + "BugReports": "https://github.com/shikokuchuo/secretbase/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Config/build/compilation-database": "true", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "yes", + "Author": "Charlie Gao [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: ), Hibiki AI Limited [cph]", + "Maintainer": "Charlie Gao ", + "Repository": "CRAN" + }, + "sessioninfo": { + "Package": "sessioninfo", + "Version": "1.2.3", + "Source": "Repository", + "Title": "R Session Information", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"cre\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Robert\", \"Flight\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"R Core team\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Maintainer": "Gábor Csárdi ", + "Description": "Query and print information about the current R session. It is similar to 'utils::sessionInfo()', but includes more information about packages, and where they were installed from.", + "License": "GPL-2", + "URL": "https://github.com/r-lib/sessioninfo#readme, https://sessioninfo.r-lib.org", + "BugReports": "https://github.com/r-lib/sessioninfo/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli (>= 3.1.0)", + "tools", + "utils" + ], + "Suggests": [ + "callr", + "covr", + "gh", + "reticulate", + "rmarkdown", + "testthat (>= 3.2.0)", + "withr" + ], + "Config/Needs/website": "pkgdown, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [cre], Hadley Wickham [aut], Winston Chang [aut], Robert Flight [aut], Kirill Müller [aut], Jim Hester [aut], R Core team [ctb], Posit Software, PBC [cph, fnd]", + "Repository": "CRAN" + }, + "shape": { + "Package": "shape", + "Version": "1.4.6.1", + "Source": "Repository", + "Title": "Functions for Plotting Graphical Shapes, Colors", + "Author": "Karline Soetaert ", + "Maintainer": "Karline Soetaert ", + "Depends": [ + "R (>= 2.01)" + ], + "Imports": [ + "stats", + "graphics", + "grDevices" + ], + "Description": "Functions for plotting graphical shapes such as ellipses, circles, cylinders, arrows, ...", + "License": "GPL (>= 3)", + "NeedsCompilation": "no", + "Repository": "CRAN", + "Encoding": "UTF-8" + }, + "shiny": { + "Package": "shiny", + "Version": "1.13.0", + "Source": "Repository", + "Type": "Package", + "Title": "Web Application Framework for R", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"JJ\", \"Allaire\", , \"jj@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Garrick\", \"Aden-Buie\", , \"garrick@adenbuie.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Yihui\", \"Xie\", , \"yihui@posit.co\", role = \"aut\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", , \"jonathan@posit.co\", role = \"aut\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(, \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(, \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(, \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Prem Nawaz\", \"Khan\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Victor\", \"Tsaran\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Dennis\", \"Lembree\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Cathy\", \"O'Connor\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(, \"PayPal, Inc\", role = \"cph\", comment = \"Bootstrap accessibility plugin\"), person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"), comment = \"selectize-plugin-a11y library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\"), person(, \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(\"R Core Team\", role = c(\"ctb\", \"cph\"), comment = \"tar implementation from R\") )", + "Description": "Makes it incredibly easy to build interactive web applications with R. Automatic \"reactive\" binding between inputs and outputs and extensive prebuilt widgets make it possible to build beautiful, responsive, and powerful applications with minimal effort.", + "License": "MIT + file LICENSE", + "URL": "https://shiny.posit.co/, https://github.com/rstudio/shiny", + "BugReports": "https://github.com/rstudio/shiny/issues", + "Depends": [ + "methods", + "R (>= 3.1.2)" + ], + "Imports": [ + "bslib (>= 0.6.0)", + "cachem (>= 1.1.0)", + "cli", + "commonmark (>= 2.0.0)", + "fastmap (>= 1.1.1)", + "fontawesome (>= 0.4.0)", + "glue (>= 1.3.2)", + "grDevices", + "htmltools (>= 0.5.4)", + "httpuv (>= 1.5.2)", + "jsonlite (>= 0.9.16)", + "later (>= 1.0.0)", + "lifecycle (>= 0.2.0)", + "mime (>= 0.3)", + "otel", + "promises (>= 1.5.0)", + "R6 (>= 2.0)", + "rlang (>= 0.4.10)", + "sourcetools", + "tools", + "utils", + "withr", + "xtable" + ], + "Suggests": [ + "Cairo (>= 1.5-5)", + "coro (>= 1.1.0)", + "datasets", + "DT", + "dygraphs", + "future", + "ggplot2", + "knitr (>= 1.6)", + "magrittr", + "markdown", + "mirai", + "otelsdk (>= 0.2.0)", + "ragg", + "reactlog (>= 1.0.0)", + "rmarkdown", + "sass", + "showtext", + "testthat (>= 3.2.1)", + "watcher", + "yaml" + ], + "Config/Needs/check": "shinytest2", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "Collate": "'globals.R' 'app-state.R' 'app_template.R' 'bind-cache.R' 'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R' 'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R' 'map.R' 'utils.R' 'bootstrap.R' 'busy-indicators-spinners.R' 'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R' 'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R' 'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.R' 'image-interact-opts.R' 'image-interact.R' 'imageutils.R' 'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R' 'input-file.R' 'input-numeric.R' 'input-password.R' 'input-radiobuttons.R' 'input-select.R' 'input-slider.R' 'input-submit.R' 'input-text.R' 'input-textarea.R' 'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R' 'mock-session.R' 'modal.R' 'modules.R' 'notifications.R' 'otel-attr-srcref.R' 'otel-collect.R' 'otel-enable.R' 'otel-error.R' 'otel-label.R' 'otel-reactive-update.R' 'otel-session.R' 'otel-shiny.R' 'otel-with.R' 'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R' 'render-cached-plot.R' 'render-plot.R' 'render-table.R' 'run-url.R' 'runapp.R' 'serializers.R' 'server-input-handlers.R' 'server-resource-paths.R' 'server.R' 'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R' 'shinywrappers.R' 'showcase.R' 'snapshot.R' 'staticimports.R' 'tar.R' 'test-export.R' 'test-server.R' 'test.R' 'update-input.R' 'utils-lang.R' 'utils-tags.R' 'version_bs_date_picker.R' 'version_ion_range_slider.R' 'version_jquery.R' 'version_jqueryui.R' 'version_selectize.R' 'version_strftime.R' 'viewer.R'", + "NeedsCompilation": "no", + "Author": "Winston Chang [aut] (ORCID: ), Joe Cheng [aut], JJ Allaire [aut], Carson Sievert [aut, cre] (ORCID: ), Barret Schloerke [aut] (ORCID: ), Garrick Aden-Buie [aut] (ORCID: ), Yihui Xie [aut], Jeff Allen [aut], Jonathan McPherson [aut], Alan Dipert [aut], Barbara Borges [aut], Posit Software, PBC [cph, fnd] (ROR: ), jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin), Victor Tsaran [ctb] (Bootstrap accessibility plugin), Dennis Lembree [ctb] (Bootstrap accessibility plugin), Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin), Cathy O'Connor [ctb] (Bootstrap accessibility plugin), PayPal, Inc [cph] (Bootstrap accessibility plugin), Stefan Petre [ctb, cph] (Bootstrap-datepicker library), Andrew Rowls [ctb, cph] (Bootstrap-datepicker library), Brian Reavis [ctb, cph] (selectize.js library), Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library), SpryMedia Limited [ctb, cph] (DataTables library), Ivan Sagalaev [ctb, cph] (highlight.js library), R Core Team [ctb, cph] (tar implementation from R)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "sjlabelled": { + "Package": "sjlabelled", + "Version": "1.2.0", + "Source": "Repository", + "Type": "Package", + "Encoding": "UTF-8", + "Title": "Labelled Data Utility Functions", + "Authors@R": "c( person(\"Daniel\", \"Lüdecke\", role = c(\"aut\", \"cre\"), email = \"d.luedecke@uke.de\", comment = c(ORCID = \"0000-0002-8895-3206\")), person(\"avid\", \"Ranzolin\", role = \"ctb\", email = \"daranzolin@gmail.com\"), person(\"Jonathan\", \"De Troye\", role = \"ctb\", email = \"detroyejr@outlook.com\") )", + "Maintainer": "Daniel Lüdecke ", + "Description": "Collection of functions dealing with labelled data, like reading and writing data between R and other statistical software packages like 'SPSS', 'SAS' or 'Stata', and working with labelled data. This includes easy ways to get, set or change value and variable label attributes, to convert labelled vectors into factors or numeric (and vice versa), or to deal with multiple declared missing values.", + "License": "GPL-3", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "insight", + "datawizard", + "stats", + "tools", + "utils" + ], + "Suggests": [ + "dplyr", + "haven (>= 1.1.2)", + "magrittr", + "sjmisc", + "sjPlot", + "knitr", + "rlang", + "rmarkdown", + "snakecase", + "testthat" + ], + "URL": "https://strengejacke.github.io/sjlabelled/", + "BugReports": "https://github.com/strengejacke/sjlabelled/issues", + "RoxygenNote": "7.1.2", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Author": "Daniel Lüdecke [aut, cre] (), avid Ranzolin [ctb], Jonathan De Troye [ctb]", + "Repository": "RSPM" + }, + "sourcetools": { + "Package": "sourcetools", + "Version": "0.1.7-1", + "Source": "Repository", + "Type": "Package", + "Title": "Tools for Reading, Tokenizing and Parsing R Code", + "Author": "Kevin Ushey", + "Maintainer": "Kevin Ushey ", + "Description": "Tools for the reading and tokenization of R code. The 'sourcetools' package provides both an R and C++ interface for the tokenization of R code, and helpers for interacting with the tokenized representation of R code.", + "License": "MIT + file LICENSE", + "Depends": [ + "R (>= 3.0.2)" + ], + "Suggests": [ + "testthat" + ], + "RoxygenNote": "5.0.1", + "BugReports": "https://github.com/kevinushey/sourcetools/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "splines2": { + "Package": "splines2", + "Version": "0.5.4", + "Source": "Repository", + "Title": "Regression Spline Functions and Classes", + "Authors@R": "c( person(given = \"Wenjie\", family = \"Wang\", email = \"wang@wwenjie.org\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0363-3180\")), person(given = \"Jun\", family = \"Yan\", role = \"aut\", comment = c(ORCID = \"0000-0003-4401-7296\")) )", + "Description": "Constructs basis functions of B-splines, M-splines, I-splines, convex splines (C-splines), periodic splines, natural cubic splines, generalized Bernstein polynomials, their derivatives, and integrals (except C-splines) by closed-form recursive formulas. It also contains a C++ head-only library integrated with Rcpp. See Wang and Yan (2021) for details.", + "Imports": [ + "stats", + "graphics", + "Rcpp" + ], + "LinkingTo": [ + "Rcpp", + "RcppArmadillo" + ], + "Suggests": [ + "knitr", + "rmarkdown", + "tinytest", + "RcppArmadillo" + ], + "Depends": [ + "R (>= 3.2.3)" + ], + "VignetteBuilder": "knitr", + "License": "GPL (>= 3)", + "URL": "https://wwenjie.org/splines2, https://github.com/wenjie2wang/splines2", + "BugReports": "https://github.com/wenjie2wang/splines2/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Wenjie Wang [aut, cre] (), Jun Yan [aut] ()", + "Maintainer": "Wenjie Wang ", + "Repository": "CRAN" + }, + "stringi": { + "Package": "stringi", + "Version": "1.8.7", + "Source": "Repository", + "Date": "2025-03-27", + "Title": "Fast and Portable Character String Processing Facilities", + "Description": "A collection of character string/text/natural language processing tools for pattern searching (e.g., with 'Java'-like regular expressions or the 'Unicode' collation algorithm), random string generation, case mapping, string transliteration, concatenation, sorting, padding, wrapping, Unicode normalisation, date-time formatting and parsing, and many more. They are fast, consistent, convenient, and - thanks to 'ICU' (International Components for Unicode) - portable across all locales and platforms. Documentation about 'stringi' is provided via its website at and the paper by Gagolewski (2022, ).", + "URL": "https://stringi.gagolewski.com/, https://github.com/gagolews/stringi, https://icu.unicode.org/", + "BugReports": "https://github.com/gagolews/stringi/issues", + "SystemRequirements": "ICU4C (>= 61, optional)", + "Type": "Package", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "tools", + "utils", + "stats" + ], + "Biarch": "TRUE", + "License": "file LICENSE", + "Authors@R": "c(person(given = \"Marek\", family = \"Gagolewski\", role = c(\"aut\", \"cre\", \"cph\"), email = \"marek@gagolewski.com\", comment = c(ORCID = \"0000-0003-0637-6028\")), person(given = \"Bartek\", family = \"Tartanus\", role = \"ctb\"), person(\"Unicode, Inc. and others\", role=\"ctb\", comment = \"ICU4C source code, Unicode Character Database\") )", + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Marek Gagolewski [aut, cre, cph] (), Bartek Tartanus [ctb], Unicode, Inc. and others [ctb] (ICU4C source code, Unicode Character Database)", + "Maintainer": "Marek Gagolewski ", + "License_is_FOSS": "yes", + "Repository": "CRAN" + }, + "stringr": { + "Package": "stringr", + "Version": "1.6.0", + "Source": "Repository", + "Title": "Simple, Consistent Wrappers for Common String Operations", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A consistent, simple and easy to use set of wrappers around the fantastic 'stringi' package. All function and argument names (and positions) are consistent, all functions deal with \"NA\"'s and zero length vectors in the same way, and the output from one function is easy to feed into the input of another.", + "License": "MIT + file LICENSE", + "URL": "https://stringr.tidyverse.org, https://github.com/tidyverse/stringr", + "BugReports": "https://github.com/tidyverse/stringr/issues", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "cli", + "glue (>= 1.6.1)", + "lifecycle (>= 1.0.3)", + "magrittr", + "rlang (>= 1.0.0)", + "stringi (>= 1.5.3)", + "vctrs (>= 0.4.0)" + ], + "Suggests": [ + "covr", + "dplyr", + "gt", + "htmltools", + "htmlwidgets", + "knitr", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/potools/style": "explicit", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre, cph], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "survival": { + "Package": "survival", + "Version": "3.7-0", + "Source": "Repository", + "Title": "Survival Analysis", + "Priority": "recommended", + "Date": "2024-06-01", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "graphics", + "Matrix", + "methods", + "splines", + "stats", + "utils" + ], + "LazyData": "Yes", + "LazyDataCompression": "xz", + "ByteCompile": "Yes", + "Authors@R": "c(person(c(\"Terry\", \"M\"), \"Therneau\", email=\"therneau.terry@mayo.edu\", role=c(\"aut\", \"cre\")), person(\"Thomas\", \"Lumley\", role=c(\"ctb\", \"trl\"), comment=\"original S->R port and R maintainer until 2009\"), person(\"Atkinson\", \"Elizabeth\", role=\"ctb\"), person(\"Crowson\", \"Cynthia\", role=\"ctb\"))", + "Description": "Contains the core survival analysis routines, including definition of Surv objects, Kaplan-Meier and Aalen-Johansen (multi-state) curves, Cox models, and parametric accelerated failure time models.", + "License": "LGPL (>= 2)", + "URL": "https://github.com/therneau/survival", + "NeedsCompilation": "yes", + "Author": "Terry M Therneau [aut, cre], Thomas Lumley [ctb, trl] (original S->R port and R maintainer until 2009), Atkinson Elizabeth [ctb], Crowson Cynthia [ctb]", + "Maintainer": "Terry M Therneau ", + "Repository": "CRAN" + }, + "sys": { + "Package": "sys", + "Version": "3.4.3", + "Source": "Repository", + "Type": "Package", + "Title": "Powerful and Reliable Tools for Running System Commands in R", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"ctb\"))", + "Description": "Drop-in replacements for the base system2() function with fine control and consistent behavior across platforms. Supports clean interruption, timeout, background tasks, and streaming STDIN / STDOUT / STDERR over binary or text connections. Arguments on Windows automatically get encoded and quoted to work on different locales.", + "License": "MIT + file LICENSE", + "URL": "https://jeroen.r-universe.dev/sys", + "BugReports": "https://github.com/jeroen/sys/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "Suggests": [ + "unix (>= 1.4)", + "spelling", + "testthat" + ], + "Language": "en-US", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (), Gábor Csárdi [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "systemfonts": { + "Package": "systemfonts", + "Version": "1.3.2", + "Source": "Repository", + "Type": "Package", + "Title": "System Native Font Finding", + "Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Jeroen\", \"Ooms\", , \"jeroen@berkeley.edu\", role = \"aut\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Devon\", \"Govett\", role = \"aut\", comment = \"Author of font-manager\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides system native access to the font catalogue. As font handling varies between systems it is difficult to correctly locate installed fonts across different operating systems. The 'systemfonts' package provides bindings to the native libraries on Windows, macOS and Linux for finding font files that can then be used further by e.g. graphic devices. The main use is intended to be from compiled code but 'systemfonts' also provides access from R.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/systemfonts, https://systemfonts.r-lib.org", + "BugReports": "https://github.com/r-lib/systemfonts/issues", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "base64enc", + "grid", + "jsonlite", + "lifecycle", + "tools", + "utils" + ], + "Suggests": [ + "covr", + "farver", + "ggplot2", + "graphics", + "knitr", + "ragg", + "rmarkdown", + "svglite", + "testthat (>= 2.1.0)" + ], + "LinkingTo": [ + "cpp11 (>= 0.2.1)" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/usethis/last-upkeep": "2025-04-23", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "fontconfig, freetype2", + "NeedsCompilation": "yes", + "Author": "Thomas Lin Pedersen [aut, cre] (ORCID: ), Jeroen Ooms [aut] (ORCID: ), Devon Govett [aut] (Author of font-manager), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "tarchetypes": { + "Package": "tarchetypes", + "Version": "0.14.0", + "Source": "Repository", + "Title": "Archetypes for Targets", + "Description": "Function-oriented Make-like declarative pipelines for Statistics and data science are supported in the 'targets' R package. As an extension to 'targets', the 'tarchetypes' package provides convenient user-side functions to make 'targets' easier to use. By establishing reusable archetypes for common kinds of targets and pipelines, these functions help express complicated reproducible pipelines concisely and compactly. The methods in this package were influenced by the 'targets' R package. by Will Landau (2018) .", + "License": "MIT + file LICENSE", + "URL": "https://docs.ropensci.org/tarchetypes/, https://github.com/ropensci/tarchetypes", + "BugReports": "https://github.com/ropensci/tarchetypes/issues", + "Authors@R": "c( person( given = c(\"William\", \"Michael\"), family = \"Landau\", role = c(\"aut\", \"cre\"), email = \"will.landau.oss@gmail.com\", comment = c(ORCID = \"0000-0003-1878-3253\") ), person( given = \"Rudolf\", family = \"Siegel\", role = \"ctb\", comment = c(ORCID = \"0000-0002-6021-804X\") ), person( given = \"Samantha\", family = \"Oliver\", role = \"rev\", comment = c(ORCID = \"0000-0001-5668-1165\") ), person( given = \"Tristan\", family = \"Mahr\", role = \"rev\", comment = c(ORCID = \"0000-0002-8890-5116\") ), person( family = \"Eli Lilly and Company\", role = c(\"cph\", \"fnd\") ))", + "Depends": [ + "R (>= 4.1.0)" + ], + "Imports": [ + "dplyr (>= 1.0.0)", + "fs (>= 1.4.2)", + "parallel", + "rlang (>= 0.4.7)", + "secretbase (>= 0.4.0)", + "targets (>= 1.6.0)", + "tibble (>= 3.0.1)", + "tidyselect (>= 1.1.0)", + "utils", + "vctrs (>= 0.3.4)", + "withr (>= 2.1.2)" + ], + "Suggests": [ + "curl (>= 4.3)", + "knitr (>= 1.28)", + "nanoparquet", + "parsermd", + "quarto (>= 1.4)", + "rmarkdown (>= 2.1)", + "testthat (>= 3.0.0)", + "xml2 (>= 1.3.2)" + ], + "Encoding": "UTF-8", + "Language": "en-US", + "Config/testthat/edition": "3", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "William Michael Landau [aut, cre] (ORCID: ), Rudolf Siegel [ctb] (ORCID: ), Samantha Oliver [rev] (ORCID: ), Tristan Mahr [rev] (ORCID: ), Eli Lilly and Company [cph, fnd]", + "Maintainer": "William Michael Landau ", + "Repository": "CRAN" + }, + "targets": { + "Package": "targets", + "Version": "1.12.0", + "Source": "Repository", + "Title": "Dynamic Function-Oriented 'Make'-Like Declarative Pipelines", + "Description": "Pipeline tools coordinate the pieces of computationally demanding analysis projects. The 'targets' package is a 'Make'-like pipeline tool for statistics and data science in R. The package skips costly runtime for tasks that are already up to date, orchestrates the necessary computation with implicit parallel computing, and abstracts files as R objects. If all the current output matches the current upstream code and data, then the whole pipeline is up to date, and the results are more trustworthy than otherwise. The methodology in this package borrows from GNU 'Make' (2015, ISBN:978-9881443519) and 'drake' (2018, ).", + "License": "MIT + file LICENSE", + "URL": "https://docs.ropensci.org/targets/, https://github.com/ropensci/targets", + "BugReports": "https://github.com/ropensci/targets/issues", + "Authors@R": "c( person( given = c(\"William\", \"Michael\"), family = \"Landau\", role = c(\"aut\", \"cre\"), email = \"will.landau.oss@gmail.com\", comment = c(ORCID = \"0000-0003-1878-3253\") ), person( given = c(\"Matthew\", \"T.\"), family = \"Warkentin\", role = \"ctb\" ), person( given = \"Mark\", family = \"Edmondson\", email = \"r@sunholo.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8434-3881\") ), person( given = \"Samantha\", family = \"Oliver\", role = \"rev\", comment = c(ORCID = \"0000-0001-5668-1165\") ), person( given = \"Tristan\", family = \"Mahr\", role = \"rev\", comment = c(ORCID = \"0000-0002-8890-5116\") ), person( family = \"Eli Lilly and Company\", role = c(\"cph\", \"fnd\") ))", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "base64url (>= 1.4)", + "callr (>= 3.7.0)", + "cli (>= 2.0.2)", + "codetools (>= 0.2.16)", + "data.table (>= 1.16.0)", + "igraph (>= 2.0.0)", + "knitr (>= 1.34)", + "prettyunits (>= 1.1.0)", + "ps (>= 1.8.0)", + "R6 (>= 2.4.1)", + "rlang (>= 1.0.0)", + "secretbase (>= 0.5.0)", + "stats", + "tibble (>= 3.0.1)", + "tidyselect (>= 1.1.0)", + "tools", + "utils", + "vctrs (>= 0.2.4)", + "yaml (>= 2.2.1)" + ], + "Suggests": [ + "autometric (>= 0.1.0)", + "bslib", + "clustermq (>= 0.9.2)", + "crew (>= 0.9.0)", + "curl (>= 4.3)", + "DT (>= 0.14)", + "dplyr (>= 1.0.0)", + "fst (>= 0.9.2)", + "future (>= 1.19.1)", + "future.batchtools (>= 0.9.0)", + "future.callr (>= 0.6.0)", + "gargle (>= 1.2.0)", + "googleCloudStorageR (>= 0.7.0)", + "gt (>= 0.2.2)", + "keras (>= 2.2.5.0)", + "markdown (>= 1.1)", + "nanonext (>= 0.12.0)", + "rmarkdown (>= 2.4)", + "parallelly (>= 1.35.0)", + "paws.common (>= 0.6.4)", + "paws.storage (>= 0.4.0)", + "pkgload (>= 1.1.0)", + "processx (>= 3.4.3)", + "qs2", + "reprex (>= 2.0.0)", + "rstudioapi (>= 0.11)", + "R.utils (>= 2.6.0)", + "shiny (>= 1.5.0)", + "shinybusy (>= 0.2.2)", + "shinyWidgets (>= 0.5.4)", + "tarchetypes", + "testthat (>= 3.0.0)", + "torch (>= 0.1.0)", + "usethis (>= 1.6.3)", + "visNetwork (>= 2.1.2)" + ], + "Encoding": "UTF-8", + "Language": "en-US", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "William Michael Landau [aut, cre] (ORCID: ), Matthew T. Warkentin [ctb], Mark Edmondson [ctb] (ORCID: ), Samantha Oliver [rev] (ORCID: ), Tristan Mahr [rev] (ORCID: ), Eli Lilly and Company [cph, fnd]", + "Maintainer": "William Michael Landau ", + "Repository": "CRAN" + }, + "testthat": { + "Package": "testthat", + "Version": "3.2.3", + "Source": "Repository", + "Title": "Unit Testing for R", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Implementation of utils::recover()\") )", + "Description": "Software testing is important, but, in part because it is frustrating and boring, many of us avoid it. 'testthat' is a testing framework for R that is easy to learn and use, and integrates with your existing 'workflow'.", + "License": "MIT + file LICENSE", + "URL": "https://testthat.r-lib.org, https://github.com/r-lib/testthat", + "BugReports": "https://github.com/r-lib/testthat/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "brio (>= 1.1.3)", + "callr (>= 3.7.3)", + "cli (>= 3.6.1)", + "desc (>= 1.4.2)", + "digest (>= 0.6.33)", + "evaluate (>= 1.0.1)", + "jsonlite (>= 1.8.7)", + "lifecycle (>= 1.0.3)", + "magrittr (>= 2.0.3)", + "methods", + "pkgload (>= 1.3.2.1)", + "praise (>= 1.0.0)", + "processx (>= 3.8.2)", + "ps (>= 1.7.5)", + "R6 (>= 2.5.1)", + "rlang (>= 1.1.1)", + "utils", + "waldo (>= 0.6.0)", + "withr (>= 3.0.2)" + ], + "Suggests": [ + "covr", + "curl (>= 0.9.5)", + "diffviewer (>= 0.1.0)", + "knitr", + "rmarkdown", + "rstudioapi", + "S7", + "shiny", + "usethis", + "vctrs (>= 0.1.0)", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "watcher, parallel*", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Implementation of utils::recover())", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "textshaping": { + "Package": "textshaping", + "Version": "1.0.5", + "Source": "Repository", + "Title": "Bindings to the 'HarfBuzz' and 'Fribidi' Libraries for Text Shaping", + "Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Provides access to the text shaping functionality in the 'HarfBuzz' library and the bidirectional algorithm in the 'Fribidi' library. 'textshaping' is a low-level utility package mainly for graphic devices that expands upon the font tool-set provided by the 'systemfonts' package.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/textshaping", + "BugReports": "https://github.com/r-lib/textshaping/issues", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "lifecycle", + "stats", + "stringi", + "systemfonts (>= 1.3.0)", + "utils" + ], + "Suggests": [ + "covr", + "grDevices", + "grid", + "knitr", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "cpp11 (>= 0.2.1)", + "systemfonts (>= 1.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "freetype2, harfbuzz, fribidi", + "NeedsCompilation": "yes", + "Author": "Thomas Lin Pedersen [cre, aut] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "tibble": { + "Package": "tibble", + "Version": "3.2.1", + "Source": "Repository", + "Title": "Simple Data Frames", + "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Romain\", family = \"Francois\", role = \"ctb\", email = \"romain@r-enthusiasts.com\"), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\"), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")))", + "Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.", + "License": "MIT + file LICENSE", + "URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble", + "BugReports": "https://github.com/tidyverse/tibble/issues", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "fansi (>= 0.4.0)", + "lifecycle (>= 1.0.0)", + "magrittr", + "methods", + "pillar (>= 1.8.1)", + "pkgconfig", + "rlang (>= 1.0.2)", + "utils", + "vctrs (>= 0.4.2)" + ], + "Suggests": [ + "bench", + "bit64", + "blob", + "brio", + "callr", + "cli", + "covr", + "crayon (>= 1.3.4)", + "DiagrammeR", + "dplyr", + "evaluate", + "formattable", + "ggplot2", + "here", + "hms", + "htmltools", + "knitr", + "lubridate", + "mockr", + "nycflights13", + "pkgbuild", + "pkgload", + "purrr", + "rmarkdown", + "stringi", + "testthat (>= 3.0.2)", + "tidyr", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/autostyle/rmd": "false", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Author": "Kirill Müller [aut, cre] (), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "tidyr": { + "Package": "tidyr", + "Version": "1.3.1", + "Source": "Repository", + "Title": "Tidy Messy Data", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Maximilian\", \"Girlich\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to help to create tidy data, where each column is a variable, each row is an observation, and each cell contains a single value. 'tidyr' contains tools for changing the shape (pivoting) and hierarchy (nesting and 'unnesting') of a dataset, turning deeply nested lists into rectangular data frames ('rectangling'), and extracting values out of string columns. It also includes tools for working with missing values (both implicit and explicit).", + "License": "MIT + file LICENSE", + "URL": "https://tidyr.tidyverse.org, https://github.com/tidyverse/tidyr", + "BugReports": "https://github.com/tidyverse/tidyr/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli (>= 3.4.1)", + "dplyr (>= 1.0.10)", + "glue", + "lifecycle (>= 1.0.3)", + "magrittr", + "purrr (>= 1.0.1)", + "rlang (>= 1.1.1)", + "stringr (>= 1.5.0)", + "tibble (>= 2.1.1)", + "tidyselect (>= 1.2.0)", + "utils", + "vctrs (>= 0.5.2)" + ], + "Suggests": [ + "covr", + "data.table", + "knitr", + "readr", + "repurrrsive (>= 1.1.0)", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "cpp11 (>= 0.4.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.0", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Davis Vaughan [aut], Maximilian Girlich [aut], Kevin Ushey [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "tidyselect": { + "Package": "tidyselect", + "Version": "1.2.1", + "Source": "Repository", + "Title": "Select from a Set of Strings", + "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your own packages in a way that is consistent with other 'tidyverse' interfaces for selection.", + "License": "MIT + file LICENSE", + "URL": "https://tidyselect.r-lib.org, https://github.com/r-lib/tidyselect", + "BugReports": "https://github.com/r-lib/tidyselect/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli (>= 3.3.0)", + "glue (>= 1.3.0)", + "lifecycle (>= 1.0.3)", + "rlang (>= 1.0.4)", + "vctrs (>= 0.5.2)", + "withr" + ], + "Suggests": [ + "covr", + "crayon", + "dplyr", + "knitr", + "magrittr", + "rmarkdown", + "stringr", + "testthat (>= 3.1.1)", + "tibble (>= 2.1.3)" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.0.9000", + "NeedsCompilation": "yes", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "tinytex": { + "Package": "tinytex", + "Version": "0.56", + "Source": "Repository", + "Type": "Package", + "Title": "Helper Functions to Install and Maintain TeX Live, and Compile LaTeX Documents", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Devon\", \"Ryan\", role = \"ctb\", email = \"dpryan79@gmail.com\", comment = c(ORCID = \"0000-0002-8549-0971\")), person(\"Ethan\", \"Heinzen\", role = \"ctb\"), person(\"Fernando\", \"Cagua\", role = \"ctb\"), person() )", + "Description": "Helper functions to install and maintain the 'LaTeX' distribution named 'TinyTeX' (), a lightweight, cross-platform, portable, and easy-to-maintain version of 'TeX Live'. This package also contains helper functions to compile 'LaTeX' documents, and install missing 'LaTeX' packages automatically.", + "Imports": [ + "xfun (>= 0.48)" + ], + "Suggests": [ + "testit", + "rstudioapi" + ], + "License": "MIT + file LICENSE", + "URL": "https://github.com/rstudio/tinytex", + "BugReports": "https://github.com/rstudio/tinytex/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre, cph] (), Posit Software, PBC [cph, fnd], Christophe Dervieux [ctb] (), Devon Ryan [ctb] (), Ethan Heinzen [ctb], Fernando Cagua [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "tzdb": { + "Package": "tzdb", + "Version": "0.4.0", + "Source": "Repository", + "Title": "Time Zone Database Information", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Howard\", \"Hinnant\", role = \"cph\", comment = \"Author of the included date library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides an up-to-date copy of the Internet Assigned Numbers Authority (IANA) Time Zone Database. It is updated periodically to reflect changes made by political bodies to time zone boundaries, UTC offsets, and daylight saving time rules. Additionally, this package provides a C++ interface for working with the 'date' library. 'date' provides comprehensive support for working with dates and date-times, which this package exposes to make it easier for other R packages to utilize. Headers are provided for calendar specific calculations, along with a limited interface for time zone manipulations.", + "License": "MIT + file LICENSE", + "URL": "https://tzdb.r-lib.org, https://github.com/r-lib/tzdb", + "BugReports": "https://github.com/r-lib/tzdb/issues", + "Depends": [ + "R (>= 3.5.0)" + ], + "Suggests": [ + "covr", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "cpp11 (>= 0.4.2)" + ], + "Biarch": "yes", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Davis Vaughan [aut, cre], Howard Hinnant [cph] (Author of the included date library), Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "ucminf": { + "Package": "ucminf", + "Version": "1.2.2", + "Source": "Repository", + "Title": "General-Purpose Unconstrained Non-Linear Optimization", + "Authors@R": "c( person(\"K Hervé\", \"Dakpo\", email = \"k-herve.dakpo@inrae.fr\", role = c(\"ctb\", \"cre\")), person(\"Hans Bruun\", \"Nielsen\", role = \"aut\"), person(\"Stig Bousgaard\", \"Mortensen\", role = \"aut\") )", + "Description": "An algorithm for general-purpose unconstrained non-linear optimization. The algorithm is of quasi-Newton type with BFGS updating of the inverse Hessian and soft line search with a trust region type monitoring of the input to the line search algorithm. The interface of 'ucminf' is designed for easy interchange with 'optim'.", + "License": "GPL (>= 2)", + "URL": "https://github.com/hdakpo/ucminf", + "BugReports": "https://github.com/hdakpo/ucminf/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Depends": [ + "R (>= 3.5.0)" + ], + "Suggests": [ + "numDeriv" + ], + "NeedsCompilation": "yes", + "Author": "K Hervé Dakpo [ctb, cre], Hans Bruun Nielsen [aut], Stig Bousgaard Mortensen [aut]", + "Maintainer": "K Hervé Dakpo ", + "Repository": "RSPM" + }, + "urlchecker": { + "Package": "urlchecker", + "Version": "1.0.1", + "Source": "Repository", + "Title": "Run CRAN URL Checks from Older R Versions", + "Authors@R": "c( person(\"R Core team\", role = \"aut\", comment = \"The code in urltools.R adapted from the tools package\"), person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provide the URL checking tools available in R 4.1+ as a package for earlier versions of R. Also uses concurrent requests so can be much faster than the serial versions.", + "License": "GPL-3", + "URL": "https://github.com/r-lib/urlchecker", + "BugReports": "https://github.com/r-lib/urlchecker/issues", + "Depends": [ + "R (>= 3.3)" + ], + "Imports": [ + "cli", + "curl", + "tools", + "xml2" + ], + "Suggests": [ + "covr" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "no", + "Author": "R Core team [aut] (The code in urltools.R adapted from the tools package), Jim Hester [aut] (), Gábor Csárdi [aut, cre], RStudio [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "usethis": { + "Package": "usethis", + "Version": "3.2.1", + "Source": "Repository", + "Title": "Automate Package and Project Setup", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Malcolm\", \"Barrett\", , \"malcolmbarrett@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"Andy\", \"Teucher\", , \"andy.teucher@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7840-692X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Automate package and project setup tasks that are otherwise performed manually. This includes setting up unit testing, test coverage, continuous integration, Git, 'GitHub', licenses, 'Rcpp', 'RStudio' projects, and more.", + "License": "MIT + file LICENSE", + "URL": "https://usethis.r-lib.org, https://github.com/r-lib/usethis", + "BugReports": "https://github.com/r-lib/usethis/issues", + "Depends": [ + "R (>= 4.1)" + ], + "Imports": [ + "cli (>= 3.0.1)", + "clipr (>= 0.3.0)", + "crayon", + "curl (>= 2.7)", + "desc (>= 1.4.2)", + "fs (>= 1.3.0)", + "gert (>= 1.4.1)", + "gh (>= 1.2.1)", + "glue (>= 1.3.0)", + "jsonlite", + "lifecycle (>= 1.0.0)", + "purrr", + "rappdirs", + "rlang (>= 1.1.0)", + "rprojroot (>= 2.1.1)", + "rstudioapi", + "stats", + "tools", + "utils", + "whisker", + "withr (>= 2.3.0)", + "yaml" + ], + "Suggests": [ + "covr", + "knitr", + "magick", + "pkgload (>= 1.3.2.1)", + "quarto (>= 1.5.1)", + "rmarkdown", + "roxygen2 (>= 7.1.2)", + "spelling (>= 1.2)", + "testthat (>= 3.1.8)" + ], + "Config/Needs/website": "r-lib/asciicast, tidyverse/tidytemplate, xml2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Config/testthat/start-first": "github-actions, release", + "Config/usethis/last-upkeep": "2025-04-22", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut] (ORCID: ), Jennifer Bryan [aut, cre] (ORCID: ), Malcolm Barrett [aut] (ORCID: ), Andy Teucher [aut] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "utf8": { + "Package": "utf8", + "Version": "1.2.4", + "Source": "Repository", + "Title": "Unicode Text Processing", + "Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"kirill@cynkra.com\"), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))", + "Description": "Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display.", + "License": "Apache License (== 2.0) | file LICENSE", + "URL": "https://ptrckprry.com/r-utf8/, https://github.com/patperry/r-utf8", + "BugReports": "https://github.com/patperry/r-utf8/issues", + "Depends": [ + "R (>= 2.10)" + ], + "Suggests": [ + "cli", + "covr", + "knitr", + "rlang", + "rmarkdown", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr, rmarkdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre], Unicode, Inc. [cph, dtc] (Unicode Character Database)", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "uuid": { + "Package": "uuid", + "Version": "1.2-1", + "Source": "Repository", + "Title": "Tools for Generating and Handling of UUIDs", + "Author": "Simon Urbanek [aut, cre, cph] (https://urbanek.org, ), Theodore Ts'o [aut, cph] (libuuid)", + "Maintainer": "Simon Urbanek ", + "Authors@R": "c(person(\"Simon\", \"Urbanek\", role=c(\"aut\",\"cre\",\"cph\"), email=\"Simon.Urbanek@r-project.org\", comment=c(\"https://urbanek.org\", ORCID=\"0000-0003-2297-1732\")), person(\"Theodore\",\"Ts'o\", email=\"tytso@thunk.org\", role=c(\"aut\",\"cph\"), comment=\"libuuid\"))", + "Depends": [ + "R (>= 2.9.0)" + ], + "Description": "Tools for generating and handling of UUIDs (Universally Unique Identifiers).", + "License": "MIT + file LICENSE", + "URL": "https://www.rforge.net/uuid", + "BugReports": "https://github.com/s-u/uuid/issues", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.6.5", + "Source": "Repository", + "Title": "Vector Helpers", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"data.table team\", role = \"cph\", comment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Defines new notions of prototype and size that are used to provide tools for consistent and well-founded type-coercion and size-recycling, and are in turn connected to ideas of type- and size-stability useful for analysing function interfaces.", + "License": "MIT + file LICENSE", + "URL": "https://vctrs.r-lib.org/, https://github.com/r-lib/vctrs", + "BugReports": "https://github.com/r-lib/vctrs/issues", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "glue", + "lifecycle (>= 1.0.3)", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "bit64", + "covr", + "crayon", + "dplyr (>= 0.8.5)", + "generics", + "knitr", + "pillar (>= 1.4.4)", + "pkgdown (>= 2.0.1)", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble (>= 3.1.3)", + "waldo (>= 0.2.0)", + "withr", + "xml2", + "zeallot" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-GB", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Lionel Henry [aut], Davis Vaughan [aut, cre], data.table team [cph] (Radix sort based on data.table's forder() and their contribution to R's order()), Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "viridisLite": { + "Package": "viridisLite", + "Version": "0.4.2", + "Source": "Repository", + "Type": "Package", + "Title": "Colorblind-Friendly Color Maps (Lite Version)", + "Date": "2023-05-02", + "Authors@R": "c( person(\"Simon\", \"Garnier\", email = \"garnier@njit.edu\", role = c(\"aut\", \"cre\")), person(\"Noam\", \"Ross\", email = \"noam.ross@gmail.com\", role = c(\"ctb\", \"cph\")), person(\"Bob\", \"Rudis\", email = \"bob@rud.is\", role = c(\"ctb\", \"cph\")), person(\"Marco\", \"Sciaini\", email = \"sciaini.marco@gmail.com\", role = c(\"ctb\", \"cph\")), person(\"Antônio Pedro\", \"Camargo\", role = c(\"ctb\", \"cph\")), person(\"Cédric\", \"Scherer\", email = \"scherer@izw-berlin.de\", role = c(\"ctb\", \"cph\")) )", + "Maintainer": "Simon Garnier ", + "Description": "Color maps designed to improve graph readability for readers with common forms of color blindness and/or color vision deficiency. The color maps are also perceptually-uniform, both in regular form and also when converted to black-and-white for printing. This is the 'lite' version of the 'viridis' package that also contains 'ggplot2' bindings for discrete and continuous color and fill scales and can be found at .", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Depends": [ + "R (>= 2.10)" + ], + "Suggests": [ + "hexbin (>= 1.27.0)", + "ggplot2 (>= 1.0.1)", + "testthat", + "covr" + ], + "URL": "https://sjmgarnier.github.io/viridisLite/, https://github.com/sjmgarnier/viridisLite/", + "BugReports": "https://github.com/sjmgarnier/viridisLite/issues/", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Simon Garnier [aut, cre], Noam Ross [ctb, cph], Bob Rudis [ctb, cph], Marco Sciaini [ctb, cph], Antônio Pedro Camargo [ctb, cph], Cédric Scherer [ctb, cph]", + "Repository": "CRAN" + }, + "vroom": { + "Package": "vroom", + "Version": "1.6.5", + "Source": "Repository", + "Title": "Read and Write Rectangular Text Data Quickly", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "The goal of 'vroom' is to read and write data (like 'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial indexing step, then reads the values lazily , so only the data you actually use needs to be read. The writer formats the data in parallel and writes to disk asynchronously from formatting.", + "License": "MIT + file LICENSE", + "URL": "https://vroom.r-lib.org, https://github.com/tidyverse/vroom", + "BugReports": "https://github.com/tidyverse/vroom/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "bit64", + "cli (>= 3.2.0)", + "crayon", + "glue", + "hms", + "lifecycle (>= 1.0.3)", + "methods", + "rlang (>= 0.4.2)", + "stats", + "tibble (>= 2.0.0)", + "tidyselect", + "tzdb (>= 0.1.1)", + "vctrs (>= 0.2.0)", + "withr" + ], + "Suggests": [ + "archive", + "bench (>= 1.1.0)", + "covr", + "curl", + "dplyr", + "forcats", + "fs", + "ggplot2", + "knitr", + "patchwork", + "prettyunits", + "purrr", + "rmarkdown", + "rstudioapi", + "scales", + "spelling", + "testthat (>= 2.1.0)", + "tidyr", + "utils", + "waldo", + "xml2" + ], + "LinkingTo": [ + "cpp11 (>= 0.2.0)", + "progress (>= 1.2.1)", + "tzdb (>= 0.1.1)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "nycflights13, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "false", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3.9000", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (), Hadley Wickham [aut] (), Jennifer Bryan [aut, cre] (), Shelby Bearrows [ctb], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [cph] (grisu3 implementation), Mikkel Jørgensen [cph] (grisu3 implementation), Posit Software, PBC [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "waldo": { + "Package": "waldo", + "Version": "0.6.1", + "Source": "Repository", + "Title": "Find Differences Between R Objects", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Compare complex R objects and reveal the key differences. Designed particularly for use in testing packages where being able to quickly isolate key differences makes understanding test failures much easier.", + "License": "MIT + file LICENSE", + "URL": "https://waldo.r-lib.org, https://github.com/r-lib/waldo", + "BugReports": "https://github.com/r-lib/waldo/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "cli", + "diffobj (>= 0.3.4)", + "glue", + "methods", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "bit64", + "R6", + "S7", + "testthat (>= 3.0.0)", + "withr", + "xml2" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "whisker": { + "Package": "whisker", + "Version": "0.4.1", + "Source": "Repository", + "Maintainer": "Edwin de Jonge ", + "License": "GPL-3", + "Title": "{{mustache}} for R, Logicless Templating", + "Type": "Package", + "LazyLoad": "yes", + "Author": "Edwin de Jonge", + "Description": "Implements 'Mustache' logicless templating.", + "URL": "https://github.com/edwindj/whisker", + "Suggests": [ + "markdown" + ], + "RoxygenNote": "6.1.1", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "withr": { + "Package": "withr", + "Version": "3.0.2", + "Source": "Repository", + "Title": "Run Code 'With' Temporarily Modified Global State", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", , \"krlmlr+r@mailbox.org\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevinushey@gmail.com\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A set of functions to run code 'with' safely and temporarily modified global state. Many of these functions were originally a part of the 'devtools' package, this provides a simple package with limited dependencies to provide access to these functions.", + "License": "MIT + file LICENSE", + "URL": "https://withr.r-lib.org, https://github.com/r-lib/withr#readme", + "BugReports": "https://github.com/r-lib/withr/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "graphics", + "grDevices" + ], + "Suggests": [ + "callr", + "DBI", + "knitr", + "methods", + "rlang", + "rmarkdown (>= 2.12)", + "RSQLite", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'aaa.R' 'collate.R' 'connection.R' 'db.R' 'defer-exit.R' 'standalone-defer.R' 'defer.R' 'devices.R' 'local_.R' 'with_.R' 'dir.R' 'env.R' 'file.R' 'language.R' 'libpaths.R' 'locale.R' 'makevars.R' 'namespace.R' 'options.R' 'par.R' 'path.R' 'rng.R' 'seed.R' 'wrap.R' 'sink.R' 'tempfile.R' 'timezone.R' 'torture.R' 'utils.R' 'with.R'", + "NeedsCompilation": "no", + "Author": "Jim Hester [aut], Lionel Henry [aut, cre], Kirill Müller [aut], Kevin Ushey [aut], Hadley Wickham [aut], Winston Chang [aut], Jennifer Bryan [ctb], Richard Cotton [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "xfun": { + "Package": "xfun", + "Version": "0.56", + "Source": "Repository", + "Type": "Package", + "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Daijiang\", \"Li\", role = \"ctb\"), person(\"Xianying\", \"Tan\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person() )", + "Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "grDevices", + "stats", + "tools" + ], + "Suggests": [ + "testit", + "parallel", + "codetools", + "methods", + "rstudioapi", + "tinytex (>= 0.30)", + "mime", + "litedown (>= 0.6)", + "commonmark", + "knitr (>= 1.50)", + "remotes", + "pak", + "curl", + "xml2", + "jsonlite", + "magick", + "yaml", + "data.table", + "qs2" + ], + "License": "MIT + file LICENSE", + "URL": "https://github.com/yihui/xfun", + "BugReports": "https://github.com/yihui/xfun/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "VignetteBuilder": "litedown", + "NeedsCompilation": "yes", + "Author": "Yihui Xie [aut, cre, cph] (ORCID: , URL: https://yihui.org), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (ORCID: ), Christophe Dervieux [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "xml2": { + "Package": "xml2", + "Version": "1.5.2", + "Source": "Repository", + "Title": "Parse XML", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", email = \"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Foundation\", role = \"ctb\", comment = \"Copy of R-project homepage cached as example\") )", + "Description": "Bindings to 'libxml2' for working with XML data using a simple, consistent interface based on 'XPath' expressions. Also supports XML schema validation; for 'XSLT' transformations see the 'xslt' package.", + "License": "MIT + file LICENSE", + "URL": "https://xml2.r-lib.org, https://r-lib.r-universe.dev/xml2", + "BugReports": "https://github.com/r-lib/xml2/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "cli", + "methods", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "covr", + "curl", + "httr", + "knitr", + "mockery", + "rmarkdown", + "testthat (>= 3.2.0)", + "xslt" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.3", + "SystemRequirements": "libxml2: libxml2-dev (deb), libxml2-devel (rpm)", + "Collate": "'S4.R' 'as_list.R' 'xml_parse.R' 'as_xml_document.R' 'classes.R' 'format.R' 'import-standalone-obj-type.R' 'import-standalone-purrr.R' 'import-standalone-types-check.R' 'init.R' 'nodeset_apply.R' 'paths.R' 'utils.R' 'xml2-package.R' 'xml_attr.R' 'xml_children.R' 'xml_document.R' 'xml_find.R' 'xml_missing.R' 'xml_modify.R' 'xml_name.R' 'xml_namespaces.R' 'xml_node.R' 'xml_nodeset.R' 'xml_path.R' 'xml_schema.R' 'xml_serialize.R' 'xml_structure.R' 'xml_text.R' 'xml_type.R' 'xml_url.R' 'xml_write.R' 'zzz.R'", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Jeroen Ooms [aut, cre], Posit Software, PBC [cph, fnd], R Foundation [ctb] (Copy of R-project homepage cached as example)", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "xopen": { + "Package": "xopen", + "Version": "1.0.1", + "Source": "Repository", + "Title": "Open System Files, 'URLs', Anything", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Fathi\", \"Boudra\", role = \"aut\"), person(\"Rex\", \"Dieter\", role = \"aut\"), person(\"Kevin\", \"Krammer\", role = \"aut\"), person(\"Jeremy\", \"White\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Cross platform solution to open files, directories or 'URLs' with their associated programs.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/xopen#readme, https://r-lib.github.io/xopen/", + "BugReports": "https://github.com/r-lib/xopen/issues", + "Depends": [ + "R (>= 3.1)" + ], + "Imports": [ + "processx" + ], + "Suggests": [ + "ps", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Fathi Boudra [aut], Rex Dieter [aut], Kevin Krammer [aut], Jeremy White [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "xtable": { + "Package": "xtable", + "Version": "1.8-8", + "Source": "Repository", + "Date": "2026-02-20", + "Title": "Export Tables to LaTeX or HTML", + "Authors@R": "c(person(\"David B.\", \"Dahl\", role=\"aut\"), person(\"David\", \"Scott\", role=c(\"aut\",\"cre\"), email=\"d.scott@auckland.ac.nz\"), person(\"Charles\", \"Roosen\", role=\"aut\"), person(\"Arni\", \"Magnusson\", role=\"aut\"), person(\"Jonathan\", \"Swinton\", role=\"aut\"), person(\"Ajay\", \"Shah\", role=\"ctb\"), person(\"Arne\", \"Henningsen\", role=\"ctb\"), person(\"Benno\", \"Puetz\", role=\"ctb\"), person(\"Bernhard\", \"Pfaff\", role=\"ctb\"), person(\"Claudio\", \"Agostinelli\", role=\"ctb\"), person(\"Claudius\", \"Loehnert\", role=\"ctb\"), person(\"David\", \"Mitchell\", role=\"ctb\"), person(\"David\", \"Whiting\", role=\"ctb\"), person(\"Fernando da\", \"Rosa\", role=\"ctb\"), person(\"Guido\", \"Gay\", role=\"ctb\"), person(\"Guido\", \"Schulz\", role=\"ctb\"), person(\"Ian\", \"Fellows\", role=\"ctb\"), person(\"Jeff\", \"Laake\", role=\"ctb\"), person(\"John\", \"Walker\", role=\"ctb\"), person(\"Jun\", \"Yan\", role=\"ctb\"), person(\"Liviu\", \"Andronic\", role=\"ctb\"), person(\"Markus\", \"Loecher\", role=\"ctb\"), person(\"Martin\", \"Gubri\", role=\"ctb\"), person(\"Matthieu\", \"Stigler\", role=\"ctb\"), person(\"Robert\", \"Castelo\", role=\"ctb\"), person(\"Seth\", \"Falcon\", role=\"ctb\"), person(\"Stefan\", \"Edwards\", role=\"ctb\"), person(\"Sven\", \"Garbade\", role=\"ctb\"), person(\"Uwe\", \"Ligges\", role=\"ctb\"))", + "Maintainer": "David Scott ", + "Imports": [ + "stats", + "utils", + "methods" + ], + "Suggests": [ + "knitr", + "zoo", + "survival", + "glue", + "tinytex" + ], + "VignetteBuilder": "knitr", + "Description": "Coerce data to LaTeX and HTML tables.", + "URL": "http://xtable.r-forge.r-project.org/", + "Depends": [ + "R (>= 2.10.0)" + ], + "License": "GPL (>= 2)", + "Repository": "CRAN", + "NeedsCompilation": "no", + "Author": "David B. Dahl [aut], David Scott [aut, cre], Charles Roosen [aut], Arni Magnusson [aut], Jonathan Swinton [aut], Ajay Shah [ctb], Arne Henningsen [ctb], Benno Puetz [ctb], Bernhard Pfaff [ctb], Claudio Agostinelli [ctb], Claudius Loehnert [ctb], David Mitchell [ctb], David Whiting [ctb], Fernando da Rosa [ctb], Guido Gay [ctb], Guido Schulz [ctb], Ian Fellows [ctb], Jeff Laake [ctb], John Walker [ctb], Jun Yan [ctb], Liviu Andronic [ctb], Markus Loecher [ctb], Martin Gubri [ctb], Matthieu Stigler [ctb], Robert Castelo [ctb], Seth Falcon [ctb], Stefan Edwards [ctb], Sven Garbade [ctb], Uwe Ligges [ctb]" + }, + "yaml": { + "Package": "yaml", + "Version": "2.3.10", + "Source": "Repository", + "Type": "Package", + "Title": "Methods to Convert R Data to YAML and Back", + "Date": "2024-07-22", + "Suggests": [ + "RUnit" + ], + "Author": "Shawn P Garbett [aut], Jeremy Stephens [aut, cre], Kirill Simonov [aut], Yihui Xie [ctb], Zhuoer Dong [ctb], Hadley Wickham [ctb], Jeffrey Horner [ctb], reikoch [ctb], Will Beasley [ctb], Brendan O'Connor [ctb], Gregory R. Warnes [ctb], Michael Quinn [ctb], Zhian N. Kamvar [ctb], Charlie Gao [ctb]", + "Maintainer": "Shawn Garbett ", + "License": "BSD_3_clause + file LICENSE", + "Description": "Implements the 'libyaml' 'YAML' 1.1 parser and emitter () for R.", + "URL": "https://github.com/vubiostat/r-yaml/", + "BugReports": "https://github.com/vubiostat/r-yaml/issues", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "zip": { + "Package": "zip", + "Version": "2.3.3", + "Source": "Repository", + "Title": "Cross-Platform 'zip' Compression", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kuba\", \"Podgórski\", role = \"ctb\"), person(\"Rich\", \"Geldreich\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Cross-Platform 'zip' Compression Library. A replacement for the 'zip' function, that does not require any additional external tools on any platform.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/zip, https://r-lib.github.io/zip/", + "BugReports": "https://github.com/r-lib/zip/issues", + "Suggests": [ + "covr", + "pillar", + "processx", + "R6", + "testthat", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-05-07", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre], Kuba Podgórski [ctb], Rich Geldreich [ctb], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "zoo": { + "Package": "zoo", + "Version": "1.8-15", + "Source": "Repository", + "Date": "2025-12-15", + "Title": "S3 Infrastructure for Regular and Irregular Time Series (Z's Ordered Observations)", + "Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")), person(given = \"Gabor\", family = \"Grothendieck\", role = \"aut\", email = \"ggrothendieck@gmail.com\"), person(given = c(\"Jeffrey\", \"A.\"), family = \"Ryan\", role = \"aut\", email = \"jeff.a.ryan@gmail.com\"), person(given = c(\"Joshua\", \"M.\"), family = \"Ulrich\", role = \"ctb\", email = \"josh.m.ulrich@gmail.com\"), person(given = \"Felix\", family = \"Andrews\", role = \"ctb\", email = \"felix@nfrac.org\"))", + "Description": "An S3 class with methods for totally ordered indexed observations. It is particularly aimed at irregular time series of numeric vectors/matrices and factors. zoo's key design goals are independence of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics.", + "Depends": [ + "R (>= 3.1.0)", + "stats" + ], + "Suggests": [ + "AER", + "coda", + "chron", + "ggplot2 (>= 3.5.0)", + "mondate", + "scales", + "stinepack", + "strucchange", + "timeDate", + "timeSeries", + "tinyplot", + "tis", + "tseries", + "xts" + ], + "Imports": [ + "utils", + "graphics", + "grDevices", + "lattice (>= 0.20-27)" + ], + "License": "GPL-2 | GPL-3", + "URL": "https://zoo.R-Forge.R-project.org/", + "NeedsCompilation": "yes", + "Author": "Achim Zeileis [aut, cre] (ORCID: ), Gabor Grothendieck [aut], Jeffrey A. Ryan [aut], Joshua M. Ulrich [ctb], Felix Andrews [ctb]", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN" + } + } +} diff --git a/schemas/cshm-cohort.yaml b/schemas/cshm-cohort.yaml new file mode 100644 index 0000000..e13f284 --- /dev/null +++ b/schemas/cshm-cohort.yaml @@ -0,0 +1,230 @@ +id: https://github.com/big-life-lab/cshm/schemas/cshm-cohort +name: cshm-cohort +title: CSHM synthetic cohort schema +description: >- + Schema for the synthetic Canadian population cohorts used in Stage 2 + (smoking history simulation). These records are generated from Canadian + demographic data — not from the CCHS — and serve as the population + through which initiation and cessation rates from the APC model are + applied to simulate individual smoking histories. + + This schema is independent of the CCHS harmonization layer (cshm-variables) + and the model output layer (cshm-rate-tables). + +version: 0.1.0 +license: MIT + +prefixes: + linkml: https://w3id.org/linkml/ + cshm: https://github.com/big-life-lab/cshm/schemas/cshm-cohort/ + +default_prefix: cshm +default_range: string + +imports: + - linkml:types + +# --------------------------------------------------------------------------- +# Enumerations +# --------------------------------------------------------------------------- + +enums: + + SexEnum: + description: Biological sex of the synthetic individual. + permissible_values: + "1": + description: Male + "2": + description: Female + + SmokingStatusEnum: + description: >- + Smoking status at a given age in the simulated life history. + Corresponds to the three-state model: never, current, former. + permissible_values: + never: + description: Has never smoked (fewer than 100 lifetime cigarettes) + current: + description: Currently smoking (daily or occasionally) + former: + description: >- + Former smoker — smoked at least 100 cigarettes lifetime and + not currently smoking + + ProvinceEnum: + description: >- + Canadian province or territory of residence. Uses Statistics Canada + geographic codes (GEOGPRV values from CCHS). + permissible_values: + "10": + description: Newfoundland and Labrador + "11": + description: Prince Edward Island + "12": + description: Nova Scotia + "13": + description: New Brunswick + "24": + description: Quebec + "35": + description: Ontario + "46": + description: Manitoba + "47": + description: Saskatchewan + "48": + description: Alberta + "59": + description: British Columbia + "60": + description: Territories (Yukon, Northwest Territories, Nunavut — pooled) + +# --------------------------------------------------------------------------- +# Slots +# --------------------------------------------------------------------------- + +slots: + + person_id: + description: >- + Unique identifier for the synthetic individual within a simulation run. + identifier: true + required: true + range: integer + + birth_year: + description: >- + Year of birth of the synthetic individual. Defines the birth cohort. + Used as the cohort identifier in the APC model: cohort = period − age. + range: integer + required: true + minimum_value: 1900 + maximum_value: 2050 + + sex: + description: >- + Biological sex. Initiation and cessation rates are estimated separately + by sex; this field determines which rate table is applied. + range: SexEnum + required: true + + province: + description: >- + Province or territory of residence. Used when provincial-level rate + tables are available. Territories are pooled into a single stratum + due to small sample sizes in the source CCHS data. + range: ProvinceEnum + + weight: + description: >- + Population weight for this synthetic individual, derived from Statistics + Canada demographic projections. Used to produce population-level + smoking prevalence estimates from the simulation. + range: float + required: true + minimum_value: 0.0 + + simulation_run: + description: >- + Identifier for the Monte Carlo simulation run. Multiple runs are used + to quantify uncertainty in smoking history estimates. + range: integer + +# --------------------------------------------------------------------------- +# Classes +# --------------------------------------------------------------------------- + +classes: + + SyntheticPerson: + description: >- + A single synthetic individual in the CSHM simulation population. + Each person is assigned demographic attributes and then "aged" through + the initiation and cessation rate tables to generate a smoking history. + slots: + - person_id + - birth_year + - sex + - province + - weight + - simulation_run + + SmokingHistoryRecord: + description: >- + One record in a simulated smoking history — the smoking status of a + synthetic individual at a specific age. A complete smoking history + for one person is a sequence of these records from birth to death + (or the end of the projection period). + slots: + - person_id + - birth_year + - sex + attributes: + age: + description: Age of the synthetic individual at this time point (years). + range: integer + required: true + minimum_value: 0 + maximum_value: 110 + period: + description: >- + Calendar year corresponding to this age: period = birth_year + age. + range: integer + required: true + smoking_status: + description: Smoking status at this age. + range: SmokingStatusEnum + required: true + age_initiation: + description: >- + Age at which the individual first smoked a whole cigarette. + Null if smoking_status is `never`. + range: integer + age_cessation: + description: >- + Age at which the individual quit smoking (most recent quit, if + multiple quit attempts). Null if smoking_status is `never` or + `current`. + range: integer + + SyntheticCohort: + description: >- + The full synthetic population for one simulation run. Contains all + synthetic persons and their demographic attributes. Smoking histories + are stored separately in SmokingHistoryRecord. + tree_root: true + attributes: + persons: + range: SyntheticPerson + multivalued: true + inlined_as_list: true + run_metadata: + description: >- + Metadata about this simulation run: date, config profile, rate + table version, random seed. + range: SimulationRunMetadata + + SimulationRunMetadata: + description: Provenance record for a simulation run. + attributes: + run_id: + description: Unique identifier for this simulation run. + range: string + required: true + run_date: + description: Date the simulation was executed (ISO 8601). + range: date + required: true + config_profile: + description: >- + `{config}` profile used (e.g., "prod", "statscan"). Determines + the data source and model parameters. + range: string + required: true + rate_table_version: + description: Version of the cshm-rate-tables used as input. + range: string + random_seed: + description: Random seed used for reproducibility. + range: integer diff --git a/schemas/cshm-rate-tables.yaml b/schemas/cshm-rate-tables.yaml new file mode 100644 index 0000000..4043954 --- /dev/null +++ b/schemas/cshm-rate-tables.yaml @@ -0,0 +1,268 @@ +id: https://github.com/big-life-lab/cshm/schemas/cshm-rate-tables +name: cshm-rate-tables +title: CSHM rate table schema +description: >- + Schema for the initiation and cessation rate tables produced by the CSHM + APC model (Stage 8). These tables are the primary shareable output of the + CSHM and the direct input to Stage 9 (smoking history simulation). + + Rate tables are stratified by model type (initiation/cessation), sex, + and optionally province. Each row gives the conditional probability of + the smoking transition at a given age and period (or birth cohort). + + The CSHM generates individual-level smoking histories directly from these + rate tables, following Manuel et al. (2020) and Holford et al. (2014). + National PUMF-derived tables are distributed under the Statistics Canada + Open Licence for use in other jurisdictions. + +version: 0.1.0 +license: MIT + +prefixes: + linkml: https://w3id.org/linkml/ + cshm: https://github.com/big-life-lab/cshm/schemas/cshm-rate-tables/ + +default_prefix: cshm +default_range: string + +imports: + - linkml:types + +# --------------------------------------------------------------------------- +# Enumerations +# --------------------------------------------------------------------------- + +enums: + + ModelTypeEnum: + description: Which smoking transition the rate applies to. + permissible_values: + initiation: + description: >- + Probability of transitioning from never smoker to current smoker + at age a, conditional on being a never smoker at age a−1. + Zero for ages below the initiation floor (PUMF: 13, Master: 8). + cessation: + description: >- + Conditional probability of a current smoker quitting at age a. + Zero for ages below the cessation floor. + + SexEnum: + description: >- + Sex stratum for this rate. Initiation rates are estimated separately + for men and women because period effect constraint years differ. + permissible_values: + "1": + description: Male + "2": + description: Female + + ProvinceEnum: + description: >- + Geographic stratum. "national" indicates the all-Canada model; + province codes follow Statistics Canada GEOGPRV values. + permissible_values: + national: + description: All-Canada estimate (no provincial stratification) + "10": + description: Newfoundland and Labrador + "11": + description: Prince Edward Island + "12": + description: Nova Scotia + "13": + description: New Brunswick + "24": + description: Quebec + "35": + description: Ontario + "46": + description: Manitoba + "47": + description: Saskatchewan + "48": + description: Alberta + "59": + description: British Columbia + "60": + description: Territories (pooled) + +# --------------------------------------------------------------------------- +# Slots +# --------------------------------------------------------------------------- + +slots: + + model_type: + description: Whether this row contains an initiation or cessation rate. + range: ModelTypeEnum + required: true + + sex: + description: Sex stratum. + range: SexEnum + required: true + + province: + description: >- + Geographic stratum. "national" for the all-Canada model. Provincial + rates are only produced where CCHS sample size meets the minimum + threshold (see protocol issue #3 / #10). + range: ProvinceEnum + required: true + + age: + description: >- + Age in years at which the transition probability applies. + Initiation: ages 8–85. Cessation: ages 8–85. + range: integer + required: true + minimum_value: 0 + maximum_value: 110 + + period: + description: >- + Calendar year for which the rate is estimated. + Rates beyond the period constraint year are held constant + (initiation men: from 1999; initiation women: from 2003; + cessation: from 2013). + range: integer + required: true + + cohort: + description: >- + Birth cohort year: cohort = period − age. Included for convenience; + redundant given age and period but included for convenience in downstream use. + range: integer + + rate: + description: >- + Conditional probability of the smoking transition (0–1). + Initiation: P(initiate at age a | never smoker at age a−1). + Cessation: P(quit at age a | current smoker at age a−1). + range: float + required: true + minimum_value: 0.0 + maximum_value: 1.0 + + rate_lower: + description: >- + Lower bound of the 95% confidence interval for the rate. + Derived from the APC model coefficient covariance matrix. + range: float + minimum_value: 0.0 + maximum_value: 1.0 + + rate_upper: + description: >- + Upper bound of the 95% confidence interval for the rate. + range: float + minimum_value: 0.0 + maximum_value: 1.0 + + mortality_correction: + description: >- + Mortality correction method applied before model fitting. + "peto" — Peto method (survival weight proportional to 1/survival). + "mport" — MPoRT weights adjusted for age, smoking status, years since + quitting, immigration, and sex (not yet implemented). + range: string + +# --------------------------------------------------------------------------- +# Classes +# --------------------------------------------------------------------------- + +classes: + + RateTableRow: + description: >- + One row in a CSHM rate table: the conditional probability of a smoking + transition for a given model type, sex, geography, age, and period. + Each row is a unique combination of (model_type, sex, province, age, + period). + + A complete set of national CSHM rate tables comprises four strata: + - initiation, sex = 1 (men) + - initiation, sex = 2 (women) + - cessation, sex = 1 (men) + - cessation, sex = 2 (women) + slots: + - model_type + - sex + - province + - age + - period + - cohort + - rate + - rate_lower + - rate_upper + - mortality_correction + + RateTable: + description: >- + A complete rate table for one (model_type × sex × province) stratum. + The PUMF-derived national tables (province = "national") are the + primary shareable artifact — they can be distributed internationally + under the Statistics Canada Open Licence. + tree_root: true + attributes: + rows: + range: RateTableRow + multivalued: true + inlined_as_list: true + metadata: + description: Provenance and version information for this rate table. + range: RateTableMetadata + + RateTableMetadata: + description: >- + Provenance record for a rate table. Enables downstream users (e.g., + downstream users) to trace which version of the CSHM model produced + a given set of rates. + attributes: + table_id: + description: >- + Unique identifier for this table, encoding stratum: + e.g., "cshm-initiation-male-national-v0.1.0". + range: string + required: true + model_type: + description: Initiation or cessation. + range: ModelTypeEnum + required: true + sex: + description: Sex stratum. + range: SexEnum + required: true + province: + description: Geographic stratum. + range: ProvinceEnum + required: true + cshm_version: + description: CSHM software version that produced this table. + range: string + required: true + cchs_cycles: + description: >- + CCHS cycles used to fit the APC model. Format: comma-separated + cycle labels (e.g., "2001, 2003, 2005, 2007-08, ..., 2022"). + range: string + data_source: + description: >- + Whether rates were estimated from PUMF or Master files. + PUMF rates are the shareable international artifact. + Master rates are the definitive estimates (RDC only). + range: string + date_produced: + description: Date this table was generated (ISO 8601). + range: date + required: true + config_profile: + description: >- + `{config}` profile used (e.g., "prod", "statscan"). + range: string + projection_horizon: + description: >- + Final projection year for this rate table (e.g., 2050 for the primary + analysis). Period effects beyond the constraint year are held constant + at the most recently observed values. diff --git a/schemas/cshm-variables.yaml b/schemas/cshm-variables.yaml new file mode 100644 index 0000000..79883f3 --- /dev/null +++ b/schemas/cshm-variables.yaml @@ -0,0 +1,264 @@ +id: https://github.com/big-life-lab/cshm/schemas/cshm-variables +name: cshm-variables +title: CSHM variable dictionary +description: >- + Schema for the Canadian Smoking Histories Model (CSHM) variable dictionary. + Defines study variables drawn from the Canadian Community Health Survey (CCHS) + and harmonized via cchsflow, along with CSHM-specific metadata. + + This schema extends the cchsflow variable convention + (variables.csv / variable_details.csv) with three additional fields: + `role`, `source`, and `purpose`. Someone familiar with cchsflow variables.csv + will recognize all base fields; these three are the only additions. + +version: 0.1.0 +license: MIT + +prefixes: + linkml: https://w3id.org/linkml/ + cshm: https://github.com/big-life-lab/cshm/schemas/cshm-variables/ + +default_prefix: cshm +default_range: string + +imports: + - linkml:types + +# --------------------------------------------------------------------------- +# Enumerations +# --------------------------------------------------------------------------- + +enums: + + VariableTypeEnum: + description: >- + Statistical type of the variable. Matches cchsflow variableType convention. + permissible_values: + Categorical: + description: Categorical (nominal or ordinal) + Continuous: + description: Continuous numeric + Binary: + description: Binary (0/1) + + VariableRoleEnum: + description: >- + How the variable is used in the CSHM pipeline. A variable may carry + multiple comma-separated roles (e.g. "predictor, table1, apc-numerator"). + This is a CSHM-specific field not present in cchsflow. The authoritative + role definitions, groups, and purposes are in this schema's VariableRoleEnum. + permissible_values: + design: + description: Survey infrastructure variable (cycle identifier or sampling weight). + meaning: cshm:RoleDesign + intermediate: + description: >- + Raw cchsflow variable needed to derive a unified variable. Requested + from rec_with_table() but not referenced directly by pipeline code. + meaning: cshm:RoleIntermediate + predictor: + description: Covariate used directly in the APC model or descriptive analysis. + meaning: cshm:RolePredictor + model-stratifier: + description: Variable used to stratify the APC model into separate fits (e.g. sex). + meaning: cshm:RoleModelStratifier + table1: + description: Variable included as a row in Table 1 descriptive statistics. + meaning: cshm:RoleTable1 + table1-stratifier: + description: Variable used to stratify Table 1 columns (e.g. sex, cycle). + meaning: cshm:RoleTable1Stratifier + apc-numerator: + description: >- + Variable used to define the APC event indicator (initiation or + cessation). Used in Stage 7 numerator construction. + meaning: cshm:RoleApcNumerator + apc-denominator: + description: >- + Variable used to construct the at-risk person-year denominator. + Used in Stage 7 denominator construction. + meaning: cshm:RoleApcDenominator + imputation-predictor: + description: Variable included in the MICE imputation model. + meaning: cshm:RoleImputationPredictor + sensitivity-analysis: + description: Variable used in sensitivity analyses only; not in the primary model. + meaning: cshm:RoleSensitivityAnalysis + + DataSourceEnum: + description: >- + Whether the variable is available in PUMF files, Master files, or both. + PUMF files use midpoint-estimated pseudo-continuous values for sensitive + variables; Master files provide exact values from the RDC. This is a + CSHM-specific field not present in cchsflow. + permissible_values: + pumf: + description: Available in Public Use Microdata Files only + master: + description: Available in Statistics Canada Master files (RDC) only + both: + description: Available in both PUMF and Master files + + StatusEnum: + description: Review and publication status of the variable definition. + permissible_values: + active: + description: In use; definition confirmed + draft: + description: Provisional; under review + deprecated: + description: No longer used; retained for reference + +# --------------------------------------------------------------------------- +# Slots (fields shared across classes) +# --------------------------------------------------------------------------- + +slots: + + variable: + description: >- + Unique variable name used in the harmonized dataset. For cchsflow-derived + variables this matches the cchsflow variable name exactly. + identifier: true + required: true + + label: + description: Short label (≤ 40 characters) suitable for table headings. + + labelLong: + description: >- + Full descriptive label. Used in documentation and generated output. + + variableType: + description: Statistical type of the variable. + range: VariableTypeEnum + + databaseStart: + description: >- + Source database(s) where the raw variable is found. Uses cchsflow + notation: `cchs2001_p` for PUMF, `cchs2001_m` for Master. + Multiple databases separated by commas. + + variableStart: + description: >- + Raw source variable name(s) in the original CCHS datasets. Uses cchsflow + notation: `cchs2001_p::SMKA_01A, cchs2007_2008_p::SMK_01A, [SMK_01A]` + where `[VAR]` is the fallback name and `_p`/`_m` denote PUMF/Master. + + subject: + description: >- + Thematic subject area (e.g., "smoking", "demographics", "geography"). + + section: + description: CCHS questionnaire section the source variable appears in. + + units: + description: Unit of measurement for continuous variables (e.g., "years"). + + notes: + description: >- + Implementation notes for developers. Not displayed in end-user + documentation. + + description: + description: >- + Plain-language description of the variable for health researchers. + This is the primary documentation field — write for an epidemiologist, + not a programmer. + + version: + description: Version of the variable definition (semver string, e.g., "1.0.0"). + + lastUpdated: + description: Date the variable definition was last revised (YYYY-MM-DD). + + status: + description: Review and publication status. + range: StatusEnum + + reviewNotes: + description: Notes from the most recent review cycle. + + versionNotes: + description: Summary of changes in this version. + + # CSHM-specific slots + + role: + description: >- + Comma-separated list of roles this variable plays in the CSHM pipeline. + Each role token must match a value in VariableRoleEnum and is defined + in this schema's VariableRoleEnum. Multiple roles reflect that a single variable + can serve different purposes at different pipeline stages — for example, + DHH_SEX is both a model-stratifier and a table1-stratifier. + range: VariableRoleEnum + multivalued: true + required: true + + source: + description: >- + Whether the variable is available in PUMF files, Master files, or both. + Variables with `source: pumf` use midpoint-estimated values; variables + with `source: master` require RDC access. Variables with `source: both` + are available in both environments (possibly with different precision). + range: DataSourceEnum + required: true + + purpose: + description: >- + Plain-language explanation of why this variable is included in the study + and how it is used analytically. Complements `description` (which says + what the variable measures) by explaining its analytical role. Written + for an epidemiologist collaborator who wants to understand modelling + decisions without reading the code. + +# --------------------------------------------------------------------------- +# Classes +# --------------------------------------------------------------------------- + +classes: + + CshmVariable: + description: >- + A study variable in the CSHM analysis. Extends the cchsflow variable + convention with `role`, `source`, and `purpose` fields. All other fields + match cchsflow variables.csv exactly, so a variable appearing in both + cchsflow and CSHM will have the same base fields. + slots: + - variable + - label + - labelLong + - variableType + - databaseStart + - variableStart + - subject + - section + - units + - notes + - description + - purpose # CSHM addition + - version + - lastUpdated + - status + - reviewNotes + - versionNotes + - role # CSHM addition + - source # CSHM addition + slot_usage: + variable: + required: true + role: + required: true + source: + required: false # NA for intermediate variables (cchsflow-internal inputs) + + CshmVariableCollection: + description: >- + The full set of CSHM study variables. Corresponds to + worksheets/cshm-variables.csv in the repository. + tree_root: true + attributes: + variables: + range: CshmVariable + multivalued: true + inlined_as_list: true diff --git a/scripts/rename-pumf-objects.R b/scripts/rename-pumf-objects.R new file mode 100644 index 0000000..95d6388 --- /dev/null +++ b/scripts/rename-pumf-objects.R @@ -0,0 +1,63 @@ +# rename-pumf-objects.R +# +# Re-saves cchsflow-data release RData files with the correct internal object +# name (e.g., `table` → `cchs2019_2020_p`) so they match the cchsflow/data/ +# convention expected by cchsflow::rec_with_table(). +# +# Usage: Rscript scripts/rename-pumf-objects.R +# +# Run once after downloading the cchsflow-data v1.0.0 release assets. +# Output goes to ~/github/cchsflow/data/ so all cycles are in one place. + +library(fs) + +source_dir <- path.expand("~/github/cchsflow-data/data/sources/rdata") +target_dir <- path.expand("~/github/cchsflow/data") + +# Map: source filename → target object name +cycle_map <- c( + "CCHS_2001.RData" = "cchs2001_p", + "CCHS_2003.RData" = "cchs2003_p", + "CCHS_2005.RData" = "cchs2005_p", + "CCHS_2007_2008.RData" = "cchs2007_2008_p", + "CCHS_2009_2010.RData" = "cchs2009_2010_p", + "CCHS_2011_2012.RData" = "cchs2011_2012_p", + "CCHS_2013_2014.RData" = "cchs2013_2014_p", + "CCHS_2015_2016.RData" = "cchs2015_2016_p", + "CCHS_2017_2018.RData" = "cchs2017_2018_p", + "CCHS_2019_2020.RData" = "cchs2019_2020_p", + "CCHS_2022.RData" = "cchs2022_p" +) + +for (src_file in names(cycle_map)) { + obj_name <- cycle_map[[src_file]] + src_path <- file.path(source_dir, src_file) + dest_path <- file.path(target_dir, paste0(obj_name, ".RData")) + + # Skip if target already exists + if (file.exists(dest_path)) { + message("Skipping ", obj_name, " (already exists)") + next + } + + if (!file.exists(src_path)) { + message("Source not found, skipping: ", src_path) + next + } + + message("Converting ", src_file, " → ", basename(dest_path)) + env <- new.env() + load(src_path, envir = env) + + # Rename the object (expected to be called `table`) + if (!"table" %in% ls(env)) { + warning("Expected object 'table' not found in ", src_file, "; skipping") + next + } + + assign(obj_name, get("table", envir = env)) + save(list = obj_name, file = dest_path) + message(" Saved: ", dest_path) +} + +message("Done. Run ls ~/github/cchsflow/data/ to verify.") diff --git a/smoking-ascertainment.qmd b/smoking-ascertainment.qmd deleted file mode 100644 index e69de29..0000000 diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..4e46c2b --- /dev/null +++ b/styles.css @@ -0,0 +1,78 @@ +/* Custom styles for CSHGM website */ + +/* Additional spacing for the main content */ +.content { + padding-top: 2rem; + max-width: 1200px; + margin: 0 auto; +} + +/* Style for code blocks */ +pre { + border-radius: 4px; + background-color: #f5f5f5; +} + +/* Custom header styling */ +h1, h2, h3, h4, h5, h6 { + color: #2c3e50; + font-weight: 500; +} + +/* Add a subtle border to tables */ +table { + border-collapse: collapse; + width: 100%; + margin-bottom: 1rem; +} + +th, td { + padding: 0.5rem; + border: 1px solid #e1e4e8; +} + +th { + background-color: #f6f8fa; +} + +/* Style links */ +a { + color: #0366d6; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +/* Style the landing page grid */ +.grid { + gap: 2rem; +} + +/* Style for blockquotes */ +blockquote { + padding: 0.5rem 1rem; + border-left: 4px solid #0366d6; + background-color: #f6f8fa; + margin: 1rem 0; +} + +/* Style for callouts */ +.callout { + border-radius: 4px; + padding: 1rem; + margin: 1rem 0; + border-left: 4px solid #0366d6; + background-color: #f6f8fa; +} + +/* Footer styling */ +.footer { + margin-top: 3rem; + padding-top: 1rem; + border-top: 1px solid #e1e4e8; + color: #6c757d; + font-size: 0.875rem; +} + diff --git a/tests/testthat/helper-apc.R b/tests/testthat/helper-apc.R new file mode 100644 index 0000000..593515e --- /dev/null +++ b/tests/testthat/helper-apc.R @@ -0,0 +1,51 @@ +# Synthetic analysis_data for testing Stage 7 APC functions. +# Sourced automatically by testthat before test files. +# Column names are resolved from config so tests stay in sync with config.yml. + +make_apc_test_data <- function(cfg, n = 100, seed = 42) { + set.seed(seed) + + cycles <- factor(sample(as.character(1:11), n, replace = TRUE), levels = as.character(1:11)) + ages <- round(runif(n, 25, 65)) + smkdsty <- sample(c(1, 2, 3, 4, 5, 6), n, replace = TRUE, + prob = c(0.25, 0.1, 0.1, 0.1, 0.05, 0.4)) + + age_first <- ifelse( + smkdsty == 6, NA_real_, + pmin(round(runif(n, 13, 25)), ages - 1) + ) + # Former daily (cat 4) have years since quit; others NA + yrs_quit <- ifelse(smkdsty == 4, round(runif(n, 1, 20)), NA_real_) + + # Simulate survey years (2002–2022 range) and cohorts + survey_years <- sample(2002:2022, n, replace = TRUE) + cohorts <- survey_years - ages + + # Build data frame with placeholder names, then rename to config-resolved names + df <- data.frame( + cycle = cycles, + sex = sample(1:2, n, replace = TRUE), + age = ages, + province = sample(10:60, n, replace = TRUE), + weight = round(runif(n, 50, 500)), + smoking_status = smkdsty, + age_first_cigarette = age_first, + years_since_quit = yrs_quit, + survey_year = survey_years, + cohort = cohorts, + stringsAsFactors = FALSE + ) + colnames(df) <- c( + survey_var(cfg, "cycle"), + survey_var(cfg, "sex"), + survey_var(cfg, "age"), + survey_var(cfg, "province"), + survey_var(cfg, "weight"), + survey_var(cfg, "smoking_status"), + survey_var(cfg, "age_first_cigarette"), + survey_var(cfg, "years_since_quit"), + "survey_year", + "cohort" + ) + df +} diff --git a/tests/testthat/setup.R b/tests/testthat/setup.R new file mode 100644 index 0000000..8c6c0ce --- /dev/null +++ b/tests/testthat/setup.R @@ -0,0 +1,12 @@ +# setup.R — loaded automatically by testthat before all test files +# Sources all R functions from the project root, making them available in tests. + +project_root <- normalizePath(file.path(dirname(dirname(getwd())))) + +r_files <- list.files( + file.path(project_root, "R"), + pattern = "\\.R$", + full.names = TRUE, + recursive = FALSE +) +invisible(lapply(r_files, source)) diff --git a/tests/testthat/test-apc-data.R b/tests/testthat/test-apc-data.R new file mode 100644 index 0000000..161a2aa --- /dev/null +++ b/tests/testthat/test-apc-data.R @@ -0,0 +1,127 @@ +test_that("derive_survey_year returns correct integer year for all 11 cycles", { + cfg <- config::get() + cycle_col <- survey_var(cfg, "cycle") + age_col <- survey_var(cfg, "age") + + data <- setNames( + data.frame( + factor(as.character(1:11), levels = as.character(1:11)), + rep(40, 11), + stringsAsFactors = FALSE + ), + c(cycle_col, age_col) + ) + + result <- derive_survey_year(data, cfg) + + # Cycle 1 (CCHS 1.1) collected Sept 2000 - Nov 2001: survey year 2001 + expected_years <- c(2001, 2003, 2005, 2008, 2010, 2012, 2014, 2016, 2018, 2020, 2022) + expect_equal(result$survey_year, expected_years) +}) + +test_that("derive_survey_year computes cohort as survey_year - round(age)", { + cfg <- config::get() + cycle_col <- survey_var(cfg, "cycle") + age_col <- survey_var(cfg, "age") + + data <- setNames( + data.frame( + factor("7", levels = as.character(1:11)), + 44, + stringsAsFactors = FALSE + ), + c(cycle_col, age_col) + ) + + result <- derive_survey_year(data, cfg) + # cycle 7 = 2014, age 44 → cohort = 2014 - 44 = 1970 + expect_equal(result$cohort, 1970L) +}) + +test_that("derive_survey_year stops on unknown cycle code", { + cfg <- config::get() + cycle_col <- survey_var(cfg, "cycle") + age_col <- survey_var(cfg, "age") + + data <- setNames( + data.frame(factor("99", levels = "99"), 40), + c(cycle_col, age_col) + ) + + expect_error(derive_survey_year(data, cfg), "Unknown SurveyCycle codes") +}) + +test_that("build_initiation_data: no numerator rows with age < initiation floor", { + cfg <- config::get() + data <- make_apc_test_data(cfg) + + sex_col <- survey_var(cfg, "sex") + result <- build_initiation_data(data[data[[sex_col]] == 1, ], cfg) + + init_rows <- result[result$event == 1, ] + expect_true(all(init_rows$age >= survey_bound(cfg, "age_first_cigarette", "min"))) +}) + +test_that("build_initiation_data: no rows with cohort < cohort_min", { + cfg <- config::get() + data <- make_apc_test_data(cfg) + + result <- build_initiation_data(data, cfg) + expect_true(all(result$cohort >= cfg$apc$cohort_min)) +}) + +test_that("build_initiation_data: denominator period within [period_min, period_max]", { + cfg <- config::get() + data <- make_apc_test_data(cfg) + + sex_col <- survey_var(cfg, "sex") + result <- build_initiation_data(data[data[[sex_col]] == 1, ], cfg) + denom <- result[result$event == 0, ] + + expect_true(all(denom$period >= cfg$apc$period_min)) + expect_true(all(denom$period <= cfg$apc$period_max)) +}) + +test_that("build_cessation_data: only ever-daily smokers in cessation data", { + cfg <- config::get() + data <- make_apc_test_data(cfg) + + # build_cessation_data accepts current daily (1), occ former daily (2), and former daily (4) + # smoking_status category 3 (always occasional) and 5 (former occasional) are excluded + result <- build_cessation_data(data, cfg) + # Cessation events (event=1) come from former daily smokers — we can't check + # smoking_status directly from the output, but we can verify the function runs without error + # and produces a valid data frame + expect_true(is.data.frame(result)) + expect_true(all(c("age", "cohort", "period", "event", "weight") %in% names(result))) +}) + +test_that("no missing weight in any output element", { + cfg <- config::get() + data <- make_apc_test_data(cfg) + + result_init <- build_initiation_data(data, cfg) + result_cess <- build_cessation_data(data, cfg) + + expect_false(anyNA(result_init$weight)) + expect_false(anyNA(result_cess$weight)) +}) + +test_that("apply_survival_correction: peto returns data unchanged", { + cfg <- config::get() + + df <- data.frame(age = 1:5, cohort = 1970:1974, period = 1985:1989, + event = c(1,0,0,1,0), weight = c(100, 200, 150, 300, 250)) + + result <- apply_survival_correction(df, cfg) + expect_equal(result$weight, df$weight) +}) + +test_that("apply_survival_correction: mport raises not-implemented error", { + cfg <- config::get() + cfg$apc$mortality_method <- "mport" + + df <- data.frame(age = 1, cohort = 1970, period = 1985, event = 0, weight = 100) + expect_error(apply_survival_correction(df, cfg), "not yet implemented") +}) + diff --git a/tests/testthat/test-descriptive-tables.R b/tests/testthat/test-descriptive-tables.R new file mode 100644 index 0000000..9d64625 --- /dev/null +++ b/tests/testthat/test-descriptive-tables.R @@ -0,0 +1,260 @@ +library(testthat) +# R functions loaded via tests/testthat/setup.R + +# ---- Shared fixtures -------------------------------------------------------- + +make_variables_sheet <- function() { + data.frame( + variable = c("SurveyCycle", "DHH_SEX", "DHH_AGE", "SMKDSTY"), + label = c("Survey cycle", "Sex", "Age", "Smoking status"), + variableType = c("Categorical", "Categorical", "Continuous", "Categorical"), + section = c("Sociodemographics", "Sociodemographics", + "Sociodemographics", "Health behaviour"), + units = c("N/A", "N/A", "Years", "N/A"), + role = c("design", "model-stratifier", "predictor", "predictor"), + stringsAsFactors = FALSE + ) +} + +make_variable_details_sheet <- function() { + data.frame( + variable = c( + "DHH_SEX", "DHH_SEX", + "SMKDSTY", "SMKDSTY", "SMKDSTY", + "DHH_AGE", "DHH_AGE", "DHH_AGE", + "SurveyCycle", "SurveyCycle" + ), + recEnd = c( + "1", "2", + "1", "2", "3", + "copy", "NA::a", "NA::b", + "1", "2" + ), + catLabel = c( + "Male", "Female", + "Daily", "Occasional", "Former", + "Age", "not applicable", "missing", + "2001", "2003" + ), + typeEnd = c( + "cat", "cat", + "cat", "cat", "cat", + "cont", "cont", "cont", + "cat", "cat" + ), + units = rep("N/A", 10), + stringsAsFactors = FALSE + ) +} + +make_study_data <- function(n = 100, seed = 42) { + set.seed(seed) + data.frame( + SurveyCycle = sample(1:2, n, replace = TRUE), + DHH_SEX = sample(c("1", "2"), n, replace = TRUE), + DHH_AGE = as.numeric(sample(15:80, n, replace = TRUE)), + SMKDSTY = sample(c("1", "2", "3"), n, replace = TRUE), + stringsAsFactors = FALSE + ) +} + +# ---- select_vars_by_role ---------------------------------------------------- + +test_that("select_vars_by_role returns correct variables", { + vs <- make_variables_sheet() + expect_equal(select_vars_by_role("predictor", vs), c("DHH_AGE", "SMKDSTY")) + expect_equal(select_vars_by_role("model-stratifier", vs), "DHH_SEX") + expect_equal(select_vars_by_role("design", vs), c("SurveyCycle", "WTS_M")[ + c("SurveyCycle", "WTS_M") %in% select_vars_by_role("design", vs) + ]) + expect_length(select_vars_by_role("nonexistent", vs), 0) +}) + +# ---- get_unique_rec_end_rows ------------------------------------------------ + +test_that("get_unique_rec_end_rows excludes NA rows by default", { + vds <- make_variable_details_sheet() + rows <- get_unique_rec_end_rows(vds, "SMKDSTY") + expect_false(any(rows$recEnd %in% c("NA::a", "NA::b", "NA::c"))) + expect_equal(nrow(rows), 3) +}) + +test_that("get_unique_rec_end_rows includes NA rows when requested", { + vds <- make_variable_details_sheet() + rows <- get_unique_rec_end_rows(vds, "DHH_AGE", include_NA = TRUE) + expect_true(any(rows$recEnd == "NA::a")) + expect_true(any(rows$recEnd == "NA::b")) +}) + +test_that("get_unique_rec_end_rows filters Func:: rows", { + vds <- data.frame( + variable = c("X", "X", "X"), + recEnd = c("1", "Func::foo", "2"), + catLabel = c("A", "B", "C"), + typeEnd = rep("cat", 3), + units = rep("N/A", 3), + stringsAsFactors = FALSE + ) + rows <- get_unique_rec_end_rows(vds, "X") + expect_false(any(grepl("Func::", rows$recEnd))) + expect_equal(nrow(rows), 2) +}) + +# ---- get_descriptive_data --------------------------------------------------- + +test_that("get_descriptive_data returns a data frame with expected columns", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + stratify_config <- list(all = list("DHH_SEX")) + result <- get_descriptive_data(data, vs, vds, c("DHH_AGE", "SMKDSTY"), + stratify_config) + + expect_s3_class(result, "data.frame") + expect_true(all(c("variable", "cat", "n", "groupBy_1", "groupByValue_1") + %in% colnames(result))) +}) + +test_that("get_descriptive_data produces rows for each sex stratum", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + stratify_config <- list(all = list("DHH_SEX")) + result <- get_descriptive_data(data, vs, vds, "DHH_AGE", stratify_config) + + male_rows <- result[!is.na(result$groupByValue_1) & + result$groupByValue_1 == "1", ] + female_rows <- result[!is.na(result$groupByValue_1) & + result$groupByValue_1 == "2", ] + expect_gt(nrow(male_rows), 0) + expect_gt(nrow(female_rows), 0) +}) + +test_that("get_descriptive_data continuous rows have numeric summary stats", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + stratify_config <- list(all = list("DHH_SEX")) + result <- get_descriptive_data(data, vs, vds, "DHH_AGE", stratify_config) + + # Filter to real strata (not the NA::c empty stratum) + cont_rows <- result[ + result$variable == "DHH_AGE" & + is.na(result$cat) & + !is.na(result$groupByValue_1) & + result$groupByValue_1 %in% c("1", "2"), ] + expect_gt(nrow(cont_rows), 0) + expect_true(all(!is.na(cont_rows$median))) + expect_true(all(cont_rows$min <= cont_rows$median)) + expect_true(all(cont_rows$median <= cont_rows$max)) +}) + +test_that("get_descriptive_data categorical rows have n and percent", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + stratify_config <- list(all = list("DHH_SEX")) + result <- get_descriptive_data(data, vs, vds, "SMKDSTY", stratify_config) + + # Filter to real strata and real categories (not NA::c empty stratum) + cat_rows <- result[ + result$variable == "SMKDSTY" & + !is.na(result$cat) & + !grepl("NA::", result$cat) & + !is.na(result$groupByValue_1) & + result$groupByValue_1 %in% c("1", "2"), ] + expect_gt(nrow(cat_rows), 0) + expect_true(all(!is.na(cat_rows$n))) + # Percents should be in [0, 1] + expect_true(all(cat_rows$percent >= 0 & cat_rows$percent <= 1, na.rm = TRUE)) +}) + +# ---- create_descriptive_table ----------------------------------------------- + +test_that("create_descriptive_table returns a gt_tbl", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + stratify_config <- list(all = list("DHH_SEX")) + desc <- get_descriptive_data(data, vs, vds, c("DHH_AGE", "SMKDSTY"), + stratify_config) + tbl <- create_descriptive_table(desc, vs, vds, c("DHH_AGE", "SMKDSTY"), + column_stratifier = "DHH_SEX") + expect_s3_class(tbl, "gt_tbl") +}) + +test_that("create_descriptive_table accepts valid sections_order", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + stratify_config <- list(all = list("DHH_SEX")) + desc <- get_descriptive_data(data, vs, vds, c("DHH_AGE", "SMKDSTY"), + stratify_config) + # Both sections present — should succeed + tbl <- create_descriptive_table(desc, vs, vds, c("DHH_AGE", "SMKDSTY"), + column_stratifier = "DHH_SEX", + sections_order = c("Sociodemographics", + "Health behaviour")) + expect_s3_class(tbl, "gt_tbl") +}) + +# ---- create_cycle_specific_descriptive_table -------------------------------- + +test_that("create_cycle_specific_descriptive_table returns a gt_tbl", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + cycle_labels <- c("1" = "2001", "2" = "2003") + + tbl <- create_cycle_specific_descriptive_table( + study_data = data, + variables_sheet = vs, + variable_details_sheet = vds, + variables = c("DHH_AGE", "SMKDSTY"), + cycle_col = "SurveyCycle", + cycle_labels = cycle_labels, + column_stratifier = "DHH_SEX" + ) + expect_s3_class(tbl, "gt_tbl") +}) + +test_that("create_cycle_specific_descriptive_table errors with no cycle data", { + data <- make_study_data() + data$SurveyCycle <- NA + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + expect_error( + create_cycle_specific_descriptive_table( + study_data = data, variables_sheet = vs, + variable_details_sheet = vds, variables = c("DHH_AGE"), + cycle_col = "SurveyCycle", + cycle_labels = c(), column_stratifier = "DHH_SEX" + ), + regexp = "No valid cycle" + ) +}) + +# ---- get_cshm_desc_data ----------------------------------------------------- + +test_that("get_cshm_desc_data returns rows only for predictor variables", { + data <- make_study_data() + vs <- make_variables_sheet() + vds <- make_variable_details_sheet() + + result <- get_cshm_desc_data(data, vs, vds) + + expect_s3_class(result, "data.frame") + # Only predictor variables should appear (not design or model-stratifier) + returned_vars <- unique(result$variable) + expect_true("DHH_AGE" %in% returned_vars) + expect_true("SMKDSTY" %in% returned_vars) + expect_false("WTS_M" %in% returned_vars) + expect_false("SurveyCycle" %in% returned_vars) +}) diff --git a/tests/testthat/test-map-variable-data.R b/tests/testthat/test-map-variable-data.R deleted file mode 100644 index 99b72de..0000000 --- a/tests/testthat/test-map-variable-data.R +++ /dev/null @@ -1,39 +0,0 @@ -testthat::context("Testing map_variable_data") - -testthat::test_that("The function works with categorical variables", { - data <- data.frame( - a = c("1", "2"), - b = c("1", "2") - ) - variable <- "a" - variable_details_sheet <- data.frame( - variable = c("a", "a"), - typeEnd = c("cat", "cat"), - recEnd = c("1", "2") - ) - - expected_results <- list() - expected_results[[1]] <- list( - data = data[data$a == 1, ], - category = "1" - ) - expected_results[[2]] <- list( - data = data[data$a == 2, ], - category = "2" - ) - - actual_results <- list() - map_variable_data( - variable, - data, - variable_details_sheet, - function(data, category) { - actual_results[[length(actual_results) + 1]] <<- list( - data = data, - category = category - ) - } - ) - - testthat::expect_equal(actual_results, expected_results) -}) \ No newline at end of file diff --git a/variable sheets/CCHS_Content_Tracking_Tool_-_2012.xls b/variable sheets/CCHS_Content_Tracking_Tool_-_2012.xls deleted file mode 100644 index a7f6bca..0000000 Binary files a/variable sheets/CCHS_Content_Tracking_Tool_-_2012.xls and /dev/null differ diff --git a/variable sheets/ICES Data Dictionary Variables.xlsx b/variable sheets/ICES Data Dictionary Variables.xlsx deleted file mode 100644 index 3f6ba65..0000000 Binary files a/variable sheets/ICES Data Dictionary Variables.xlsx and /dev/null differ diff --git a/variable sheets/variable_details.csv b/variable sheets/variable_details.csv deleted file mode 100644 index 4a68806..0000000 --- a/variable sheets/variable_details.csv +++ /dev/null @@ -1,3447 +0,0 @@ -variable,dummyVariable,typeEnd,databaseStart,variableStart,ICES confirmation,typeStart,recEnd,numValidCat,catLabel,catLabelLong,units,recStart,catStartLabel,variableStartShortLabel,variableStartLabel,notes,, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","DerivedVar::[PAC_4A_cont, PAC_4B_cont]",,N/A,Func::active_transport1_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont]",,N/A,Func::active_transport2_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[PAYDVTTR, PAADVTRV]",,N/A,Func::active_transport3_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont, PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont, PAYDVTTR, PAADVTRV]",,N/A,NA::a,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont, PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont, PAYDVTTR, PAADVTRV]",,N/A,NA::b,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -ADL_01,ADL_01_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_01,ADL_01_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,2,2,No,No,N/A,"[1,2]",No,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_01_A,ADL_01_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,NA::b,4,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,,, -ADL_02,ADL_02_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help appointments/errands,Needs help - getting to appointments/errands,"In the 2001 CCHS, respondents were asked, ""Because of any condition or health problem, do you need the help of another person in shopping for groceries or other necessities?""",, -ADL_02,ADL_02_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_02,ADL_02_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,2,2,No,No,N/A,"[1,2]",No,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_02_A,ADL_02_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,NA::b,4,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_03,ADL_03_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_03,ADL_03_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,2,2,No,No,N/A,"[1,2]",No,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help housework,Needs help - doing housework,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_03_A,ADL_03_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,NA::b,4,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,,, -ADL_04,ADL_04_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_04,ADL_04_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,2,2,No,No,N/A,"[1,2]",No,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal care,Needs help - personal care,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_04_A,ADL_04_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,NA::b,4,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,,, -ADL_05,ADL_05_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_05,ADL_05_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,2,2,No,No,N/A,"[1,2]",No,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_05_A,ADL_05_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,NA::b,4,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,,, -ADL_06,ADL_06_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_06,ADL_06_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,2,2,No,No,N/A,"[1,2]",No,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal finances,Needs help - looking after finances,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_06_A,ADL_06_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,NA::b,4,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,,, -ADL_07,ADL_07_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help heavy household chores,Needs help - heavy household chores,,, -ADL_der,ADL_der_catN/A_Func::adl_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,Func::adl_fun,N/A,N/A,N/A,N/A,N/A,N/A,Derived help tasks,Derived needs help with tasks,"Derived variable based on ADL_01, ADL_02, ADL_03, ADL_04, ADL_05",, -ADL_der,ADL_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,1,2,Needs help with tasks,Needs help with tasks,N/A,N/A,Needs help with tasks,Derived help tasks,Derived needs help with tasks,,, -ADL_der,ADL_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,2,2,Does not need help with tasks,Does need help with tasks,N/A,N/A,Does need help with tasks,Derived help tasks,Derived needs help with tasks,,, -ADL_der,ADL_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,NA::b,2,missing,missing,N/A,N/A,Does need help with tasks,Derived help tasks,Derived needs help with tasks,,, -ADL_score_5,ADL_score_5_catN/A_Func::adl_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,Func::adl_score_5_fun,N/A,N/A,N/A,N/A,N/A,N/A,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,0,6,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,Needs help with 0 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,1,6,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,Needs help with at least 1 task,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,2,6,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,Needs help with at least 2 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,3,6,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,Needs help with at least 3 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,4,6,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,Needs help with at least 4 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,5,6,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,Needs help with at least 5 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,NA::b,6,missing,missing,N/A,N/A,missing,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_catN/A_Func::adl_score_6_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,Func::adl_score_6_fun,N/A,N/A,N/A,N/A,N/A,N/A,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,0,7,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,Needs help with 0 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,1,7,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,Needs help with at least 1 task,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,2,7,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,Needs help with at least 2 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,3,7,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,Needs help with at least 3 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,4,7,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,Needs help with at least 4 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,5,7,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,Needs help with at least 5 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,6,7,Needs help with at least 6 tasks,Needs help with at least 6 tasks,N/A,N/A,Needs help with at least 6 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,NA::a,7,not applicable,not applicable,N/A,N/A,not applicable,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,NA::b,7,missing,missing,N/A,N/A,missing,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADLF6R,ADLF6R_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,1,2,Yes,Yes,N/A,1,Yes,Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,2,2,No,No,N/A,2,No,Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,NA::b,2,missing,missing,N/A,else,else,Help tasks,Needs help with at least one task - (F),,, -ADM_RNO,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]",,cont,copy,N/A,Sequential record number,Sequential record number,N/A,"[1,999998]",Sequential record number,Sequential record number,Sequential record number,,, -ALC_005,ALC_005_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,1,2,yes,alcohol in the lifetime,N/A,1,"In lifetime, ever had a drink?",Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,2,2,no,no alcohol in lifetime,N/A,2,"In lifetime, ever had a drink?",Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,NA::b,2,missing,missing,N/A,else,else,Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_1,ALC_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,1,2,yes,alcohol in the past year,N/A,1,"Past year, have you drank alcohol",Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,2,2,no,no alcohol in past year,N/A,2,"Past year, have you drank alcohol",Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,NA::b,2,missing,missing,N/A,else,else,Alcohol past year,"Past year, have you drank alcohol",,, -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,1,3,Regular,Regular Drinker,N/A,1,Regular Drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,No drink in the last 12 months,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,1,3,Regular,Regular Drinker,N/A,1,Regular drinker,Drinker type (last 12 months),Type of drinker (12 months),"In CCHS cycles 2001, 2003, and 2005, ALCDTTM was derived from ALCDTYP in which former and never drinkers were combined into ""No drink in the last 12 months""",, -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,Former drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,4,Never drank,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTYP,ALCDTYP_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,1,4,Regular,Regular drinker,N/A,1,Regular drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,2,4,Occasional,Occasional drinker,N/A,2,Occasional drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,3,4,Former,Former drinker,N/A,3,Former drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,4,4,Never drank,Never drank,N/A,4,Never drank,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,NA::a,4,Not applicable,not applicable,N/A,6,not applicable,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type,Type of drinker - (D),Don't know (7) and refusal (8) not included in 2001 CCHS,, -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,NA::b,4,missing,missing,N/A,else,else,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,1,2,Former ,Former drinker,N/A,3,Former drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,2,2,Other,Other drinker,N/A,"[1,2]",Other drinker,Drinker type,Type of drinker - (D),"""Other"" drinker type derived from combining ""Regular"", ""Occasional"" and ""Never"" drink categories ",, -ALCDTYP_A,ALCDTYP_cat5_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,2,2,Other,Other drinker,N/A,[4],Other drinker,Drinker type,Type of drinker - (D),"""Other"" drinker type derived from combining ""Regular"", ""Occasional"" and ""Never"" drink categories ",, -ALCDTYP_A,ALCDTYP_cat5_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,NA::b,2,missing,missing,N/A,else,else,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,1,2,Former,Former drinker,N/A,3,Former drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,2,2,Other,Other drinker,N/A,"[1,2]",Other drinker,Drinker type,Type of drinker - (D),"""Other"" drinker type derived from combining ""Regular"" and ""Occasional"" drinker categories ",, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,NA::b,2,missing,missing,N/A,else,else,Drinker type,Type of drinker - (D),,, -ALW_1,ALW_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,1,2,yes,alcohol in the past week,N/A,1,"Past week, had any alcohol",Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,2,2,no,no alcohol in past week,N/A,2,"Past week, had any alcohol",Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,NA::b,2,missing,missing,N/A,else,else,Any alcohol past week,"Past week, had any alcohol",,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,copy,N/A,# of drinks - Sunday,Number of drinks on Sunday,drinks,"[0,50]",Number of drinks on Sunday,# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,copy,N/A,# of drinks - Monday,Number of drinks on Monday,drinks,"[0,50]",Number of drinks on Monday,# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,copy,N/A,# of drinks - Tuesday,Number of drinks on Tuesday,drinks,"[0,50]",Number of drinks on Tuesday,# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,copy,N/A,# of drinks - Wednesday,Number of drinks on Wednesday,drinks,"[0,90]",Number of drinks on Wednesday,# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,copy,N/A,# of drinks - Thursday,Number of drinks on Thursday,drinks,"[0,90]",Number of drinks on Thursday,# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,copy,N/A,# of drinks - Friday,Number of drinks on Friday,drinks,"[0,60]",Number of drinks on Friday,# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,copy,N/A,# of drinks - Saturday,Number of drinks on Saturday,drinks,"[0,50]",Number of drinks on Saturday,# of drinks - Saturday,Number of drinks on Saturday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Saturday,Number of drinks on Saturday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Saturday,Number of drinks on Saturday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Saturday,Number of drinks on Saturday,,, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,copy,N/A,drinks/day,drinks/day,drinks/day,"[0,40]",drinks per day,Average daily consumption,Average daily alcohol consumption,"2007-08, 09-10, 2010, 2012 cycles are categorical",, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,NA::a,N/A,not applicable,not applicable,drinks/day,996,Not applicable,Average daily consumption,Average daily alcohol consumption,,, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,NA::b,N/A,missing,missing,drinks/day,"[997,999]",don't know (997); refusal (998); not stated (9),Average daily consumption,Average daily alcohol consumption,,, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,NA::b,N/A,missing,missing,drinks/day,else,else,Average daily consumption,Average daily alcohol consumption,,, -ALWDVLTR_der,ALWDVLTR_der_catN/A_Func::low_drink_long_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,Func::low_drink_long_fun,N/A,N/A,N/A,N/A,N/A,N/A,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,,, -ALWDVLTR_der,ALWDVLTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,1,2,Increased long term health risk,Increased long term health risk due to drinking,N/A,1,Increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7.",, -ALWDVLTR_der,ALWDVLTR_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,2,2,No increased long term health risk,No increased long term health risk due to drinking,N/A,2,No increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,,, -ALWDVLTR_der,ALWDVLTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,,, -ALWDVSTR_der,ALWDVSTR_der_catN/A_Func::low_drink_short_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,Func::low_drink_short_fun,N/A,N/A,N/A,N/A,N/A,N/A,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7.",, -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,1,2,Increased short term health risk,Increased short term health risk due to drinking,N/A,1,Increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,,, -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,2,2,No increased short term health risk,No increased short term health risk due to drinking,N/A,2,No increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,,, -ALWDVSTR_der,ALWDVSTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,copy,N/A,drinks/week,drinks/week,drinks/week,"[0,449]",drinks per week,Drinks last week,Weekly consumption of alcohol,shown as categorical variable in CCHS 2014 cycle,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,drinks/week,996,not applicable (996),Drinks last week,Weekly consumption of alcohol,,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::b,N/A,missing,missing,drinks/week,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks last week,Weekly consumption of alcohol,,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::b,N/A,missing,missing,drinks/week,else,else,Drinks last week,Weekly consumption of alcohol,,, -binge_drinker,binge_drinker_catN/A_Func::binge_drinker_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,Func::binge_drinker_fun,N/A,N/A,N/A,N/A,N/A,N/A,Binge Drinker,Binge Drinker,"Derived from DHH_SEX, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7",, -binge_drinker,binge_drinker_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,1,2,Binge drinker,Binge drinker,N/A,N/A,Binge drinker,Binge Drinker,Binge Drinker,,, -binge_drinker,binge_drinker_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,2,2,Regular drinker,Regular drinker,N/A,N/A,Regular drinker,Binge Drinker,Binge Drinker,,, -binge_drinker,binge_drinker_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::a,2,Not applicable,Not applicable,N/A,N/A,Not applicable,Binge Drinker,Binge Drinker,,, -binge_drinker,binge_drinker_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Binge Drinker,Binge Drinker,,, -CCC_031,CCC_031_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,1,2,Asthma,Asthma,N/A,1,Yes (Do you have asthma?),Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,2,2,No asthma,No asthma,N/A,2,No (Do you have asthma?),Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,NA::b,2,missing,missing,N/A,else,else,Asthma,Do you have asthma?,,, -CCC_035,CCC_035_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,1,2,Asthma symptoms,Asthma symptoms,N/A,1,Yes,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,2,2,No asthma symptoms/attacks,No asthma symptoms/attacks,N/A,2,No,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable ,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,NA::b,2,else,else,N/A,else,else,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_036,CCC_036_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,1,2,Yes asthma medication,Yes asthma medication,N/A,1,Yes,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,2,2,No asthma medication,No asthma medication,N/A,2,No,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,NA::b,2,else,else,N/A,else,else,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_041,CCC_041_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,1,2,Fibromyalgia,Fibromyalgia,N/A,1,Yes (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/14,, -CCC_041,CCC_041_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,2,2,No Fibromyalgia,Fibromyalgia,N/A,2,No (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/15,, -CCC_041,CCC_041_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/16,, -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/17,, -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,NA::b,2,missing,missing,N/A,else,else,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/18,, -CCC_051,CCC_051_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,1,2,Arthritis/Rheumatism,Arthritis/Rheumatism,N/A,1,Yes (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,2,2,No Arthritis/Rheumatism,No Arthritis/Rheumatism,N/A,2,No (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,NA::b,2,missing,missing,N/A,else,else,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_061,CCC_061_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,1,2,Back Problems,Back Problems,N/A,1,Yes (Do you have back problems?),Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,2,2,No Back Problems,No Back Problems,N/A,2,No (Do you have back problems?),Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,NA::b,2,missing,missing,N/A,else,else,Back problems,Do you have back problems?,,, -CCC_071,CCC_071_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,1,2,Hypertension,Hypertension,N/A,1,Yes (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,2,2,No Hypertension,No Hypertension,N/A,2,No (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension,Do you have high blood pressure?,,, -CCC_072,CCC_072_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,1,2,Hypertension diagnosis,Hypertension diagnosis,N/A,1,Yes (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,2,2,No hypertension diagnosis,No hypertension diagnosis,N/A,2,No (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_073,CCC_073_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,1,2,Hypertension medication,Hypertension medication,N/A,1,Yes (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,2,2,No hypertension medication,No hypertension medication,N/A,2,No (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073A,CCC_073A_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,1,2,Pregnant when diagnosed with high blood pressure,Pregnant when diagnosed with high blood pressure,N/A,1,Yes,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,2,2,Not pregnant when diagnosed with high blood pressure,Not pregnant when diagnosed with high blood pressure,N/A,2,No,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,NA::b,2,else,else,N/A,else,else,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073B,CCC_073B_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,1,2,Yes high blood pressure other than during pregnancy,Yes high blood pressure other than during pregnancy,N/A,1,Yes,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,2,2,No high blood pressure other than during pregnancy,No high blood pressure other than during pregnancy,N/A,2,No,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,NA::b,2,else,else,N/A,else,else,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_075,CCC_075_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,1,2,High blood cholesterol,High blood cholesterol,N/A,1,High blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,Respondent are 18+ years old to answer this question in CCHS 2015-2018,, -CCC_075,CCC_075_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,2,2,No high blood cholesterol,No high blood cholesterol,N/A,2,No high blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_075,CCC_075_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,NA::b,2,missing,missing,N/A,else,else,Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_081,CCC_081_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,1,2,Migraine Headache,Migraine Headache,N/A,1,Yes (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?,"2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""",, -CCC_081,CCC_081_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,2,2,No Migraine Headache,No Migraine Headache,N/A,2,No (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?,,, -CCC_081,CCC_081_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Migraine Headache,Do you have migraine headaches?,,, -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Migraine Headache,Do you have migraine headaches?,,, -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,NA::b,2,missing,missing,N/A,else,else,Migraine Headache,Do you have migraine headaches?,,, -CCC_091,CCC_091_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,1,2,COPD/emphysema/bronchitis,COPD/emphysema/bronchitis,N/A,1,"Yes (Do you have COPD(eg bronchitis,emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,2,2,No COPD/emphysema/bronchitis,No COPD/emphysema/bronchitis,N/A,2,"No (Do you have COPD(eg bronchitis,emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_101,CCC_101_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,1,2,Diabetes,Diabetes,N/A,1,Yes (Do you have diabetes?),Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,2,2,No Diabetes,No Diabetes,N/A,2,No (Do you have diabetes?),Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Diabetes,Do you have diabetes?,,, -CCC_102_A,CCC_102_A_cat16_1,cat,cchs2003_p,[CCCCG102],,cat,1,16,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_2,cat,cchs2003_p,[CCCCG102],,cat,2,16,12 To 14 Years,12 To 14 Years,years,2,12 To 14 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_3,cat,cchs2003_p,[CCCCG102],,cat,3,16,15 To 19 Years,15 To 19 Years,years,3,15 To 19 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_4,cat,cchs2003_p,[CCCCG102],,cat,4,16,20 To 24 Years,20 To 24 Years,years,4,20 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_5,cat,cchs2003_p,[CCCCG102],,cat,5,16,25 To 29 Years,25 To 29 Years,years,5,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_6,cat,cchs2003_p,[CCCCG102],,cat,6,16,30 To 34 Years,30 To 34 Years,years,6,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_7,cat,cchs2003_p,[CCCCG102],,cat,7,16,35 To 39 Years,35 To 39 Years,years,7,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_8,cat,cchs2003_p,[CCCCG102],,cat,8,16,40 To 44 Years,40 To 44 Years,years,8,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_9,cat,cchs2003_p,[CCCCG102],,cat,9,16,45 To 49 Years,45 To 49 Years,years,9,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_10,cat,cchs2003_p,[CCCCG102],,cat,10,16,50 To 54 Years,50 To 54 Years,years,10,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_11,cat,cchs2003_p,[CCCCG102],,cat,11,16,55 To 59 Years,55 To 59 Years,years,11,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_12,cat,cchs2003_p,[CCCCG102],,cat,12,16,60 To 64 Years,60 To 64 Years,years,12,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_13,cat,cchs2003_p,[CCCCG102],,cat,13,16,65 To 69 Years,65 To 69 Years,years,13,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_14,cat,cchs2003_p,[CCCCG102],,cat,14,16,70 To 74 Years,70 To 74 Years,years,14,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_15,cat,cchs2003_p,[CCCCG102],,cat,15,16,75 To 79 Years,75 To 79 Years,years,15,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_16,cat,cchs2003_p,[CCCCG102],,cat,16,16,80 Years And Older,80 Years And Older,years,16,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::a,cat,cchs2003_p,[CCCCG102],,cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,cchs2003_p,[CCCCG102],,cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,cchs2003_p,[CCCCG102],,cat,NA::b,16,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,1,16,0 To 11 Years,0 To 11 Years,years,"[0,12)",0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,2,16,12 To 14 Years,12 To 14 Years,years,"[12,15)",12 To 14 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,3,16,15 To 19 Years,15 To 19 Years,years,"[15,20)",15 To 19 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,4,16,20 To 24 Years,20 To 24 Years,years,"[20,25)",20 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,5,16,25 To 29 Years,25 To 29 Years,years,"[25,30)",25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,6,16,30 To 34 Years,30 To 34 Years,years,"[30,35)",30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,7,16,35 To 39 Years,35 To 39 Years,years,"[35,40)",35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,8,16,40 To 44 Years,40 To 44 Years,years,"[40,45)",40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,9,16,45 To 49 Years,45 To 49 Years,years,"[45,50)",45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,10,16,50 To 54 Years,50 To 54 Years,years,"[50,55)",50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,11,16,55 To 59 Years,55 To 59 Years,years,"[55,60)",55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,12,16,60 To 64 Years,60 To 64 Years,years,"[60,65)",60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,13,16,65 To 69 Years,65 To 69 Years,years,"[65,70)",65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,14,16,70 To 74 Years,70 To 74 Years,years,"[70,75)",70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,15,16,75 To 79 Years,75 To 79 Years,years,"[75,80)",75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_16,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,16,16,80 Years And Older,80 Years And Older,years,"[80,96)",80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::a,16,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,16,missing,missing,years,"[997,999]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,16,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,1,15,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,2,15,12 To 17 Years,12 To 17 Years,years,2,12 To 17 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,3,15,18 To 24 Years,18 To 24 Years,years,3,18 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,4,15,25 To 29 Years,25 To 29 Years,years,4,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,5,15,30 To 34 Years,30 To 34 Years,years,5,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,6,15,35 To 39 Years,35 To 39 Years,years,6,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,7,15,40 To 44 Years,40 To 44 Years,years,7,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,8,15,45 To 49 Years,45 To 49 Years,years,8,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,9,15,50 To 54 Years,50 To 54 Years,years,9,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,10,15,55 To 59 Years,55 To 59 Years,years,10,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,11,15,60 To 64 Years,60 To 64 Years,years,11,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,12,15,65 To 69 Years,65 To 69 Years,years,12,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,13,15,70 To 74 Years,70 To 74 Years,years,13,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,14,15,75 To 79 Years,75 To 79 Years,years,14,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,15,15,80 Years And Older,80 Years And Older,years,15,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,15,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,1,15,0 To 11 Years,0 To 11 Years,years,"[0,12)",0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,2,15,12 To 17 Years,12 To 17 Years,years,"[12,18)",12 To 17 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,3,15,18 To 24 Years,18 To 24 Years,years,"[18,25)",18 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,4,15,25 To 29 Years,25 To 29 Years,years,"[25,30)",25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,5,15,30 To 34 Years,30 To 34 Years,years,"[30,35)",30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,6,15,35 To 39 Years,35 To 39 Years,years,"[35,40)",35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,7,15,40 To 44 Years,40 To 44 Years,years,"[40,45)",40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,8,15,45 To 49 Years,45 To 49 Years,years,"[45,50)",45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,9,15,50 To 54 Years,50 To 54 Years,years,"[50,55)",50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,10,15,55 To 59 Years,55 To 59 Years,years,"[55,60)",55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,11,15,60 To 64 Years,60 To 64 Years,years,"[60,65)",60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,12,15,65 To 69 Years,65 To 69 Years,years,"[65,70)",65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,13,15,70 To 74 Years,70 To 74 Years,years,"[70,75)",70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,14,15,75 To 79 Years,75 To 79 Years,years,"[75,80)",75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,15,15,80 Years And Older,80 Years And Older,years,"[80,96)",80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::a,15,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,15,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,15,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,13,N/A,Age,converted categorical age (12 to 14),years,2,12 To 14 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,17.5,N/A,Age,converted categorical age (15 to 19),years,3,15 To 19 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,82,N/A,Age,converted categorical age (80 plus),years,16,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,14.5,N/A,Age,converted categorical age (12 to 17),years,2,12 To 17 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,21,N/A,Age,converted categorical age (18 to 24),years,3,18 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,82,N/A,Age,converted categorical age (80 plus),years,15,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,copy,N/A,Age of diabetes diagnosis,Age of diabetes diagnosis,years,"[0,96]",Age of diabetes diagnosis,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,N/A,else,else,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_105,CCC_105_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,1,2,Yes diabetes and currently taking insulin,Yes diabetes and currently taking insulin,N/A,1,Yes,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,2,2,No diabetes and currently taking insulin,No diabetes and currently taking insulin,N/A,2,No,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_106,CCC_106_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,1,2,Yes diabetes pills to control blood sugar,Yes diabetes pills to control blood sugar,N/A,1,Yes,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_106_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,2,2,No diabetes pills to control blood sugar,No diabetes pills to control blood sugar,N/A,2,No,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_105_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_105_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_105_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_10A,CCC_10A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,1,2,Yes diabetes diagnosed when pregnant,Yes diabetes diagnosed when pregnant,N/A,1,Yes,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,2,2,No diabetes diagnosed when pregnant,No diabetes diagnosed when pregnant,N/A,2,No,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10B,CCC_10B_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,1,2,Yes diabetes diagnosed other than pregnant,Yes diabetes diagnosed other than pregnant,N/A,1,Yes,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,2,2,No diabetes diagnosed other than pregnant,No diabetes diagnosed other than pregnant,N/A,2,No,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10C,CCC_10C_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,1,6,< 1 month,< 1 month,N/A,1,< 1 month,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,2,6,1 to <2 months,1 to <2 months,N/A,2,1 to <2 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,3,6,2 to <6 months,2 to <6 months,N/A,3,2 to <6 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,4,6,6 months - < 1 year,6 months - < 1 year,N/A,4,6 months - < 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,5,6,>= 1 year,>= 1 year,N/A,5,>= 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,6,6,never,never,N/A,6,never,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,NA::b,6,else,else,N/A,else,else,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_111,CCC_111_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,1,2,Epilepsy,Epilepsy,N/A,1,Yes (Do you have epilepsy?),Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,2,2,No Epilepsy,No Epilepsy,N/A,2,No (Do you have epilepsy?),Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Epilepsy,Do you have epilepsy?,,, -CCC_121,CCC_121_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,1,2,Heart Disease,Heart Disease,N/A,1,Yes (Do you have heart disease?),Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,2,2,No Heart Disease,No Heart Disease,N/A,2,No (Do you have heart disease?),Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Heart Disease,Do you have heart disease?,,, -CCC_131,CCC_131_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,1,2,Cancer,Cancer,N/A,1,Yes (Do you have cancer?),Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,2,2,No Cancer,No Cancer,N/A,2,No (Do you have cancer?),Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,NA::b,2,missing,missing,N/A,else,else,Active Cancer,Do you have cancer?,,, -CCC_141,CCC_141_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,2,2,No stomach or intestinal ulcers,No stomach or intestinal ulcers,N/A,2,No,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,1,2,Yes stomach or intestinal ulcers,Yes stomach or intestinal ulcers,N/A,1,Yes,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,NA::b,2,else,else,N/A,else,else,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_151,CCC_151_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,1,2,Stroke,Stroke,N/A,1,Yes (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,2,2,No Stroke,No Stroke,N/A,2,No (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Stroke,Do you suffer from effects of stroke?,,, -CCC_161,CCC_161_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,1,2,Yes urinary incontinence,Yes urinary incontinence,N/A,1,Yes,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,2,2,No urinary incontinence,No urinary incontinence,N/A,2,No,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,NA::b,2,else,else,N/A,else,else,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_171,CCC_171_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,1,2,Bowel disorder,Bowel disorder,N/A,1,Yes (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,2,2,No bowel disorder,No bowel disorder,N/A,2,No (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,NA::b,2,missing,missing,N/A,else,else,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_17A,CCC_17A_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,2,5,Ulcer colitis,Ulcer colitis,N/A,2,Ulcer colitis,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,3,5,Irritable bowel,Irritable bowel,N/A,3,Irritable bowel,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,4,5,Incontinence,Incontinence,N/A,4,Incontinence,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,5,5,Other,Other,N/A,5,Other,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,NA::b,5,else,else,N/A,else,else,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,1,5,Crohn's disease,Crohn's disease,N/A,1,Crohn's disease,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_181,CCC_181_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,1,2,Yes alzheimer's disease or other dementia,Yes alzheimer's disease or other dementia,N/A,1,Yes,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,2,2,No alzheimer's disease or other dementia,No alzheimer's disease or other dementia,N/A,2,No,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,NA::b,2,else,else,N/A,else,else,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_251,CCC_251_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,1,2,Chronic fatigue,Chronic fatigue,N/A,1,Yes (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,2,2,No chronic fatigue,No chronic fatigue,N/A,2,No (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,NA::b,2,missing,missing,N/A,else,else,Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_261,CCC_261_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,1,2,Yes chemical sensitivities,Yes chemical sensitivities,N/A,1,Yes,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,2,2,No chemical sensitivities,No chemical sensitivities,N/A,2,No,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,NA::b,2,else,else,N/A,else,else,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_280,CCC_280_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,1,2,Has a mood disorder,Has a mood disorder,N/A,1,Yes (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,2,2,Does not have a mood disorder,Does not have a mood disorder,N/A,2,No (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Mood disorder,Do you have a mood disorder?,,, -CCC_290,CCC_290_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,1,2,Has an anxiety disorder,Has an anxiety disorder,N/A,1,Yes (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,2,2,Does not have an anxiety disorder,Does not have an anxiety disorder,N/A,2,No (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,NA::b,2,missing,missing,N/A,else,else,Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_31A,CCC_31A_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,1,2,Cancer diagnosis,Cancer diagnosis,N/A,1,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,2,2,No cancer diagnosis,No cancer diagnosis,N/A,2,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,NA::b,2,missing,missing,N/A,else,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_91A,CCC_91A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,1,2,Bronchitis,Chronic bronchitis,N/A,1,Yes (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,2,2,No bronchitis,No chronic bronchitis,N/A,2,No (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,NA::b,2,missing,missing,N/A,else,else,Bronchitis,Do you have chronic bronchitis?,,, -CCC_91E,CCC_91E_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,1,2,Emphysema,Emphysema,N/A,1,Yes (Do you have emphysema?),Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,2,2,No emphysema,No emphysema,N/A,2,No (Do you have emphysema?),Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,NA::b,2,missing,missing,N/A,else,else,Emphysema,Do you have emphysema?,,, -CCC_91F,CCC_91F_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,1,2,COPD,COPD,N/A,1,Yes (Do you have COPD?),COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,2,2,No COPD,No COPD,N/A,2,No (Do you have COPD?),COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,NA::b,2,missing,missing,N/A,else,else,COPD,Do you have COPD?,,, -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun1,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F]",,N/A,Func::COPD_Emph_der_fun1,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables,, -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091]",,N/A,Func::COPD_Emph_der_fun2,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables,, -COPD_Emph_der,COPD_Emph_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091]",,N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -COPD_Emph_der,COPD_Emph_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",,N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -COPD_Emph_der,COPD_Emph_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",,N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -COPD_Emph_der,COPD_Emph_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",,N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -DEPDVSEV,DEPDVSEV_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,1,6,No depression,No depression,N/A,0,No depression,Depression scale - severity of depression,Depression scale - severity of depression,This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015.,, -DEPDVSEV,DEPDVSEV_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,2,6,Minimal depression,Minimal depression,N/A,1,Minimal depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,3,6,Mild depression,Mild depression,N/A,2,Mild depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,4,6,Moderate depression,Moderate depression,N/A,3,Moderate depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,5,6,Moderately severe depression,Moderately severe depression,N/A,4,Moderately severe depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,6,6,Severe depression,Severe depression,N/A,5,Severe depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,NA::b,6,missing,missing,N/A,"[7,9]",not stated,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,NA::b,6,missing,missing,N/A,else,else,Depression scale - severity of depression,Depression scale - severity of depression,,, -DHH_OWN,DHH_OWN_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,1,2,Yes,Yes,N/A,1,Yes,Home ownership,Dwelling - owned by a member of hsld,"Prior to 2009, CCHS restricted this variable to participants who were not living in an institution. In 2011, CCHS changed wording of responses to (1) owner and (2) renter",, -DHH_OWN,DHH_OWN_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,2,2,No,No,N/A,2,No,Home ownership,Dwelling - owned by a member of hsld,,, -DHH_OWN,DHH_OWN_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Home ownership,Dwelling - owned by a member of hsld,,, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Home ownership,Dwelling - owned by a member of hsld,,, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,NA::b,2,missing,missing,N/A,else,else,Home ownership,Dwelling - owned by a member of hsld,,, -DHH_SEX,DHH_SEX_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,1,2,Male,Male,N/A,1,Male,Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,2,2,Female,Female,N/A,2,Female,Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Sex,Sex,,, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,1,5,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,2,5,age (20 to 39),age (20 to 39),years,"[4,7]",20 To 24 Years (4); 25 To 29 Years (5); 30 To 34 Years (6); 35 To 39 Years (7),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,3,5,age (40 to 59),age (40 to 59),years,"[8,11]",40 To 44 Years (8); 45 To 49 Years (9); 50 To 54 Years (10); 55 To 59 Years (11),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,4,5,age (60 to 79),age (60 to 79),years,"[12,15]",60 To 64 Years (12); 65 To 69 Years (13); 70 To 74 Years (14); 75 To 79 Years (15),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,5,5,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,1,5,age (12 to 19),age (12 to 19),years,"[12,20)",12 To 14 Years (1); 15 To 19 Years (2),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,2,5,age (20 to 39),age (20 to 39),years,"[20,",20 To 24 Years (3); 25 To 29 Years (4); 30 To 34 Years (5); 35 To 39 Years (6),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,3,5,age (40 to 59),age (40 to 59),years,"[7,10]",40 To 44 Years (7); 45 To 49 Years (8); 50 To 54 Years (9); 55 To 59 Years (10),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,4,5,age (60 to 79),age (60 to 79),years,"[11,14]",60 To 64 Years (11); 65 To 69 Years (12); 70 To 74 Years (13); 75 To 79 Years (14),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,5,5,age (80 plus),age (80 plus),years,15,80 Years or more (15),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,1,5,age (12 to 19),age (12 to 19),years,"[12,20)",12 to 19 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,2,5,age (20 to 39),age (20 to 39),years,"[20,40)",20 to 39 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,3,5,age (40 to 59),age (40 to 59),years,"[40,60)",40 to 59 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,4,5,age (60 to 79),age (60 to 79),years,"[60,80)",60 to 79 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,5,5,age (80 plus),age (80 plus),years,"[80, 102]",80 years or older,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat8_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::a,5,not applicable,not applicable,years,96,not applicable,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,5,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,5,else,else,years,else,else,Age,Age (20-year age groups),,, -DHHGAGE_A,DHHGAGE_A_cat15_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,1,15,age (12 to 14),age (12 to 14),years,1,12 to 14 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,2,15,age (15 to 19),age (15 to 19),years,2,15 to 19 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,3,15,age (20 to 24),age (20 to 24),years,3,20 To 24 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,4,15,age (25 to 29),age (25 to 29),years,4,25 To 29 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,5,15,age (30 to 34),age (30 to 34),years,5,30 To 34 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,6,15,age (35 to 39),age (35 to 39),years,6,35 To 39 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,7,15,age (40 to 44),age (40 to 44),years,7,40 To 44 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,8,15,age (45 to 49),age (45 to 49),years,8,45 To 49 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,9,15,age (50 to 54),age (50 to 54),years,9,50 To 54 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,10,15,age (55 to 59),age (55 to 59),years,10,55 To 59 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_11,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,11,15,age (60 to 64),age (60 to 64),years,11,60 To 64 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_12,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,12,15,age (65 to 69),age (65 to 69),years,12,65 To 69 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_13,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,13,15,age (70 to 74),age (70 to 74),years,13,70 To 74 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_14,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,14,15,age (75 to 79),age (75 to 79),years,14,75 To 79 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_15,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,15,15,age (80 plus),age (80 plus),years,15,80 Years or more,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,1,15,age (12 to 14),age (12 to 14),years,"[12,15)",12 to 14 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,2,15,age (15 to 19),age (15 to 19),years,"[15,20)",15 to 19 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,3,15,age (20 to 24),age (20 to 24),years,"[20,25)",20 To 24 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,4,15,age (25 to 29),age (25 to 29),years,"[25,30)",25 To 29 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,5,15,age (30 to 34),age (30 to 34),years,"[30,35)",30 To 34 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,6,15,age (35 to 39),age (35 to 39),years,"[35,40)",35 To 39 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,7,15,age (40 to 44),age (40 to 44),years,"[40,45)",40 To 44 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,8,15,age (45 to 49),age (45 to 49),years,"[45,50)",45 To 49 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,9,15,age (50 to 54),age (50 to 54),years,"[50,55)",50 To 54 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,10,15,age (55 to 59),age (55 to 59),years,"[55,60)",55 To 59 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,11,15,age (60 to 64),age (60 to 64),years,"[60,65)",60 To 64 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,12,15,age (65 to 69),age (65 to 69),years,"[65,70)",65 To 69 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,13,15,age (70 to 74),age (70 to 74),years,"[70,75)",70 To 74 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,14,15,age (75 to 79),age (75 to 79),years,"[75,80)",75 To 79 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,15,15,age (80 plus),age (80 plus),years,"[80,102]",80 Years or more,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",,cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",,cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,"Not applicable, don't know, refusal, not stated (96-99) were options only in CCHS 2003, but had zero responses",, -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",,cat,NA::b,15,missing,missing,years,else,else,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,1,16,age (12 to 14),age (12 to 14),years,1,12 To 14 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,2,16,age (15 to 17),age (15 to 17),years,2,15 To 17 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,3,16,age (18 to 19),age (18 to 19),years,3,18 To 19 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,4,16,age (20 to 24),age (20 to 24),years,4,20 To 24 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,5,16,age (25 to 29),age (25 to 29),years,5,25 To 29 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,6,16,age (30 to 34),age (30 to 34),years,6,30 To 34 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,7,16,age (35 to 39),age (35 to 39),years,7,35 To 39 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,8,16,age (40 to 44),age (40 to 44),years,8,40 To 44 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,9,16,age (45 to 49),age (45 to 49),years,9,45 To 49 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,10,16,age (50 to 54),age (50 to 54),years,10,50 To 54 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,11,16,age (55 to 59),age (55 to 59),years,11,55 To 59 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,12,16,age (60 to 64),age (60 to 64),years,12,60 To 64 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,13,16,age (65 to 69),age (65 to 69),years,13,65 To 69 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,14,16,age (70 to 74),age (70 to 74),years,14,70 To 74 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,15,16,age (75 to 79),age (75 to 79),years,15,75 To 79 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_16,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,16,16,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,1,16,age (12 to 14),age (12 to 14),years,"[12,15)",12 To 14 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,2,16,age (15 to 17),age (15 to 17),years,"[15,18)",15 To 17 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,3,16,age (18 to 19),age (18 to 19),years,"[18,20)",18 To 19 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,4,16,age (20 to 24),age (20 to 24),years,"[20,25)",20 To 24 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,5,16,age (25 to 29),age (25 to 29),years,"[25,30)",25 To 29 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,6,16,age (30 to 34),age (30 to 34),years,"[30,35)",30 To 34 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,7,16,age (35 to 39),age (35 to 39),years,"[35,40)",35 To 39 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,8,16,age (40 to 44),age (40 to 44),years,"[40,45)",40 To 44 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,9,16,age (45 to 49),age (45 to 49),years,"[45,50)",45 To 49 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,10,16,age (50 to 54),age (50 to 54),years,"[50,55)",50 To 54 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,11,16,age (55 to 59),age (55 to 59),years,"[55,60)",55 To 59 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,12,16,age (60 to 64),age (60 to 64),years,"[60,65)",60 To 64 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,13,16,age (65 to 69),age (65 to 69),years,"[65,70)",65 To 69 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,14,16,age (70 to 74),age (70 to 74),years,"[70,75)",70 To 74 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,15,16,age (75 to 79),age (75 to 79),years,"[75,80)",75 To 79 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_16,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,16,16,age (80 plus),age (80 plus),years,"[80,102]",80 Years or more,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,16,missing,missing,years,else,else,Age,Age,,, -DHHGAGE_C,DHHGAGE_C_catN/A_Func::age_cat_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,Func::age_cat_fun,N/A,N/A,N/A,years,N/A,N/A,Age,Categorical age,This variable is derived from DHHGAGE_cont,, -DHHGAGE_C,DHHGAGE_C_cat16_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,1,16,age (12 to 14),age (12 to 14),years,N/A,12 To 14 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,2,16,age (15 to 17),age (15 to 17),years,N/A,15 To 17 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,3,16,age (18 to 19),age (18 to 19),years,N/A,18 To 19 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,4,16,age (20 to 24),age (20 to 24),years,N/A,20 To 24 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,5,16,age (25 to 29),age (25 to 29),years,N/A,25 To 29 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,6,16,age (30 to 34),age (30 to 34),years,N/A,30 To 34 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,7,16,age (35 to 39),age (35 to 39),years,N/A,35 To 39 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,8,16,age (40 to 44),age (40 to 44),years,N/A,40 To 44 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,9,16,age (45 to 49),age (45 to 49),years,N/A,45 To 49 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,10,16,age (50 to 54),age (50 to 54),years,N/A,50 To 54 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,11,16,age (55 to 59),age (55 to 59),years,N/A,55 To 59 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,12,16,age (60 to 64),age (60 to 64),years,N/A,60 To 64 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,13,16,age (65 to 69),age (65 to 69),years,N/A,65 To 69 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,14,16,age (70 to 74),age (70 to 74),years,N/A,70 To 74 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,15,16,age (75 to 79),age (75 to 79),years,N/A,75 To 79 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,16,16,age (80 plus),age (80 plus),years,N/A,80 Years or more,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,NA::a,16,not applicable,not applicable,years,N/A,not applicable,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,NA::b,16,missing,missing,years,N/A,missing,Age,Categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 to 14 years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,17,N/A,Age,converted categorical age (15 to 19),years,2,15 to 19 years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,22,N/A,Age,converted categorical age (20 to 24),years,3,20 To 24 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,85,N/A,Age,converted categorical age (80 plus),years,15,80 Years or more,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 To 14 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,16,N/A,Age,converted categorical age (15 to 17),years,2,15 To 17 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,18.5,N/A,Age,converted categorical age (18 to 19),years,3,18 To 19 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,85,N/A,Age,converted categorical age (80 plus),years,16,80 Years or more,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",,cont,copy,N/A,Age,continuous age,years,"[12,102]",Age,Age,Converted categorical age,Share files have continuous age.,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cont,NA::b,N/A,missing,missing,years,else,else,Age,Converted categorical age,,, -DHH_AGE,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,copy,N/A,Age,continuous age,years,"[12,102]",Age,Age,Continuous age,Share files have continuous age.,, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Continuous age,,, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Continuous age,,, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,Age,Continuous age,,, -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,1,8,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,2,8,age (20 to 29),age (20 to 29),years,"[4,5]",20 to 24 Years (4); 25 To 29 Years (5),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,3,8,age (30 to 39),age (30 to 39),years,"[6,7]",30 To 34 Years (6); 35 To 39 Years (7),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,4,8,age (40 to 49),age (40 to 49),years,"[8,9]",40 To 44 Years (8); 45 To 49 Years (9),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,5,8,age (50 to 59),age (50 to 59),years,"[10,11]",50 To 54 Years (10); 55 To 59 Years (11),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,6,8,age (60 to 69),age (60 to 69),years,"[12,13]",60 To 64 Years (12); 65 To 69 Years (13),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,7,8,age (70 to 79),age (70 to 79),years,"[14,15]",70 To 74 Years (14); 75 To 79 Years (15),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,8,8,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,1,8,age (12 to 19),age (12 to 19),years,"[1,2]",12 To 14 Years (1); 15 To 19 Years (2),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,2,8,age (20 to 29),age (20 to 29),years,"[3,4]",20 to 24 Years (3); 25 To 29 Years (4),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,3,8,age (30 to 39),age (30 to 39),years,"[5,6]",30 To 34 Years (5); 35 To 39 Years (6),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,4,8,age (40 to 49),age (40 to 49),years,"[7,8]",40 To 44 Years (7); 45 To 49 Years (8),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,5,8,age (50 to 59),age (50 to 59),years,"[9,10]",50 To 54 Years (9); 55 To 59 Years (10),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,6,8,age (60 to 69),age (60 to 69),years,"[11,12]",60 To 64 Years (11); 65 To 69 Years (12),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,7,8,age (70 to 79),age (70 to 79),years,"[13,14]",70 To 74 Years (13); 75 To 79 Years (14),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,8,8,age (80 plus),age (80 plus),years,15,80 plus Years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,1,8,age (12 to 19),age (12 to 19),years,"[12,20)",12 to 19 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,2,8,age (20 to 29),age (20 to 29),years,"[20,30)",20 to 29 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,3,8,age (30 to 39),age (30 to 39),years,"[30,40)",30 to 39 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,4,8,age (40 to 49),age (40 to 49),years,"[40,50)",40 to 49 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,5,8,age (50 to 59),age (50 to 59),years,"[50,60)",50 to 59 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,6,8,age (60 to 69),age (60 to 69),years,"[60,70)",60 to 69 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,7,8,age (70 to 79),age (70 to 79),years,"[70,80)",70 to 79 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,8,8,age (80 plus),age (80 plus),years,"[80,102]",80 plus years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,8,else,else,years,else,else,Age,Age (10-year age groups),,, -DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,5,5,5+ persons,5 or more persons,N/A,5,5 or more persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,5,5,5+ persons,5 or more persons,N/A,"[5,16]",5 or more persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size,,, -DHHGMS,DHHGMS_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,1,4,Married,Married,N/A,1,Married,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,3,Widow/separated/divorced,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,4,4,Single/Never mar.,Single,N/A,4,Single/never married,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,1,4,Married,Married,N/A,1,Married,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,"[3,5]",Widow (3)/separated (4)/divorced (5),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,4,4,Single/Never mar.,Single,N/A,6,Single/never married (6),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,Marital status - (G),,, -DHH_MS,DHH_MS_cat4_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,1,4,Married,Married,N/A,1,Married,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_3,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,"[3,5]",Widow/Sep/Div,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_4,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,4,4,Single/Never mar.,Single/Never mar.,N/A,6,Single/Never mar.,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,1,4,Married/Common-law,Married/Common-law,N/A,"[1,2]",Married/Common-law,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,2,4,Sep/Div,Sep/Div,N/A,"[4,5]",Sep/Div,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_3,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,3,4,Widow,Widow,N/A,3,Widow,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_3,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,4,4,Single ,Single ,N/A,6,Single ,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",,N/A,Func::diet_score_fun,N/A,N/A,N/A,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",,, -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",,N/A,NA::b,N/A,missing,missing,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",,, -diet_score_cat3,diet_score_cat3N/A_Func::diet_score_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,Func::diet_score_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,1,3,Poor diet,Poor diet,N/A,1,Poor diet,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,2,3,Fair diet,Fair diet,N/A,2,Fair diet,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,3,3,Adequate diet,Adequate diet,N/A,3,Adequate diet,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,NA::a,3,not applicable,not applicable,N/A,NA::a,not applicable,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,NA::b,3,missing,missing,N/A,NA::b,missing,Categorical diet score,Categorical diet score,,, -DIS_10G,DIS_10G_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10H,DIS_10H_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DPS_02,DPS_02_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,1,2,Yes,Yes,N/A,1,Yes,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,2,2,No,No,N/A,2,No,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,NA::b,2,missing,missing,N/A,else,else,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_03,DPS_03_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,1,4,All day long,All day long,N/A,1,All day long,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,2,4,Most of the day,Most of the day,N/A,2,Most of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,3,4,About half of the day,About half of the day,N/A,3,About half of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,4,4,Less than half of a day,Less than half of a day,N/A,4,Less than half of a day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_04,DPS_04_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,1,3,Every day,Every day,N/A,1,Every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,2,3,Almost every day,Almost every day,N/A,2,Almost every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_05,DPS_05_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,2,2,No,No,N/A,2,No,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_06,DPS_06_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,2,2,No,No,N/A,2,No,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_07,DPS_07_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,1,4,Gained weight,Gained weight,N/A,1,Gained weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,2,4,Lost weight,Lost weight,N/A,2,Lost weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,3,4,Stayed about the same,Stayed about the same,N/A,3,Stayed about the same,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,4,4,Was on a diet,Was on a diet,N/A,4,Was on a diet,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,copy,N/A,Weight,Weight,N/A,"[1,90]",Weight,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (999.7); refusal (999.8); not stated (999.9),Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,NA::b,N/A,missing,missing,N/A,else,else,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08B,DPS_08B_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,1,2,Pounds,Pounds,N/A,1,Pounds,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,2,2,Kilograms,Kilograms,N/A,2,Kilograms,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,NA::b,2,missing,missing,N/A,9,not stated,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_09,DPS_09_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_10,DPS_10_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,1,3,Every night,Every night,N/A,1,Every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,2,3,Nearly every night,Nearly every night,N/A,2,Nearly every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_11,DPS_11_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_12,DPS_12_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,2,2,No,No,N/A,2,No,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_13,DPS_13_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,2,2,No,No,N/A,2,No,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of week feel this way,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,NA::b,N/A,missing,missing,weeks,"[97,99]",don't know (97); refusal (98); not stated (99),Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,NA::b,N/A,missing,missing,weeks,else,else,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPSDMT,DPSDMT_cat12_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,1,12,January,January,N/A,1,January,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,2,12,February,February,N/A,2,February,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,3,12,March,March,N/A,3,March,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,4,12,April,April,N/A,4,April,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,5,12,May,May,N/A,5,May,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,6,12,June,June,N/A,6,June,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,7,12,July,July,N/A,7,July,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,8,12,August,August,N/A,8,August,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,9,12,September,September,N/A,9,September,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,10,12,October,October,N/A,10,October,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,11,12,November,November,N/A,11,November,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,12,12,December,December,N/A,12,December,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,NA::a,12,not applicable,not applicable,N/A,96,not applicable,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,NA::b,12,missing,missing,N/A,99,not stated,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,NA::b,12,missing,missing,N/A,else,else,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,copy,N/A,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,N/A,"[0,0.90]",Predicted Probability,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,"Variable was documented as a categorical variable with categories 0, 0.05, 0.25, 0.50, 0.80, 0.90 across all cycles. See documentation for DPSDPP() for more details, or type ?DPSDPP in the console.",, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,NA::a,N/A,not applicable,not applicable,N/A,9.96,not applicable,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,,, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,NA::b,N/A,missing,missing,N/A,9.99,not stated,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,,, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,copy,N/A,Depression Scale - Short Form Score,Depression Scale - Short Form Score,N/A,"[0,8]",Short Form Score,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,NA::b,N/A,missing,missing,N/A,99,not stated,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of weeks felt depressed,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,NA::b,N/A,missing,missing,weeks,99,not stated,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,NA::b,N/A,missing,missing,weeks,else,else,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -EDUDR03,EDUDR03_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,"[3,4]",Post-sec. grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,3,Post-sec. grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories,CCHS 2015-2018 does not have don't know (7) or refusal (8),, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories,,, -EDUDR04,EDUDR04_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,1,4,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 4 categories,Slight change in wording of categories from CCHS 2011 onwards,, -EDUDR04,EDUDR04_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,2,4,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,3,4,Some post-secondary education,Some post-secondary education,N/A,3,Other post-sec.,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,4,4,Post-secondary graduate,Post-secondary graduate,N/A,4,Post-sec. grad,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 4 categories,CCHS 2001 does not have don't know (7) or refusal (8); CCHS 2001 ICES has don't know (7) and refusal (8),, -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,else,else,Highest education,Highest level/education - 4 categories,,, -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",,N/A,Func::energy_exp_fun,N/A,N/A,N/A,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,Used for all cycles. Derived from various physical activity measure for 18+ and 12-17 years old.,, -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",,N/A,NA::b,N/A,missing,missing,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,copy,N/A,Daily energry expenditure,Daily energry expenditure,N/A,"[0,43.5]",Daily energy expenditure - (D),Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::a,N/A,not applicable,not applicable,N/A,99.6,Not applicable,Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,N/A,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Daily energy expenditure,Daily energy expenditure,,, -FINF1,FINF1_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,1,2,Yes,Yes,N/A,1,Yes,Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,2,2,No,No,N/A,2,No,Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Some food insecurity in past 12 months,,, -FLU_160,FLU_160_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,1,2,Yes,Yes,N/A,1,Yes,Ever had a flu shot,Have you ever had a flu shot?,"In 2007, question was reworded to ""Have you ever had a seasonal flu shot?"" In 2015-2018, question was reworded to ""Have you ever had a seasonal flu shot, excluding the H1N1 flu shot?""",, -FLU_160,FLU_160_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,2,2,No,No,N/A,2,No,Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_160,FLU_160_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,NA::b,2,missing,missing,N/A,else,else,Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_162,FLU_162_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,1,3,<1 year ago,<1 year ago,N/A,1,<1 year ago,Last time had flu shot,When did you have your last flu shot?,"In 2015-2018, question was reworded to ""When did you have your last seasonal flu shot?""",, -FLU_162,FLU_162_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,2,3,1-<2 years ago,1-<2 years ago,N/A,2,1-<2 years ago,Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,3,3,2 years ago or more,2 years ago or more,N/A,3,2 years ago or more,Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,NA::b,3,missing,missing,N/A,else,else,Last time had flu shot,When did you have your last flu shot?,,, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,2,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,"This variable is derived from FINF1, FSCDHFS, FSCDHFS2 by dichotomizing food insecurity into 2 categories. See ?food_insecurity_der for more details",, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_1,cat,cchs2005_p,[FSCEDHFS],,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,3,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,cchs2005_p,[FSCEDHFS],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,,, -FSCDHFS,FSCDHFS_cat4_0,cat,cchs2005_p,[FSCEDHFS],,cat,0,4,Secure,Secure,N/A,0,Secure,Food security,Household food security status - (D),CCHS 2005 has different categories from other CCHS cycles so new variable created,, -FSCDHFS,FSCDHFS_cat4_1,cat,cchs2005_p,[FSCEDHFS],,cat,1,4,Without hunger,Without hunger,N/A,1,Without hunger,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,4,W/mod. hunger,With moderate hunger,N/A,2,With moderate hunger,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_3,cat,cchs2005_p,[FSCEDHFS],,cat,3,4,W/severe hunger,With severe hunger,N/A,3,With severe hunger,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_NA::a,cat,cchs2005_p,[FSCEDHFS],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,4,missing,missing,N/A,else,else,Food security,Household food security status - (D),,, -FSCDHFS2,FSCDHFS2_cat3_0,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,0,3,Food secure,Food secure,N/A,0,Food secure,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,1,3,Mod. food insec.,Mod. food insec.,N/A,1,Moderate food insecurity,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,2,3,Sev. food insec.,Sev. food insec.,N/A,2,Severe food insecurity,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,3,missing,missing,N/A,else,else,HC food security,Household food security status - (HC),,, -FVC_1A,FVC_1A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,1,5,Per day,Per day,N/A,1,Per day,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,"How often do you usually drink fruit juices such as orange, grapefruit or tomato? (For example, once a day, three times a week, or twice a month) ",, -FVC_1A,FVC_1A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,2,5,Per week,Per week,N/A,2,Per week,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,3,5,Per month,Per month,N/A,3,Per month,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,4,5,Per year,Per year,N/A,4,Per year,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,5,5,Never,Never,N/A,5,Never,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,NA::b,5,missing,missing,N/A,else,else,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,copy,N/A,Drinks fruit juices daily,Drinks fruit juices daily,N/A,"[1,20]",Drinks fruit juices - no. of times/day ,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,Unit of measure of value in FVC_1A. ,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,copy,N/A,Drinks fruit juices weekly,Drinks fruit juices weekly,N/A,"[1,50]",Drinks fruit juices - no. of times/week,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,Unit of measure of value in FVC_1A. ,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,copy,N/A,Drinks fruit juices monthly,Drinks fruit juices monthly,N/A,"[1,75]",Drinks fruit juices - no. of times/month,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,Unit of measure of value in FVC_1A. ,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,copy,N/A,Drinks fruit juices yearly,Drinks fruit juices yearly,N/A,"[1,250]",Drinks fruit juices - no. of times/year,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,Unit of measure of value in FVC_1A. ,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,,, -FVC_2A,FVC_2A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats fruit unit,Eats fruit - reporting unit ,"Not counting juice, how often do you usually eat fruit? ",, -FVC_2A,FVC_2A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,5,5,Never,Never,N/A,5,Never,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,copy,N/A,Eats fruit daily,Eats fruit daily,N/A,"[1,20]",Eats fruit - no. of times/day ,Eats fruit daily,Eats fruit - no. of times/day ,Unit of measure of value in FVC_2A. ,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats fruit daily,Eats fruit - no. of times/day ,,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit daily,Eats fruit - no. of times/day ,,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit daily,Eats fruit - no. of times/day ,,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,copy,N/A,Eats fruit weekly,Eats fruit weekly,N/A,"[1,54]",Eats fruit - no. of times/week,Eats fruit weekly,Eats fruit - no. of times/week,Unit of measure of value in FVC_2A. ,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats fruit weekly,Eats fruit - no. of times/week,,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit weekly,Eats fruit - no. of times/week,,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit weekly,Eats fruit - no. of times/week,,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,copy,N/A,Eats fruit monthly,Eats fruit monthly,N/A,"[1,105]",Eats fruit - no. of times/month,Eats fruit monthly,Eats fruit - no. of times/month,Unit of measure of value in FVC_2A. ,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats fruit monthly,Eats fruit - no. of times/month,,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit monthly,Eats fruit - no. of times/month,,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit monthly,Eats fruit - no. of times/month,,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,copy,N/A,Eats fruit yearly,Eats fruit yearly,N/A,"[1,350]",Eats fruit - no. of times/year,Eats fruit yearly,Eats fruit - no. of times/year,Unit of measure of value in FVC_2A. ,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats fruit yearly,Eats fruit - no. of times/year,,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit yearly,Eats fruit - no. of times/year,,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit yearly,Eats fruit - no. of times/year,,, -FVC_3A,FVC_3A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats green salad unit,Eats green salad - reporting unit ,How often do you (usually) eat green salad? ,, -FVC_3A,FVC_3A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,5,5,Never,Never,N/A,5,Never,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,copy,N/A,Eats green salad daily,Eats green salad daily,N/A,"[1,14]",Eats green salad - no. of times/day ,Eats green salad daily,Eats green salad - no. of times/day ,Unit of measure of value in FVC_3A. ,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats green salad daily,Eats green salad - no. of times/day ,,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad daily,Eats green salad - no. of times/day ,,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad daily,Eats green salad - no. of times/day ,,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,copy,N/A,Eats green salad weekly,Eats green salad weekly,N/A,"[1,67]",Eats green salad - no. of times/week,Eats green salad weekly,Eats green salad - no. of times/week,Unit of measure of value in FVC_3A. ,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats green salad weekly,Eats green salad - no. of times/week,,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad weekly,Eats green salad - no. of times/week,,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad weekly,Eats green salad - no. of times/week,,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,copy,N/A,Eats green salad monthly,Eats green salad monthly,N/A,"[1,47]",Eats green salad - no. of times/month,Eats green salad monthly,Eats green salad - no. of times/month,Unit of measure of value in FVC_3A. ,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats green salad monthly,Eats green salad - no. of times/month,,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad monthly,Eats green salad - no. of times/month,,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad monthly,Eats green salad - no. of times/month,,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,copy,N/A,Eats green salad yearly,Eats green salad yearly,N/A,"[1,330]",Eats green salad - no. of times/year,Eats green salad yearly,Eats green salad - no. of times/year,Unit of measure of value in FVC_3A. ,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats green salad yearly,Eats green salad - no. of times/year,,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad yearly,Eats green salad - no. of times/year,,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad yearly,Eats green salad - no. of times/year,,, -FVC_4A,FVC_4A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats potatoes unit,Eats potatoes - reporting unit ,"How often do you usually eat potatoes, not including french fries, fried potatoes, or potato chips? ",, -FVC_4A,FVC_4A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,5,5,Never,Never,N/A,5,Never,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,copy,N/A,Eats potatoes daily,Eats potatoes daily,N/A,"[1,17]",Eats potatoes - no. of times/day ,Eats potatoes daily,Eats potatoes - no. of times/day ,Unit of measure of value in FVC_4A. ,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats potatoes daily,Eats potatoes - no. of times/day ,,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes daily,Eats potatoes - no. of times/day ,,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes daily,Eats potatoes - no. of times/day ,,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,copy,N/A,Eats potatoes weekly,Eats potatoes weekly,N/A,"[1,69]",Eats potatoes - no. of times/week,Eats potatoes weekly,Eats potatoes - no. of times/week,Unit of measure of value in FVC_4A. ,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats potatoes weekly,Eats potatoes - no. of times/week,,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes weekly,Eats potatoes - no. of times/week,,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes weekly,Eats potatoes - no. of times/week,,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,copy,N/A,Eats potatoes monthly,Eats potatoes monthly,N/A,"[1,111]",Eats potatoes - no. of times/month,Eats potatoes monthly,Eats potatoes - no. of times/month,Unit of measure of value in FVC_4A. ,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats potatoes monthly,Eats potatoes - no. of times/month,,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes monthly,Eats potatoes - no. of times/month,,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes monthly,Eats potatoes - no. of times/month,,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,copy,N/A,Eats potatoes yearly,Eats potatoes yearly,N/A,"[1,365]",Eats potatoes - no. of times/year,Eats potatoes yearly,Eats potatoes - no. of times/year,Unit of measure of value in FVC_4A. ,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats potatoes yearly,Eats potatoes - no. of times/year,,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes yearly,Eats potatoes - no. of times/year,,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes yearly,Eats potatoes - no. of times/year,,, -FVC_5A,FVC_5A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats carrots unit,Eats carrots - reporting unit ,How often do you (usually) eat carrots? ,, -FVC_5A,FVC_5A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,5,5,Never,Never,N/A,5,Never,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,copy,N/A,Eats carrots daily,Eats carrots daily,N/A,"[1,15]",Eats carrots - no. of times/day ,Eats carrots daily,Eats carrots - no. of times/day ,Unit of measure of value in FVC_5A. ,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats carrots daily,Eats carrots - no. of times/day ,,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots daily,Eats carrots - no. of times/day ,,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots daily,Eats carrots - no. of times/day ,,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,copy,N/A,Eats carrots weekly,Eats carrots weekly,N/A,"[1,75]",Eats carrots - no. of times/week ,Eats carrots weekly,Eats carrots - no. of times/week ,Unit of measure of value in FVC_5A. ,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats carrots weekly,Eats carrots - no. of times/week ,,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots weekly,Eats carrots - no. of times/week ,,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots weekly,Eats carrots - no. of times/week ,,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,copy,N/A,Eats carrots monthly,Eats carrots monthly,N/A,"[1,115]",Eats carrots - no. of times/month,Eats carrots monthly,Eats carrots - no. of times/month,Unit of measure of value in FVC_5A. ,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats carrots monthly,Eats carrots - no. of times/month,,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots monthly,Eats carrots - no. of times/month,,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots monthly,Eats carrots - no. of times/month,,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,copy,N/A,Eats carrots yearly,Eats carrots yearly,N/A,"[1,270]",Eats carrots - no. of times/year,Eats carrots yearly,Eats carrots - no. of times/year,Unit of measure of value in FVC_5A. ,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats carrots yearly,Eats carrots - no. of times/year,,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots yearly,Eats carrots - no. of times/year,,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots yearly,Eats carrots - no. of times/year,,, -FVC_6A,FVC_6A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats other vegetables unit,Eats other vegetables - reporting unit ,"Not counting carrots, potatoes, or salad, how many servings of other vegetables do you usually eat? ",, -FVC_6A,FVC_6A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,5,5,Never,Never,N/A,5,Never,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,copy,N/A,Eats other vegetables daily,Eats other vegetables daily,N/A,"[1,20]",Eats other vegetables - servings/day ,Eats other vegetables daily,Eats other vegetables - servings/day ,Unit of measure of value in FVC_6A. ,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats other vegetables daily,Eats other vegetables - servings/day ,,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables daily,Eats other vegetables - servings/day ,,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables daily,Eats other vegetables - servings/day ,,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,copy,N/A,Eats other vegetables weekly,Eats other vegetables weekly,N/A,"[1,83]",Eats other vegetables - servings/week,Eats other vegetables weekly,Eats other vegetables - servings/week,Unit of measure of value in FVC_6A. ,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats other vegetables weekly,Eats other vegetables - servings/week,,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables weekly,Eats other vegetables - servings/week,,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables weekly,Eats other vegetables - servings/week,,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,NA::a,N/A,Eats other vegetables - servings/month,not applicable,N/A,"[1,120]",Eats other vegetables - servings/month,Eats other vegetables monthly,Eats other vegetables - servings/month,,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,copy,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats other vegetables monthly,Eats other vegetables - servings/month,Unit of measure of value in FVC_6A. ,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables monthly,Eats other vegetables - servings/month,,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables monthly,Eats other vegetables - servings/month,,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,copy,N/A,Eats other vegetables yearly,Eats other vegetables yearly,N/A,"[1,300]",Eats other vegetables - servings/year,Eats other vegetables yearly,Eats other vegetables - servings/year,Unit of measure of value in FVC_6A. ,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats other vegetables yearly,Eats other vegetables - servings/year,,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables yearly,Eats other vegetables - servings/year,,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables yearly,Eats other vegetables - servings/year,,, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,copy,N/A,Daily carrots,Daily carrots,N/A,"[0,30]",Daily consumption - carrots - (D),Carrot consumption,Daily consumption - carrots (D),2015 onward changed question to look at all orange-coloured vegetables,, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Carrot consumption,Daily consumption - carrots (D),,, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Carrot consumption,Daily consumption - carrots (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS",, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Carrot consumption,Daily consumption - carrots (D),,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,copy,N/A,Daily fruit,Daily fruit,N/A,"[0,73]",Daily consumption - fruit - (D),Fruit consumption,Daily consumption - fruit - (D),,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Fruit consumption,Daily consumption - fruit - (D),,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Fruit consumption,Daily consumption - fruit - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Fruit consumption,Daily consumption - fruit - (D),,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,copy,N/A,Daily juice,Daily juice,N/A,"[0,47]",Daily consumption - fruit juice - (D),Juice consumption,Daily consumption - fruit juice (D),,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Juice consumption,Daily consumption - fruit juice (D),,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Juice consumption,Daily consumption - fruit juice (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,else,else,Juice consumption,Daily consumption - fruit juice (D),,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,copy,N/A,Daily potatoes,Daily potatoes,N/A,"[0,30]",Daily consumption - potatoes - (D),Potato consumption,Daily consumption - potatoes (D),,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Potato consumption,Daily consumption - potatoes (D),,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Potato consumption,Daily consumption - potatoes (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,else,else,Potato consumption,Daily consumption - potatoes (D),,, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,copy,N/A,Daily salad,Daily salad,N/A,"[0,60]",Daily consumption - green salad - (D),Salad consumption,Daily consumption - green salad - (D),2015 onwards changed question to look at dark green vegetables,, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Salad consumption,Daily consumption - green salad - (D),,, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Salad consumption,Daily consumption - green salad - (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS",, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Salad consumption,Daily consumption - green salad - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,copy,N/A,Daily total fruits and vegetables,Daily total fruits and vegetables,N/A,"[0,70]",Daily consumption - total fruits and veg. - (D),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,else,else,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,9999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Not applicable (9999.6) not included in 2015-2016 CCHS,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,9999.9,don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,copy,N/A,Daily other vegetables,Daily other vegetables,N/A,"[0,30]",Daily consumption other vegetables - (D),Other veg consumption,Daily consumption other vegetables - (D),,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Other veg consumption,Daily consumption other vegetables - (D),,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Other veg consumption,Daily consumption other vegetables - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Other veg consumption,Daily consumption other vegetables - (D),,, -GEN_01,GEN_01_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,3,5,Good,Good,N/A,3,Good,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived health,Self-perceived health,,, -GEN_02A,GEN_02A_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,1,5,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,2,5,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,3,5,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,4,5,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,5,5,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,NA::b,5,missing,missing,N/A,else,else,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,10,N/A,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cont,Satisfaction with life in general,"For CCHS cycles 2003-2007, GEN_02A2 was derived from GEN_02A where the values were rescaled to match GEN_02A2",, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,7,N/A,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,5,N/A,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,2,N/A,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,NA::a,N/A,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,NA::b,N/A,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,0,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,1,N/A,1,1,N/A,1,1,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,2,N/A,2,2,N/A,2,2,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,3,N/A,3,3,N/A,3,3,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,4,N/A,4,4,N/A,4,4,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,5,N/A,5,5,N/A,5,5,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,6,N/A,6,6,N/A,6,6,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,7,N/A,7,7,N/A,7,7,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,8,N/A,8,8,N/A,8,8,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,9,N/A,9,9,N/A,9,9,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,10,N/A,Very satisfied,Very satisfied,N/A,10,Very satisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Life satisfaction_cont,Satisfaction with life in general,CCHS 2015-2018 does not have not applicable (96),, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02B,GEN_02B_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,3,5,Good,Good,N/A,3,Good,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived mental health,Self-perceived mental health,,, -GEN_07,GEN_07_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived life stress,Self-perceived life stress,CCHS 2015-2018 does not have not applicable (6),, -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived life stress,Self-perceived life stress,,, -GEN_09,GEN_09_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived work stress,Self-perceived work stress,,, -GEN_10,GEN_10_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,1,4,Very strong,Very strong,N/A,1,Very strong,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,2,4,Somewhat strong,Somewhat strong,N/A,2,Somewhat strong,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,3,4,Somewhat weak,Somewhat weak,N/A,3,Somewhat weak,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,4,4,Very weak,Very weak,N/A,4,Very weak,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,else,else,Sense of belonging,Sense of belonging in the community,,, -GEODPMF,GEODPMF_cat97_1,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,10911,97,EASTERN REGIONAL INTEGRATED HA,EASTERN REGIONAL INTEGRATED HA,N/A,10911,EASTERN REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_2,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,10912,97,CENTRAL REGIONAL INTEGRATED HA,CENTRAL REGIONAL INTEGRATED HA,N/A,10912,CENTRAL REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_3,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,10913,97,WESTERN/LABRADOR-GRENFELL REGIONAL HA,WESTERN/LABRADOR-GRENFELL REGIONAL HA,N/A,10913,WESTERN/LABRADOR-GRENFELL REGIONAL HA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_4,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,11901,97,PRINCE EDWARD ISLAND,PRINCE EDWARD ISLAND,N/A,11901,PRINCE EDWARD ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_5,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12910,97,SOUTH SHORE-SOUTH WEST NOVA,SOUTH SHORE-SOUTH WEST NOVA,N/A,12910,SOUTH SHORE-SOUTH WEST NOVA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_6,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12923,97,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,N/A,12923,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_7,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12930,97,COLCHESTER EAST HANTS-CUMBERLAND,COLCHESTER EAST HANTS-CUMBERLAND,N/A,12930,COLCHESTER EAST HANTS-CUMBERLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_8,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12940,97,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,N/A,12940,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_9,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12958,97,CAPE BRETON DISTRICT HEALTH AUTHORITY,CAPE BRETON DISTRICT HEALTH AUTHORITY,N/A,12958,CAPE BRETON DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_10,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12969,97,CAPITAL DISTRICT HEALTH AUTHORITY,CAPITAL DISTRICT HEALTH AUTHORITY,N/A,12969,CAPITAL DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_11,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13901,97,ZONE 1,ZONE 1,N/A,13901,ZONE 1,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_12,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13902,97,ZONE 2,ZONE 2,N/A,13902,ZONE 2,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_13,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13903,97,ZONE 3,ZONE 3,N/A,13903,ZONE 3,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_14,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13904,97,ZONES 4 AND 5,ZONES 4 AND 5,N/A,13904,ZONES 4 AND 5,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_15,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13906,97,ZONES 6 AND 7,ZONES 6 AND 7,N/A,13906,ZONES 6 AND 7,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_16,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24901,97,REGION DU BAS-SAINT-LAURENT,REGION DU BAS-SAINT-LAURENT,N/A,24901,REGION DU BAS-SAINT-LAURENT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_17,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24902,97,REGION DU SAGUENAY - LAC-SAINT-JEAN,REGION DU SAGUENAY - LAC-SAINT-JEAN,N/A,24902,REGION DU SAGUENAY - LAC-SAINT-JEAN,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_18,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24903,97,REGION DE LA CAPITALE-NATIONALE,REGION DE LA CAPITALE-NATIONALE,N/A,24903,REGION DE LA CAPITALE-NATIONALE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_19,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24904,97,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,N/A,24904,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_20,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24905,97,REGION DE L'ESTRIE,REGION DE L'ESTRIE,N/A,24905,REGION DE L'ESTRIE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_21,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24906,97,REGION DE MONTREAL,REGION DE MONTREAL,N/A,24906,REGION DE MONTREAL,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_22,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24907,97,REGION DE L'OUTAOUAIS,REGION DE L'OUTAOUAIS,N/A,24907,REGION DE L'OUTAOUAIS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_23,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24908,97,REGION DE L'ABITIBI-TEMISCAMINGUE,REGION DE L'ABITIBI-TEMISCAMINGUE,N/A,24908,REGION DE L'ABITIBI-TEMISCAMINGUE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_24,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24909,97,REGION DE LA COTE-NORD,REGION DE LA COTE-NORD,N/A,24909,REGION DE LA COTE-NORD,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_25,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24911,97,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,N/A,24911,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_26,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24912,97,REGION DE LA CHAUDIERE-APPALACHES,REGION DE LA CHAUDIERE-APPALACHES,N/A,24912,REGION DE LA CHAUDIERE-APPALACHES,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_27,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24913,97,REGION DE LAVAL,REGION DE LAVAL,N/A,24913,REGION DE LAVAL,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_28,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24914,97,REGION DE LANAUDIERE,REGION DE LANAUDIERE,N/A,24914,REGION DE LANAUDIERE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_29,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24915,97,REGION DES LAURENTIDES,REGION DES LAURENTIDES,N/A,24915,REGION DES LAURENTIDES,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_30,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24916,97,REGION DE LA MONTEREGIE,REGION DE LA MONTEREGIE,N/A,24916,REGION DE LA MONTEREGIE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_31,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35926,97,DISTRICT OF ALGOMA HEALTH UNIT,DISTRICT OF ALGOMA HEALTH UNIT,N/A,35926,DISTRICT OF ALGOMA HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_32,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35927,97,BRANT COUNTY HEALTH UNIT,BRANT COUNTY HEALTH UNIT,N/A,35927,BRANT COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_33,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35930,97,DURHAM REGIONAL HEALTH UNIT,DURHAM REGIONAL HEALTH UNIT,N/A,35930,DURHAM REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_34,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35931,97,ELGIN-ST THOMAS HEALTH UNIT,ELGIN-ST THOMAS HEALTH UNIT,N/A,35931,ELGIN-ST THOMAS HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_35,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35933,97,GREY BRUCE HEALTH UNIT,GREY BRUCE HEALTH UNIT,N/A,35933,GREY BRUCE HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_36,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35934,97,HALDIMAND-NORFOLK HEALTH UNIT,HALDIMAND-NORFOLK HEALTH UNIT,N/A,35934,HALDIMAND-NORFOLK HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_37,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35935,97,HALIBURTON-KAWARTHA-PINE RIDGE DHU,HALIBURTON-KAWARTHA-PINE RIDGE DHU,N/A,35935,HALIBURTON-KAWARTHA-PINE RIDGE DHU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_38,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35936,97,HALTON REGIONAL HEALTH UNIT,HALTON REGIONAL HEALTH UNIT,N/A,35936,HALTON REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_39,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35937,97,CITY OF HAMILTON HEALTH UNIT,CITY OF HAMILTON HEALTH UNIT,N/A,35937,CITY OF HAMILTON HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_40,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35938,97,HASTINGS AND PRINCE EDWARD COUNTIES HU,HASTINGS AND PRINCE EDWARD COUNTIES HU,N/A,35938,HASTINGS AND PRINCE EDWARD COUNTIES HU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_41,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35939,97,HURON AND PERTH HEALTH UNITS,HURON AND PERTH HEALTH UNITS,N/A,35939,HURON AND PERTH HEALTH UNITS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_42,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35940,97,CHATHAM-KENT HEALTH UNIT,CHATHAM-KENT HEALTH UNIT,N/A,35940,CHATHAM-KENT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_43,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35941,97,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,N/A,35941,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_44,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35942,97,LAMBTON HEALTH UNIT,LAMBTON HEALTH UNIT,N/A,35942,LAMBTON HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_45,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35943,97,LEEDS-GRENVILLE-LANARK DHU,LEEDS-GRENVILLE-LANARK DHU,N/A,35943,LEEDS-GRENVILLE-LANARK DHU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_46,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35944,97,MIDDLESEX-LONDON HEALTH UNIT,MIDDLESEX-LONDON HEALTH UNIT,N/A,35944,MIDDLESEX-LONDON HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_47,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35946,97,NIAGARA REGIONAL AREA HEALTH UNIT,NIAGARA REGIONAL AREA HEALTH UNIT,N/A,35946,NIAGARA REGIONAL AREA HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_48,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35947,97,NORTH BAY AND TIMISKAMING HEALTH UNITS,NORTH BAY AND TIMISKAMING HEALTH UNITS,N/A,35947,NORTH BAY AND TIMISKAMING HEALTH UNITS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_49,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35949,97,NORTHWESTERN HEALTH UNIT,NORTHWESTERN HEALTH UNIT,N/A,35949,NORTHWESTERN HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_50,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35951,97,CITY OF OTTAWA HEALTH UNIT,CITY OF OTTAWA HEALTH UNIT,N/A,35951,CITY OF OTTAWA HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_51,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35952,97,OXFORD COUNTY HEALTH UNIT,OXFORD COUNTY HEALTH UNIT,N/A,35952,OXFORD COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_52,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35953,97,PEEL REGIONAL HEALTH UNIT,PEEL REGIONAL HEALTH UNIT,N/A,35953,PEEL REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_53,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35955,97,PETERBOROUGH COUNTY-CITY HEALTH UNIT,PETERBOROUGH COUNTY-CITY HEALTH UNIT,N/A,35955,PETERBOROUGH COUNTY-CITY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_54,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35956,97,PORCUPINE HEALTH UNIT,PORCUPINE HEALTH UNIT,N/A,35956,PORCUPINE HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_55,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35957,97,RENFREW COUNTY AND DISTRICT HEALTH UNIT,RENFREW COUNTY AND DISTRICT HEALTH UNIT,N/A,35957,RENFREW COUNTY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_56,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35958,97,EASTERN ONTARIO HEALTH UNIT,EASTERN ONTARIO HEALTH UNIT,N/A,35958,EASTERN ONTARIO HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_57,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35960,97,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,N/A,35960,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_58,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35961,97,SUDBURY AND DISTRICT HEALTH UNIT,SUDBURY AND DISTRICT HEALTH UNIT,N/A,35961,SUDBURY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_59,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35962,97,THUNDER BAY DISTRICT HEALTH UNIT,THUNDER BAY DISTRICT HEALTH UNIT,N/A,35962,THUNDER BAY DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_60,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35965,97,WATERLOO HEALTH UNIT,WATERLOO HEALTH UNIT,N/A,35965,WATERLOO HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_61,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35966,97,WELLINGTON-DUFFERIN-GUELPH HU,WELLINGTON-DUFFERIN-GUELPH HU,N/A,35966,WELLINGTON-DUFFERIN-GUELPH HU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_62,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35968,97,WINDSOR-ESSEX COUNTY HEALTH UNIT,WINDSOR-ESSEX COUNTY HEALTH UNIT,N/A,35968,WINDSOR-ESSEX COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_63,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35970,97,YORK REGIONAL HEALTH UNIT,YORK REGIONAL HEALTH UNIT,N/A,35970,YORK REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_64,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35995,97,CITY OF TORONTO HEALTH UNIT,CITY OF TORONTO HEALTH UNIT,N/A,35995,CITY OF TORONTO HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_65,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46901,97,WINNIPEG RHA,WINNIPEG RHA,N/A,46901,WINNIPEG RHA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_66,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46902,97,PRAIRIE M. HEALTH,PRAIRIE M. HEALTH,N/A,46902,PRAIRIE M. HEALTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_67,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46903,97,INTERLAKE-EASTERN RHA,INTERLAKE-EASTERN RHA,N/A,46903,INTERLAKE-EASTERN RHA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_68,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46904,97,NORTHEN RHA,NORTHEN RHA,N/A,46904,NORTHEN RHA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_69,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46905,97,SOUTHEN HEALTH,SOUTHEN HEALTH,N/A,46905,SOUTHEN HEALTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_70,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47901,97,SUN COUNTRY/FIVE HILLS/CYPRESS,SUN COUNTRY/FIVE HILLS/CYPRESS,N/A,47901,SUN COUNTRY/FIVE HILLS/CYPRESS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_71,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47904,97,REGINA QU'APPELLE,REGINA QU'APPELLE,N/A,47904,REGINA QU'APPELLE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_72,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47905,97,SUNRISE/KELSEY TRAIL,SUNRISE/KELSEY TRAIL,N/A,47905,SUNRISE/KELSEY TRAIL,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_73,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47906,97,SASKATOON,SASKATOON,N/A,47906,SASKATOON,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_74,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47907,97,HEARTLAND/PRAIRIE NORTH,HEARTLAND/PRAIRIE NORTH,N/A,47907,HEARTLAND/PRAIRIE NORTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_75,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47909,97,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,N/A,47909,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_76,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48931,97,SOUTH ZONE,SOUTH ZONE,N/A,48931,SOUTH ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_77,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48932,97,CALGARY ZONE,CALGARY ZONE,N/A,48932,CALGARY ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_78,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48933,97,CENTRAL ZONE,CENTRAL ZONE,N/A,48933,CENTRAL ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_79,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48934,97,EDMONTON ZONE,EDMONTON ZONE,N/A,48934,EDMONTON ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_80,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48935,97,NORTH ZONE,NORTH ZONE,N/A,48935,NORTH ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_81,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59911,97,EAST KOOTENAY,EAST KOOTENAY,N/A,59911,EAST KOOTENAY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_82,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59912,97,KOOTENAY-BOUNDARY,KOOTENAY-BOUNDARY,N/A,59912,KOOTENAY-BOUNDARY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_83,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59913,97,OKANAGAN,OKANAGAN,N/A,59913,OKANAGAN,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_84,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59914,97,THOMPSON/CARIBOO,THOMPSON/CARIBOO,N/A,59914,THOMPSON/CARIBOO,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_85,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59921,97,FRASER EAST,FRASER EAST,N/A,59921,FRASER EAST,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_86,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59922,97,FRASER NORTH,FRASER NORTH,N/A,59922,FRASER NORTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_87,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59923,97,FRASER SOUTH,FRASER SOUTH,N/A,59923,FRASER SOUTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_88,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59931,97,RICHMOND,RICHMOND,N/A,59931,RICHMOND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_89,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59932,97,VANCOUVER,VANCOUVER,N/A,59932,VANCOUVER,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_90,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59933,97,NORTH SHORE/COAST GARIBALDI,NORTH SHORE/COAST GARIBALDI,N/A,59933,NORTH SHORE/COAST GARIBALDI,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_91,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59941,97,SOUTH VANCOUVER ISLAND,SOUTH VANCOUVER ISLAND,N/A,59941,SOUTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_92,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59942,97,CENTRAL VANCOUVER ISLAND,CENTRAL VANCOUVER ISLAND,N/A,59942,CENTRAL VANCOUVER ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_93,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59943,97,NORTH VANCOUVER ISLAND,NORTH VANCOUVER ISLAND,N/A,59943,NORTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_94,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59951,97,NORTHWEST,NORTHWEST,N/A,59951,NORTHWEST,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_95,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59952,97,NORTHERN INTERIOR,NORTHERN INTERIOR,N/A,59952,NORTHERN INTERIOR,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_96,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59953,97,NORTHEAST,NORTHEAST,N/A,59953,NORTHEAST,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_97,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,60901,97,YUKON/NORTHWEST TERRITORIES/NUNAVUT,YUKON/NORTHWEST TERRITORIES/NUNAVUT,N/A,60901,YUKON/NORTHWEST TERRITORIES/NUNAVUT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_NA::b,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,NA::b,97,missing,missing,N/A,else,else,Health Region - (G),Health Region - (G),,, -GEOGPRV,GEOGPRV_cat11_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,10,11,NL,Nfld. & Labrador,N/A,10,Nfld. & Labrador,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,11,11,PEI,Prince Edward Island,N/A,11,Prince Edward Island,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,12,11,NS,Nova Scotia,N/A,12,Nova Scotia,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,13,11,NB,New Brunswick,N/A,13,New Brunswick,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,24,11,QC,Quebec,N/A,24,Quebec,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,35,11,ON,Ontario,N/A,35,Ontario,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,46,11,MB,Manitoba,N/A,46,Manitoba,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,47,11,SK,Saskatchewan,N/A,47,Saskatchewan,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,48,11,AB,Alberta,N/A,48,Alberta,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,59,11,BC,British Columbia,N/A,59,British Columbia,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,60,11,YT/NT/NU,Yukon/NWT/Nunavut,N/A,"[60,62]",Yukon/NWT/Nunavut,Province,Province of residence of respondent (G),"CCHS2015_2016 and CCHS2017_2018 divides category into Yukon (60), NWT (61), and Nunavut (62)",, -GEOGPRV,GEOGPRV_cat11_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,NA::b,11,missing,missing,N/A,"[97,99]","don't know (97), refusal (98), not stated (99)",Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,NA::b,11,missing,missing,N/A,else,else,Province,Province of residence of respondent (G),,, -HCU_1AA,HCU_1AA_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,1,2,Yes,Yes (Has regular medical doctor),N/A,1,Yes (Has regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?,"In 2015-2018, question was reworded to ""Do you have a regular health care provider?""",, -HCU_1AA,HCU_1AA_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,2,2,No,No (Does not have regular medical doctor),N/A,2,No (Does not have regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?,,, -HCU_1AA,HCU_1AA_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Has regular medical doctor,Do you have a regular medical doctor?,,, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Has regular medical doctor,Do you have a regular medical doctor?,,, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,NA::b,2,missing,missing,N/A,else,else,Has regular medical doctor,Do you have a regular medical doctor?,,, -HUIDCOG,HUIDCOG_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,1,6,No cognit prob,No cognition problems,N/A,1,No cognit prob,HUI Cognition,Cognition prob. - function code - (D),CCHS 2007 onwards uses cognition levels which coincide with HUI Mark 3,, -HUIDCOG,HUIDCOG_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,2,6,Little difficult,Little difficulty,N/A,2,Little difficulty,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,3,6,Some forgetful,Some forgetful,N/A,3,Some forgetful,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,4,6,Forget/dif think,Forgetful/difficulty thinking,N/A,4,Forget/dif think,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,5,6,Very forgetful,Very forgetful,N/A,5,Very forgetful,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,6,6,Can't remember,Can't remember,N/A,6,Can't remember,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Cognition,Cognition prob. - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (97) or refusal (98)",, -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,NA::b,6,missing,missing,N/A,else,else,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,1,5,Happy in life,Happy in life,N/A,1,Happy in life,HUI Emotion,Emotional problems - function code - (D),CCHS 2007 onwards uses emotional levels which coincide with HUI Mark 3,, -HUIDEMO,HUIDEMO_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,2,5,Somewhat happy,Somewhat happy,N/A,2,Somewhat happy,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,3,5,Somewhat unhappy,Somewhat unhappy,N/A,3,Somewhat unhappy,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,4,5,Very unhappy,Very unhappy,N/A,4,Very unhappy,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,5,5,Life not worth,Life not worth,N/A,5,Life not worth,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Emotion,Emotional problems - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (7) or refusal (8)",, -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Emotion,Emotional problems - function code - (D),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,copy,N/A,HUI score,Health Utility Index (HUI3) - (D),N/A,"[-0.359,1]",Health Utility Index (HUI3) - (D),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,N/A,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,N/A,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,1,10,Decile 1,Decile 1,N/A,"[-0.359,-0.2231)",Decile 1,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,2,10,Decile 2,Decile 2,N/A,"[-0.2231,-0.0872)",Decile 2,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,3,10,Decile 3,Decile 3,N/A,"[-0.0872,0.0487)",Decile 3,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,4,10,Decile 4,Decile 4,N/A,"[0.0487,0.1846)",Decile 4,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,5,10,Decile 5,Decile 5,N/A,"[0.1846,0.3205)",Decile 5,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,6,10,Decile 6,Decile 6,N/A,"[0.3205,0.4564)",Decile 6,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,7,10,Decile 7,Decile 7,N/A,"[0.4564,0.5923)",Decile 7,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,8,10,Decile 8,Decile 8,N/A,"[0.5923,0.7282)",Decile 8,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,9,10,Decile 9,Decile 9,N/A,"[0.7282,0.8641)",Decile 9,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,10,10,Decile 10,Decile 10,N/A,"[0.8641,1]",Decile 10,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,10,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,10,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,10,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,1,20,Group 1,Group 1,N/A,"[-0.359,-0.29105)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,2,20,Group 2,Group 2,N/A,"[-0.29105,-0.2231)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,3,20,Group 3,Group 3,N/A,"[-0.2231,-0.15515)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,4,20,Group 4,Group 4,N/A,"[-0.15515,-0.0872)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,5,20,Group 5,Group 5,N/A,"[-0.0872,-0.01925)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,6,20,Group 6,Group 6,N/A,"[-0.01925,0.0487)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,7,20,Group 7,Group 7,N/A,"[0.0487,0.11665)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,8,20,Group 8,Group 8,N/A,"[0.11665,0.1846)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,9,20,Group 9,Group 9,N/A,"[0.1846,0.25255)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,10,20,Group 10,Group 10,N/A,"[0.25255,0.3205)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,11,20,Group 11,Group 11,N/A,"[0.3205,0.38845)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,12,20,Group 12,Group 12,N/A,"[0.38845,0.4564)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,13,20,Group 13,Group 13,N/A,"[0.4564,0.52435)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,14,20,Group 14,Group 14,N/A,"[0.52435,0.5923)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,15,20,Group 15,Group 15,N/A,"[0.5923,0.66025)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,16,20,Group 16,Group 16,N/A,"[0.66025,0.7282)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,17,20,Group 17,Group 17,N/A,"[0.7282,0.79615)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,18,20,Group 18,Group 18,N/A,"[0.79615,0.8641)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,19,20,Group 19,Group 19,N/A,"[0.8641,0.93205)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,20,20,Group 20,Group 20,N/A,"[0.93205,1]",Group 20,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,20,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,20,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,20,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,1,50,Group 1,Group 1,N/A,"[-0.359,-0.33182)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,2,50,Group 2,Group 2,N/A,"[-0.33182,-0.30464)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,3,50,Group 3,Group 3,N/A,"[-0.30464,-0.27746)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,4,50,Group 4,Group 4,N/A,"[-0.27746,-0.25028)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,5,50,Group 5,Group 5,N/A,"[-0.25028,-0.2231)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,6,50,Group 6,Group 6,N/A,"[-0.2231,-0.19592)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,7,50,Group 7,Group 7,N/A,"[-0.19592,-0.16874)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,8,50,Group 8,Group 8,N/A,"[-0.16874,-0.14156)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,9,50,Group 9,Group 9,N/A,"[-0.14156,-0.11438)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,10,50,Group 10,Group 10,N/A,"[-0.11438,-0.0872)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,11,50,Group 11,Group 11,N/A,"[-0.0872,-0.06002)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,12,50,Group 12,Group 12,N/A,"[-0.06002,-0.03284)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,13,50,Group 13,Group 13,N/A,"[-0.03284,-0.00566000000000004)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,14,50,Group 14,Group 14,N/A,"[-0.00566000000000004,0.02152)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,15,50,Group 15,Group 15,N/A,"[0.02152,0.0487)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,16,50,Group 16,Group 16,N/A,"[0.0487,0.07588)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,17,50,Group 17,Group 17,N/A,"[0.07588,0.10306)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,18,50,Group 18,Group 18,N/A,"[0.10306,0.13024)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,19,50,Group 19,Group 19,N/A,"[0.13024,0.15742)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,20,50,Group 20,Group 20,N/A,"[0.15742,0.1846)",Group 20,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_21,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,21,50,Group 21,Group 21,N/A,"[0.1846,0.21178)",Group 21,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_22,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,22,50,Group 22,Group 22,N/A,"[0.21178,0.23896)",Group 22,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_23,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,23,50,Group 23,Group 23,N/A,"[0.23896,0.26614)",Group 23,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_24,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,24,50,Group 24,Group 24,N/A,"[0.26614,0.29332)",Group 24,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_25,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,25,50,Group 25,Group 25,N/A,"[0.29332,0.3205)",Group 25,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_26,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,26,50,Group 26,Group 26,N/A,"[0.3205,0.34768)",Group 26,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_27,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,27,50,Group 27,Group 27,N/A,"[0.34768,0.37486)",Group 27,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_28,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,28,50,Group 28,Group 28,N/A,"[0.37486,0.40204)",Group 28,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_29,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,29,50,Group 29,Group 29,N/A,"[0.40204,0.42922)",Group 29,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_30,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,30,50,Group 30,Group 30,N/A,"[0.42922,0.4564)",Group 30,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_31,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,31,50,Group 31,Group 31,N/A,"[0.4564,0.48358)",Group 31,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_32,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,32,50,Group 32,Group 32,N/A,"[0.48358,0.51076)",Group 32,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_33,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,33,50,Group 33,Group 33,N/A,"[0.51076,0.53794)",Group 33,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_34,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,34,50,Group 34,Group 34,N/A,"[0.53794,0.56512)",Group 34,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_35,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,35,50,Group 35,Group 35,N/A,"[0.56512,0.5923)",Group 35,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_36,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,36,50,Group 36,Group 36,N/A,"[0.5923,0.61948)",Group 36,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_37,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,37,50,Group 37,Group 37,N/A,"[0.61948,0.64666)",Group 37,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_38,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,38,50,Group 38,Group 38,N/A,"[0.64666,0.67384)",Group 38,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_39,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,39,50,Group 39,Group 39,N/A,"[0.67384,0.70102)",Group 39,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_40,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,40,50,Group 40,Group 40,N/A,"[0.70102,0.7282)",Group 40,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_41,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,41,50,Group 41,Group 41,N/A,"[0.7282,0.75538)",Group 41,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_42,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,42,50,Group 42,Group 42,N/A,"[0.75538,0.78256)",Group 42,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_43,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,43,50,Group 43,Group 43,N/A,"[0.78256,0.80974)",Group 43,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_44,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,44,50,Group 44,Group 44,N/A,"[0.80974,0.83692)",Group 44,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_45,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,45,50,Group 45,Group 45,N/A,"[0.83692,0.8641)",Group 45,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_46,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,46,50,Group 46,Group 46,N/A,"[0.8641,0.89128)",Group 46,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_47,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,47,50,Group 47,Group 47,N/A,"[0.89128,0.91846)",Group 47,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_48,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,48,50,Group 48,Group 48,N/A,"[0.91846,0.94564)",Group 48,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_49,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,49,50,Group 49,Group 49,N/A,"[0.94564,0.97282)",Group 49,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_50,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,50,50,Group 50,Group 50,N/A,"[0.97282,1]",Group 50,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,50,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,50,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,50,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,3,3,Dext/need help,Needs help,N/A,3,Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Dexterity,"Dexterity trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)",Shared files use dexterity health status with more detailed categories. See derived variable documentation.,, -HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,3,3,Dext/need help,Needs help,N/A,"[3,6]",Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,2,3,Hear corrected,Hearing corrected,N/A,2,Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,3,Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,"Hearing problems - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)",Shared files use hearing health status with more detailed categories. See derived variable documentation.,, -HUIGHER,HUIGHER_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,2,3,Hear corrected,Hearing corrected,N/A,"[2,3]",Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,"[4,6]",Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUI06,HUI06_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,1,2,Able to hear in a group w/o hearing aid,Able to hear in a group without a hearing aid,N/A,1,Able to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,2,2,Unable to hear in a group w/o hearing aid,Unable to hear in a group without a hearing aid,N/A,2,Unable to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI07,HUI07_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,1,2,Able to hear in a group w/ hearing aid,Able to hear in a group with hearing aid,N/A,1,Able to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,2,2,Unable to hear in a group w/ hearing aid,Unable to hear in a group with hearing aid,N/A,2,Unable to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07A,HUI07_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Able to hear,HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,2,2,No,No,N/A,2,Unable to hear,HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,NA::a,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing,Hearing ability - Able to hear,,, -HUI08,HUI08_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Able to hear in quiet room without a hearing aid,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,2,2,No ,No,N/A,2,Unable to hear in quiet room without a hearing aid,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI09,HUI09_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_09, cchs2003_i::HUIC_09, [HUI_09]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Able to hear in quiet room with a hearing aid,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,2,2,No ,No ,N/A,2,Unable to hear in quiet room with a hearing aid ,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,3,4,Need mech supp.,Need mech supp.,N/A,3,Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,4,4,Can't walk,Can't walk,N/A,4,Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Mobility,"Mobility trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)",Shared files use amputation health status with more detailed categories. See derived variable documentation.,, -HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,3,4,Need mech supp.,Need mech supp.,N/A,"[3,4]",Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,4,4,Can't walk,Can't walk,N/A,"[5,6]",Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,2,2,Part/not underst,Part/not underst,N/A,2,Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Speech,"Speech trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)",Shared files use speech health status with more detailed categories. See derived variable documentation.,, -HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,2,2,Part/not underst,Part/not underst,N/A,"[2,5]",Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,5,Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Vision,"Vision trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)",Shared files use vision health status with more detailed categories. See derived variable documentation.,, -HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,"[5,6]",Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUPDPAD,HUPDPAD_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,1,5,No pain/discomf,No pain/discomf,N/A,1,No pain/discomf,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,2,5,Doesn't prev act,Doesn't prev act,N/A,2,Doesn't prev act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,3,5,Prevents few act,Prevents few act,N/A,3,Prevents few act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,4,5,Prev. some act,Prev. some act,N/A,4,Prev. some act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,5,5,Prev. most act,Prev. most act,N/A,5,Prev. most act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Pain,Act. prevent/pain - function code - (D),CCHS 2001 does not include don't know (7) or refusal (8),, -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Pain,Act. prevent/pain - function code - (D),,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, [HWTGBMI]",ICES confirmed,cont,copy,N/A,BMI,Body Mass Index,kg/m2,"[8.07,137.46]","BMI / self-report - (D,G)",BMI,"BMI / self-report - (D,G)","CCHS 2001 restricts BMI to ages 20-64. CCHS 2015-2016 uses adjusted BMI. Consider using using HWTGBMI_der for the most concistent BMI variable across all CCHS cycles. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console.",, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.6,Not applicable,BMI,"BMI / self-report - (D,G)","CCHS 2001 and 2003 codes not applicable and missing variables as 999.6 and 999.7-999.9 respectively, while CCHS 2005 onwards codes not applicable and missing variables as 999.96 and 999.7-999.99 respectively",, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,"BMI / self-report - (D,G)",Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,BMI,"BMI / self-report - (D,G)",,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,"BMI / self-report - (D,G)",,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,else,else,BMI,"BMI / self-report - (D,G)",,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADBMI, cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2015_2016_i::HWTDVBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,copy,N/A,BMI,Body Mass Index,kg/m3,"[8.07, 137.46]",BMI / self-report - (D),BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,kg/m4,999.6,Not applicable,BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m5,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,kg/m6,999.96,Not applicable,BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m7,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m8,else,else,BMI,BMI / self-report - (D),,, -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]",,N/A,Func::bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,"BMI variable derived from the harmonized height and weight variables. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console.",, -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]",,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,,, -HWTDBMI_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[HWTDHTM, HWTDWTK]",,N/A,Func::bmi_fun_D,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,,, -HWTDBMI_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[HWTDHTM, HWTDWTK]",,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4N/A_Func::bmi_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,Func::bmi_fun_cat,N/A,N/A,N/A,kg/m2,N/A,N/A,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i",DerivedVar::HWTDBMI_der_cat4,,N/A,Func::bmi_fun_cat_D,N/A,N/A,N/A,kg/m2,N/A,N/A,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI,Categorical body mass index,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,copy,N/A,Adjusted BMI,Adjusted body mass index,kg/m2,"[14.23,56.72]",Adjusted BMI,Adjusted BMI,Adjusted BMI,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,Adjusted BMI,Adjusted BMI,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Adjusted BMI,Adjusted BMI,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,NA::b,N/A,missing,missing,kg/m2,else,else,Adjusted BMI,Adjusted BMI,,, -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]",,N/A,Func::adjusted_bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,"Adjusted BMI variable derived from the harmonized sex, height and weight variables. See documentation for adjusted_bmi_fun() in derived variables for more details, or type ?adjusted_bmi_fun in the console.",, -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX,HWTGHTM, HWTGWTK]",,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,,, -HWTDCOR_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[DHH_SEX,HWTDHTM, HWTDWTK]",,N/A,Func::adjusted_bmi_fun_D,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,,, -HWTDCOR_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[DHH_SEX,HWTDHTM, HWTDWTK]",,N/A,NA::b,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.118,N/A,Height,converted height (3'8 IN - 44 inches),meters,1,3'8 IN - 44 inches,Height,"Height (metres)/self-reported - (D,G)","2001 and 2003 CCHS use inches, values converted to meters to 3 decimal points",, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.143,N/A,Height,converted height (3'9 IN - 45 inches),meters,2,3'9 IN - 45 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.168,N/A,Height,converted height (3'10 IN - 46 inches),meters,3,3'10 IN - 46 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.194,N/A,Height,converted height (3'11 IN - 47 inches),meters,4,3'11 IN - 47 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.219,N/A,Height,converted height (4'0 IN - 48 inches),meters,5,4'0 IN - 48 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.245,N/A,Height,converted height (4'1 IN - 49 inches),meters,6,4'1 IN - 49 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.27,N/A,Height,converted height (4'2 IN - 50 inches),meters,7,4'2 IN - 50 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.295,N/A,Height,converted height (4'3 IN - 51 inches),meters,8,4'3 IN - 51 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.321,N/A,Height,converted height (4'4 IN - 52 inches),meters,9,4'4 IN - 52 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.346,N/A,Height,converted height (4'5 IN - 53 inches),meters,10,4'5 IN - 53 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.372,N/A,Height,converted height (4'6 IN - 54 inches),meters,11,4'6 IN - 54 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.397,N/A,Height,converted height (4'7 IN - 55 inches),meters,12,4'7 IN - 55 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.422,N/A,Height,converted height (4'8 IN - 56 inches),meters,13,4'8 IN - 56 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.448,N/A,Height,converted height (4'9 IN - 57 inches),meters,14,4'9 IN - 57 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.473,N/A,Height,converted height (4'10 IN - 58 inches),meters,15,4'10 IN - 58 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.499,N/A,Height,converted height (4'11 in - 59 inches),meters,16,4'11 in - 59 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.524,N/A,Height,converted height (5'0 IN - 60 inches),meters,17,5'0 IN - 60 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.549,N/A,Height,converted height (5'1 IN - 61 inches),meters,18,5'1 IN - 61 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.575,N/A,Height,converted height (5'2 IN - 62 inches),meters,19,5'2 IN - 62 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.6,N/A,Height,converted height (5'3 IN - 63 inches),meters,20,5'3 IN - 63 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.626,N/A,Height,converted height (5'4 IN - 64 inches),meters,21,5'4 IN - 64 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.651,N/A,Height,converted height (5'5 IN - 65 inches),meters,22,5'5 IN - 65 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.676,N/A,Height,converted height (5'6 IN - 66 inches),meters,23,5'6 IN - 66 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.702,N/A,Height,converted height (5'7 IN - 67 inches),meters,24,5'7 IN - 67 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.727,N/A,Height,converted height (5'8 IN - 68 inches),meters,25,5'8 IN - 68 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.753,N/A,Height,converted height (5'9 IN - 69 inches),meters,26,5'9 IN - 69 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.778,N/A,Height,converted height (5'10 IN - 70 inches),meters,27,5'10 IN - 70 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.803,N/A,Height,converted height (5'11 IN - 71 inches),meters,28,5'11 IN - 71 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.829,N/A,Height,converted height (6'0 IN - 72 inches),meters,29,6'0 IN - 72 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.854,N/A,Height,converted height (6'1 IN - 73 inches),meters,30,6'1 IN - 73 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.93,N/A,Height,converted height (6'2 IN+ - 74+ inches),meters,31,6'2 IN+ - 74+ inches,Height,"Height (metres)/self-reported - (D,G)",74+ inches converted to 76 inches,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,NA::a,N/A,not applicable,not applicable,meters,96,not applicable,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,NA::b,N/A,missing,missing,meters,99,not stated (99),Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,copy,N/A,Height,Height,meters,"[0.914,2.134]",Height,Height,"Height (metres)/self-reported - (D,G)",Height is a reported in meters from 2005 CCHS onwards,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,NA::b,N/A,missing,missing,meters,"[9.997,9.999]","don't know (9.997), refusal (9.998), not stated (9.999)",Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)",,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,copy,N/A,Height,Height,meters,"[0.914, 2.134]",Height,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,NA::a,N/A,Height,Height,meters,9.996,not applicable,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,NA::b,N/A,Height,Height,meters,"[9.997,9.999]",don't know (9.997); refusal (9.998); not stated (9.999),Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,NA::b,N/A,Height,Height,meters,else,else,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,copy,N/A,Height,Height,meters,"[0.914, 2.134]",Height,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,NA::b,N/A,missing,missing,meters,"[9.997, 9.999]",don't know (9.997); refusal (9.998); not stated (9.999),Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,NA::b,N/A,missing,missing,meters,else,else,Height,Height (metres)/self-reported - (D),,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,copy,N/A,Weight,Weight - kilograms,kg,"[27.0,135.0]","Weight - kilograms (D, G)",Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,NA::b,N/A,missing,missing,kg,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,,cont,NA::a,N/A,not applicable,not applicable,kg,996,not applicable,Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,,cont,NA::b,N/A,missing,missing,kg,"[997,999]",don't know (997); refusal (998); not stated (999),Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,NA::b,N/A,missing,missing,kg,else,else,Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,copy,N/A,Weight,Weight - kilograms,kg,***,"Weight - kilograms (D, G)",Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg,"[999.97, 999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg,else,else,Weight,"Weight - kilograms (D, G)",,, -immigration_der,immigration_derN/A_Func::immigration_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,Func::immigration_fun,N/A,N/A,N/A,N/A,N/A,N/A,Immigration category,Immigration category,"Derived from SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES",, -immigration_der,immigration_der_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,1,6,White Canada-born,White Canada-born,N/A,1,White Canada-born,Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,2,6,Non-white Canadian born,Non-white Canadian born,N/A,2,Non-white Canadian born,Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,3,6,White immigrant born outside of Canada (0-9 years in Canada),White immigrant born outside of Canada (0-9 years in Canada),N/A,3,White immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,4,6,Non-white immigrant born outside of Canada (0-9 years in Canada),Non-white immigrant born outside of Canada (0-9 years in Canada),N/A,4,Non-white immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,5,6,White immigrant born outside of Canada (10+ years in Canada),White immigrant born outside of Canada (10+ years in Canada),N/A,5,White immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,6,6,Non-white immigrant born outside of Canada (10+ years in Canada),Non-white immigrant born outside of Canada (10+ years in Canada),N/A,6,Non-white immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,NA::a,6,not applicable,not applicable,N/A,NA::a,not applicable,Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,NA::b,6,missing,missing,N/A,NA::b,missing,Immigration category,Immigration category,,, -INCDRCA,INCDRCA_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution,Household income distribution - (D),,, -INCDRPR,INCDRPR_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRRS,INCDRRS_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCGHH_A,INCGHH_A_cat6_1,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories",, -INCGHH_A,INCGHH_A_cat6_2,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_3,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_4,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_5,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_6,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::a,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_1,cat,cchs2012_s,[INCDHH],,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_2,cat,cchs2012_s,[INCDHH],,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_3,cat,cchs2012_s,[INCDHH],,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_4,cat,cchs2012_s,[INCDHH],,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_5,cat,cchs2012_s,[INCDHH],,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_6,cat,cchs2012_s,[INCDHH],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,cchs2001_p,[INCAGHH],,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,2]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories",, -INCGHH_B,INCGHH_B_cat5_2,cat,cchs2001_p,[INCAGHH],,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,cchs2001_p,[INCAGHH],,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,cchs2001_p,[INCAGHH],,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,cchs2001_p,[INCAGHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,cchs2001_p,[INCAGHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2001_p,[INCAGHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2001_p,[INCAGHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2003 and 2005 classifies no income and less than $15,000 as one category",, -INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,cchs2012_s,[INCDHH],,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_2,cat,cchs2012_s,[INCDHH],,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,cchs2012_s,[INCDHH],,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,cchs2012_s,[INCDHH],,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,cchs2012_s,[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_1,cat,cchs2012_s,[INCDHH],,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_2,cat,cchs2012_s,[INCDHH],,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_3,cat,cchs2012_s,[INCDHH],,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_4,cat,cchs2012_s,[INCDHH],,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_5,cat,cchs2012_s,[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_7,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_8,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_9,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_10,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_11,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_12,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,12,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_1,cat,cchs2012_s,[INCDHH],,cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_2,cat,cchs2012_s,[INCDHH],,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_3,cat,cchs2012_s,[INCDHH],,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_4,cat,cchs2012_s,[INCDHH],,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_5,cat,cchs2012_s,[INCDHH],,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_6,cat,cchs2012_s,[INCDHH],,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_7,cat,cchs2012_s,[INCDHH],,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_8,cat,cchs2012_s,[INCDHH],,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_9,cat,cchs2012_s,[INCDHH],,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_10,cat,cchs2012_s,[INCDHH],,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_11,cat,cchs2012_s,[INCDHH],,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_12,cat,cchs2012_s,[INCDHH],,cat,12,12,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,12,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_7,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_8,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_9,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_10,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_11,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_12,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_13,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_14,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,14,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_1,cat,cchs2012_s,[INCDHH],,cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_2,cat,cchs2012_s,[INCDHH],,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_3,cat,cchs2012_s,[INCDHH],,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_4,cat,cchs2012_s,[INCDHH],,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_5,cat,cchs2012_s,[INCDHH],,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_6,cat,cchs2012_s,[INCDHH],,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_7,cat,cchs2012_s,[INCDHH],,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_8,cat,cchs2012_s,[INCDHH],,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_9,cat,cchs2012_s,[INCDHH],,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_10,cat,cchs2012_s,[INCDHH],,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_11,cat,cchs2012_s,[INCDHH],,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_12,cat,cchs2012_s,[INCDHH],,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_13,cat,cchs2012_s,[INCDHH],,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_14,cat,cchs2012_s,[INCDHH],,cat,14,14,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,14,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_1,cat,cchs2012_s,[INCDHH],,cat,1,15,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_2,cat,cchs2012_s,[INCDHH],,cat,2,15,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_3,cat,cchs2012_s,[INCDHH],,cat,3,15,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_4,cat,cchs2012_s,[INCDHH],,cat,4,15,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_5,cat,cchs2012_s,[INCDHH],,cat,5,15,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_6,cat,cchs2012_s,[INCDHH],,cat,6,15,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_7,cat,cchs2012_s,[INCDHH],,cat,7,15,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_8,cat,cchs2012_s,[INCDHH],,cat,8,15,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_9,cat,cchs2012_s,[INCDHH],,cat,9,15,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_10,cat,cchs2012_s,[INCDHH],,cat,10,15,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_11,cat,cchs2012_s,[INCDHH],,cat,11,15,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_12,cat,cchs2012_s,[INCDHH],,cat,12,15,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_13,cat,cchs2012_s,[INCDHH],,cat,13,15,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_14,cat,cchs2012_s,[INCDHH],,cat,14,15,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_15,cat,cchs2012_s,[INCDHH],,cat,15,15,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,15,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,15,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,15,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,7500,N/A,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,10000,N/A,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,30000,N/A,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,125000,N/A,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,170000,N/A,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",CCHS 2001 missing 97 (don't know) and 98 (refusal),, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,"[5,6]","$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,2,6,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,6,"Less than $20,000","Less than $20,000",$/year,"[2,5]","Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,"[6,7]","$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,12,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,12,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,12,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,14,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,14,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,14,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,22500,N/A,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,10000,N/A,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,30000,N/A,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -LBFA_31A,LBFA_31A_cat9_1,cat,cchs2001_p,[LBFA_31A],,cat,1,9,Management,Management,N/A,1,Management,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_2,cat,cchs2001_p,[LBFA_31A],,cat,2,9,Professional (including accountants),Professional (including accountants),N/A,2,Professional (including accountants),Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_3,cat,cchs2001_p,[LBFA_31A],,cat,3,9,"Technologist, Technician or Tech Occ","Technologist, Technician or Tech Occ",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_4,cat,cchs2001_p,[LBFA_31A],,cat,4,9,"Administrative, Financial or Clerical","Administrative, Financial or Clerical",N/A,4,"Administrative, Financial or Clerical",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_5,cat,cchs2001_p,[LBFA_31A],,cat,5,9,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_6,cat,cchs2001_p,[LBFA_31A],,cat,6,9,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_7,cat,cchs2001_p,[LBFA_31A],,cat,7,9,"Farming, Forestry, Fishing, Mining","Farming, Forestry, Fishing, Mining",N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_8,cat,cchs2001_p,[LBFA_31A],,cat,8,9,"Processing, Manufacturing, Utilities","Processing, Manufacturing, Utilities",N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_9,cat,cchs2001_p,[LBFA_31A],,cat,9,9,Other,Other,N/A,9,Other,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_NA::a,cat,cchs2001_p,[LBFA_31A],,cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,9,missing,missing,N/A,else,else,Occupation group,Main job or business,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,3,5,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,5,missing,missing,N/A,9,not stated,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,cchs2001_p,[LBFA_31A],,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,cchs2001_p,[LBFA_31A],,cat,3,5,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,cchs2001_p,[LBFA_31A],,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,5,missing,missing,N/A,9,Other,Occupation group,Occupation Group,"""Other"" has no equivalent in LBSGSOC recoded to 'NA::b' missing",, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,cchs2001_p,[LBFA_31A],,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,3,5,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::a,5,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,3,6,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,6,missing,missing,N/A,9,not stated,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,cchs2001_p,[LBFA_31A],,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,cchs2001_p,[LBFA_31A],,cat,3,6,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,cchs2001_p,[LBFA_31A],,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_6,cat,cchs2001_p,[LBFA_31A],,cat,6,6,Other,Other,N/A,9,Other,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,cchs2001_p,[LBFA_31A],,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,3,6,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::a,6,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,10,Management,Management,N/A,1,Management,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,2,10,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,3,10,"Natural and Applied Science, Religious","Natural and Applied Science, Religious",N/A,3,"Natural and Applied Science, Religious",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,4,10,Health,Health,N/A,4,Health,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,5,10,"Social Science, Education, Government, Religion","Social Science, Education, Government, Religion",N/A,5,"Social Science, Education, Government, Religion",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,6,10,"Culture, Recreation, Sport","Culture, Recreation, Sport",N/A,6,"Culture, Recreation, Sport",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,7,10,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,8,10,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,9,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,9,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,10,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,10,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::a,10,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,, -LBFA_31A_c,LBFA_31A_c_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,10,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -low_drink_score,low_drink_score_cat4N/A_Func::low_drink_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,Func::low_drink_score_fun,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY.",, -low_drink_score,low_drink_score_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,1,4,Low risk,Low risk,N/A,1,Low risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,2,4,Marginal risk,Marginal risk,N/A,2,Marginal risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,3,4,Medium risk,Medium risk,N/A,3,Medium risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,4,4,High risk,High risk,N/A,4,High risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,NA::b,4,missing,missing,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score,,, -low_drink_score1,low_drink_score1_cat5N/A_Func::low_drink_score_fun1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,Func::low_drink_score_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,1,5,Low risk - never drank,Low risk - never drank,N/A,N/A,Low risk - never drank,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,2,5,Low risk - former drinker,Low risk - former drinker,N/A,N/A,Low risk - former drinker,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,3,5,Marginal risk,Marginal risk,N/A,N/A,Marginal risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,4,5,Medium risk,Medium risk,N/A,N/A,Medium risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,5,5,High risk,High risk,N/A,N/A,High risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,NA::b,5,missing,missing,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -MAM_037,MAM_037_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,1,2,Yes,Yes,N/A,1,Yes,Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,2,2,No ,No,N/A,2,No,Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,NA::b,2,missing,missing,N/A,else,else,Currently pregnant,Currently pregnant,,, -MED_1P,MED_1P_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,1,2,Yes,Yes,N/A,1,Yes,Sleeping pills,"In the past month, did you take sleeping pills",CCHS 2001 does not provide examples of sleeping pills in its literal question,, -MED_1P,MED_1P_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,2,2,No,No,N/A,2,No,Sleeping pills,"In the past month, did you take sleeping pills",,, -MED_1P,MED_1P_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sleeping pills,"In the past month, did you take sleeping pills",,, -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleeping pills,"In the past month, did you take sleeping pills",,, -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,NA::b,2,missing,missing,N/A,else,else,Sleeping pills,"In the past month, did you take sleeping pills",,, -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun1,cat,cchs2001_p,"DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,Func::multiple_conditions_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, resp_condition, CCC_050",, -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,Func::multiple_conditions_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition, CCC_051. Variable can be extended to 2018 when bowel condition not included.",, -number_conditions,number_conditions_cat6_0,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,0,6,0,0,N/A,N/A,0,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,1,6,1,1,N/A,N/A,1,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,2,6,2,2,N/A,N/A,2,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,3,6,3,3,N/A,N/A,3,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,4,6,4,4,N/A,N/A,4,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_5+,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,5+,6,5+,5+,N/A,N/A,5+,Number of conditions,Number of chronic conditions,,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,160]",No. hours sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,1680]",No. minutes sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,168]",No. hours sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes.",, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,4880]",No. minutes sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes.",, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,copy,N/A,No. active days - 7d,No. active days - 7d,days,"[0,7]",No. active days - 7d,Active days (18+ years old),Number of active days (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (18+ years old),Number of active days (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (18+ years old),Number of active days (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,NA::b,N/A,missing,missing,days,else,else,Active days (18+ years old),Number of active days (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,10080]",No. minutes of active transportation,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,copy,N/A,No. minutes - vigorous physical activity - 7d,No. minutes - vigorous physical activity - 7d,minutes/week,"[0,6000]",No. minutes - vigorous physical activity - 7d,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAC_4A,PAC_4A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,1,6,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,6,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,0,N/A,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,N/A,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,1,6,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,6,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,0,N/A,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,N/A,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_7,PAC_7_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,1,3,Yes,Yes,N/A,1,Yes,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,2,3,No,No,N/A,2,No,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,NA::b,3,missing,missing,N/A,else,else,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,copy,N/A,No. of times/3 mo./walking work/school,No. of times walking work/school,N/A,"[1,270]",No. of times walking work/school,Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,NA::b,N/A,missing,missing,N/A,else,else,Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7B,PAC_7B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,4,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,N/A,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school,,, -PAC_8,PAC_8_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,1,3,Yes,Yes,N/A,1,Yes,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,2,3,No,No,N/A,2,No,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,NA::b,3,missing,missing,N/A,else,else,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,copy,N/A,No. of times/3 mo./biking work/school,No. of times biking work/school,times/3 mos.,"[1,270]",No. of times biking work/school,Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,NA::a,N/A,not applicable,not applicable,times/3 mos.,996,not applicable,Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,NA::b,N/A,missing,missing,times/3 mos.,"[997,999]",don't know (997); refusal (998); not stated (999),Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,NA::b,N/A,missing,missing,times/3 mos.,else,else,Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8B,PAC_8B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,4,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,N/A,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school,,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,copy,N/A,Physical Activity,Average daily leisure time energy expenditure in METs,METS,"[0,43.5]",Daily energy expenditure - (D),Physical activity,Daily energy expenditure - (D),Refer to energy_exp for PACDEE all cycles,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::a,N/A,not applicable,not applicable,METS,99.6,Not applicable,Physical activity,Daily energy expenditure - (D),,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Physical activity,Daily energy expenditure - (D),Don't know (99.7) and refusal (99.8) not included in 2001 CCHS,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,METS,else,else,Physical activity,Daily energy expenditure - (D),,, -PACDEE_cat3,PACDEE_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,1,3,Inactive,Inactive - leisure activity,METS,"[0,1.5)",Inactive - leisure activity,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,2,3,Moderately active,Moderately active - leisure activity,METS,"[1.5,3)",Moderately active - leisure activity,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,3,3,Active,Active - leisure activity,METS,"[3,43.5]",Active - leisure activity,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::a,3,not applicable,not applicable,METS,99.6,Not applicable,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,3,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,3,missing,missing,METS,else,else,Categorical physical activity,Categorical daily energy expenditure,,, -pack_years_cat,pack_years_catN/A_Func::pack_years_fun_cat,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,Func::pack_years_fun_cat,N/A,N/A,N/A,pack-years,N/A,N/A,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,1,8,0,0 pack-years,pack-years,N/A,0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,2,8,0 to 0.01,0 to 0.01 pack-years,pack-years,N/A,0 to 0.01 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,3,8,0.01 to 3.0,0.01 to 3.0 pack-years,pack-years,N/A,0.01 to 3.0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,4,8,3.0 to 9.0,3.0 to 9.0 pack-years,pack-years,N/A,3.0 to 9.0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,5,8,9.0 to 16.2,9.0 to 16.2 pack-years,pack-years,N/A,9.0 to 16.2 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,6,8,16.2 to 25.7,16.2 to 25.7 pack-years,pack-years,N/A,16.2 to 25.7 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_7,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,7,8,25.7 to 40.0,25.7 to 40.0 pack-years,pack-years,N/A,25.7 to 40.0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_8,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,8,8,40.0+,40.0+ pack-years,pack-years,N/A,40.0+ pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,NA::a,8,not applicable,not applicable,pack-years,N/A,not applicable,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,NA::b,8,missing,missing,pack-years,N/A,missing,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",,N/A,Func::pack_years_fun,N/A,N/A,N/A,pack-years,N/A,N/A,PackYears,Smoking pack-years,PackYears variable derived from various harmonized smoking variables,, -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",,N/A,NA::b,N/A,missing,missing,pack-years,N/A,N/A,PackYears,Smoking pack-years,,, -PACFLEI,PACFLEI_cat_cat6_1,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,1,2,Yes,Yes,Leisure physical activity,1,Yes,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_2,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,2,2,No,No,Leisure physical activity,2,No,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_NA::a,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,NA::a,2,not applicable,not applicable,Leisure physical activity,6,not applicable,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_NA::b,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,NA::b,2,missing,missing,Leisure physical activity,"[7,9]",don't know (7); refusal (8); not stated (9) ,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_NA::b,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,NA::b,2,missing,missing,Leisure physical activity,else,else,Leisure phys. activity,Leisure physical activity,,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,copy,N/A,No. minutes of leisure activities,No. minutes of leisure activities,minutes/week,"[0,4140]",No. minutes of leisure activities,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,copy,N/A,No. physically active days,No. physically active days,days,"[0,7]",No. physically active days,Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,NA::b,N/A,missing,missing,days,else,else,Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,copy,N/A,No. minutes of other activities,No. minutes of other activities,minutes/week,"[0,4980]",No. minutes of other activities,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,6300]",No. minutes of active transportation,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,copy,N/A,No. minutes of vigorous activities,No. minutes of vigorous activities,minutes/week,"[0,2880]",No. minutes of vigorous activities,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",,N/A,Func::pct_time_fun,N/A,N/A,N/A,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,"Percent time in Canada derived from Age, immigration status, and time in Canada variables",, -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",,N/A,NA::b,N/A,missing,missing,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10N/A_Func::pct_time_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,Func::pct_time_fun_cat,N/A,N/A,N/A,%,N/A,N/A,Categorical percent time in Canada,Categorical percentage of time in Canada,Categorical percent time in Canada derived from pct_time_der,, -pct_time_der_cat10,pct_time_der_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,1,10,10%,10% time in Canada,%,1,10% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,2,10,20%,20% time in Canada,%,2,20% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,3,10,30%,30% time in Canada,%,3,30% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,4,10,40%,40% time in Canada,%,4,40% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,5,10,50%,50% time in Canada,%,5,50% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,6,10,60%,60% time in Canada,%,6,60% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,7,10,70%,70% time in Canada,%,7,70% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,8,10,80%,80% time in Canada,%,8,80% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,9,10,90%,90% time in Canada,%,9,90% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,10,10,100%,100% time in Canada,%,10,100% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,NA::a,10,not applicable,not applicable,%,NA::a,not applicable,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,NA::b,10,missing,missing,%,NA::b,missing,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -RAC_1,RAC_1_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",,cat,2,3,Often,Often,N/A,2,Often,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",,cat,3,3,Never,Never,N/A,3,Never,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::a,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::a,cat,cchs2003_p,cchs2003_p::RACC_1,,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Difficulty activities,Has difficulty with activities,CCHS 2003 codes N/A as 96 and missing as 97-99,, -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities,,, -RAC_2A,RAC_2A_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,2,3,Often,Often,N/A,2,Often,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,3,3,Never,Never,N/A,3,Never,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at home,Reduction - activities at home,,, -RAC_2B,RAC_2B_cat3_1,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school or work,Long-term cond. reduces act. - school or work,"In CCHS 2001, work and school reduction were combined into one variable. From CCHS 2003 onwards they were split into 2 variables (RAC_2B1 & RAC_2B2)",, -RAC_2B,RAC_2B_cat3_2,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,2,3,Often,Often,N/A,2,Often,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_3,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,3,3,Never,Never,N/A,3,Never,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_NA::a,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,NA::a,3,not applicable,not applicable,N/A,4,not applicable,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B1,RAC_2B1_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,2,4,Often,Often,N/A,2,Often,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,3,4,Never,Never,N/A,3,Never,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,4,4,Not attend school,Not attend school,N/A,4,Not attend school,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B2,RAC_2B2_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,2,4,Often,Often,N/A,2,Often,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,3,4,Never,Never,N/A,3,Never,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,4,4,Has no job,Has no job,N/A,4,Has no job,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2C,RAC_2C_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,2,3,Often,Often,N/A,2,Often,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,3,3,Never,Never,N/A,3,Never,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,NA::b,3,missing,missing,N/A,else,else,Reduction other activities,Reduction - other activities,,, -RACAG5,RACAG5_cat4_1,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,1,4,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem,"CCHS 2001 has different categories from other cycles, hence a new variable created",, -RACAG5,RACAG5_cat4_2,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,2,4,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_3,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,3,4,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_4,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,4,4,Other,Other,N/A,4,Other,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_NA::a,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,NA::b,4,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -RAC_6D,RAC_6D_cat_cat1,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_cat2,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,2,2,No,No,N/A,2,No,Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,NA::b,2,missing,missing,N/A,"[7,9]",dont know (7); refusal (8); not stated (9),Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,Help heavy housework,Needs help - heavy housework,,, -RACDIMP,RACDIMP_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,2,3,Often,Often,N/A,2,Often,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,3,3,Never,Never,N/A,3,Never,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,NA::b,3,missing,missing,N/A,else,else,Impact health problem,Impact of health problems,,, -RACDPAL,RACDPAL_catN/A_Func::RACDPAL_fun,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,Func::RACDPAL_fun,N/A,N/A,N/A,N/A,N/A,N/A,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_1,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,1,3,Sometimes,Sometimes,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_2,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,2,3,Often,Often,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_3,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,3,3,Never,Never,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::b,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,NA::b,3,missing,missing,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,2,3,Often,Often,N/A,2,Often,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,3,3,Never,Never,N/A,3,Never,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,NA::b,3,missing,missing,N/A,else,else,Particpation/activity limitation,Participation and activity limitation,,, -RACG5,RACG5_cat6_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,1,6,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,2,6,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,3,6,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,4,6,Existed at birth,Existed at birth,N/A,4,Existed at birth,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,5,6,Work conditions,Work conditions,N/A,5,Work conditions,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,6,6,Other,Other,N/A,6,Other,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,1,6,Injury,Injury,N/A,"[1,4]",Injury,Cause health problem,Cause of Health problem,"For CCHS 2007-2008 and shared files, cause of health problem groupings based on 2009-2010 derived variable documentation.",, -RACG5,RACG5_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,2,6,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,3,6,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,4,6,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,5,6,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,6,6,Other,Other,N/A,"[9,11]",Other,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,1,11,Accident at home,Accident at home,N/A,1,Accident at home,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,2,11,Motor vehicle accident,Motor vehicle accident,N/A,2,Motor vehicle accident,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,3,11,Accident at work,Accident at work,N/A,3,Accident at work,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,4,11,Other type of accident,Other type of accident,N/A,4,Other type of accident,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,5,11,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,6,11,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,7,11,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,8,11,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,9,11,Emotional/mental health problems,Emotional/mental health problems,N/A,9,Emotional/mental health problems,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,10,11,Use of alcohol or drugs,Use of alcohol or drugs,N/A,10,Use of alcohol or drugs,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,11,11,Other,Other,N/A,11,Other,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,11,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,11,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",,N/A,Func::resp_condition_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables",, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun2,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,Func::resp_condition_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables",, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun3,cat,"cchs2001_p, cchs2003_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]",,N/A,Func::resp_condition_fun3,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables",, -resp_condition_der,resp_condition_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -resp_condition_der,resp_condition_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -resp_condition_der,resp_condition_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -resp_condition_der,resp_condition_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -SDC_5A_1,SDC_5A_1_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,1,4,English ,English only,N/A,1,English ,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,2,4,French,French only,N/A,2,French,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,3,4,English & French,English & French,N/A,3,English & French,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,4,4,Neither,Neither English nor French,N/A,4,Neither,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,NA::b,4,missing,missing,N/A,else,else,Knowledge of official languages,Knowledge of official languages,,, -SDCDFOLS,SDCDFOLS_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,1,4,English ,English only,N/A,1,English ,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,2,4,French,French only,N/A,2,French,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,3,4,English & French,English & French,N/A,3,English & French,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,4,4,Neither,Neither English nor French,N/A,4,Neither,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)",, -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)",, -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,NA::b,4,missing,missing,N/A,else,else,First official language spoken,First official language spoken,,, -SDCFIMM,SDCFIMM_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2019","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2020","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2021","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2022","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status,Immigrant Status (D),,, -SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,2,2,Other,Other,N/A,2,Other,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Country of birth,Country of birth - (G),CCHS 2001 does not have don't know (7) or refusal (8),, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::b,2,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,2,2,Other,Other,N/A,"[2,7]",Other,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,2,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,1,7,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,2,7,Other North America,Other North America,N/A,2,Other North America,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,3,7,"South, Central America and Caribbean","South, Central America and Caribbean",N/A,3,"South, Central America and Caribbean",Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,4,7,Europe,Europe,N/A,4,Europe,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,5,7,Africa,Africa,N/A,5,Africa,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,6,7,Asia,Asia,N/A,6,Asia,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,7,7,Oceania,Oceania,N/A,7,Oceania,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,7,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,, -SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,2,2,Non-white,Non-white,N/A,2,Visible minority,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ethnicity,"Cultural or racial origin - (D, G)","CCHS 2001 missing don't know (7), refusal (8)",, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,2,2,Non-white,Non-white,N/A,"[2,13]",Visible minority,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT_A,SDCGCGT_A_cat13_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,1,13,White,White,N/A,1,White,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,2,13,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,3,13,Korean,Korean,N/A,3,Korean,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,4,13,Filipino,Filipino,N/A,4,Filipino,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,5,13,Japanese,Japanese,N/A,5,Japanese,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,6,13,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,7,13,South Asian,South Asian,N/A,7,South Asian,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,8,13,Southeast Asian,Southeast Asian,N/A,8,Southeast Asian,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,9,13,Arab,Arab,N/A,9,Arab,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,10,13,West Asian,West Asian,N/A,10,West Asian,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,11,13,Latin American,Latin American,N/A,11,Latin American,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,12,13,Other,Other,N/A,12,Other,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,13,13,Multiple origins,Multiple origins,N/A,13,Multiple origins,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::a,13,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,13,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,13,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin - (D),,, -SDCDCGT_A,SDCDCGT_A_cat13_1,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,1,14,White,White,N/A,1,White,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_2,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,2,14,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_3,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,3,14,Korean,Korean,N/A,3,Korean,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_4,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,4,14,Filipino,Filipino,N/A,4,Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,5,14,Japanese,Japanese,N/A,5,Japanese,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_6,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,6,14,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_7,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,7,14,Aboriginal/N ame,Aboriginal/N ame,N/A,7,Aboriginal/N ame,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_8,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,8,14,South Asian,South Asian,N/A,8,South Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_9,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,9,14,South East Asian,South East Asian,N/A,9,South East Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_10,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,10,14,Arab,Arab,N/A,10,Arab,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_11,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,11,14,West Asian,West Asian,N/A,11,West Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_12,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,12,14,Latin American,Latin American,N/A,12,Latin American,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_13,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,13,14,Other,Other,N/A,13,Other,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_13,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,14,14,Multiple origins,Multiple origins,N/A,14,Multiple origins,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::a,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,NA::a,14,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,NA::b,14,missing,missing,N/A,"[97, 99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,NA::b,14,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_1,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,1,13,White only,White only,N/A,1,White only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_2,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,2,13,South Asian only,South Asian only,N/A,8,South Asian only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_3,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,3,13,Chinese only,Chinese only,N/A,6,Chinese only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_4,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,4,13,Black only,Black only,N/A,2,Black only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_5,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,5,13,Filipino only,Filipino only,N/A,4,Filipino only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_6,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,6,13,Latin American only,Latin American only,N/A,12,Latin American only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_7,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,7,13,Arab only,Arab only,N/A,10,Arab only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_8,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,8,13,Southeastern Asian only,Southeastern Asian only,N/A,9,Southeastern Asian only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_9,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,9,13,West Asian only,West Asian only,N/A,11,West Asian only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_10,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,10,13,Korean only,Korean only,N/A,3,Korean only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_11,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,11,13,Japenese only,Japenese only,N/A,5,Japenese only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_12,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,12,13,Other racial or cultural origin (only),Other racial or cultural origin (only),N/A,13,Other racial or cultural origin (only),Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_13,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,13,13,Multiple racial or cultural origins,Multiple racial or cultural origins,N/A,14,Multiple racial or cultural origins,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::a,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,NA::a,13,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,NA::b,13,missing,missing,N/A,"[97, 99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,NA::b,13,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_1,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,1,7,White,White,N/A,1,White,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_2,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,2,7,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_3,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,3,7,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_4,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,4,7,Aboriginal,Aboriginal,N/A,7,Aboriginal,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,[3],Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,[5],Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,[9],Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_6,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,6,7,other/multiple origin/unknown/Latin American,other/multiple origin/unknown/Latin American,N/A,[12],other/multiple origin/unknown/Latin American,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_6,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,6,7,other/multiple origin/unknown/Latin American,other/multiple origin/unknown/Latin American,N/A,[14],other/multiple origin/unknown/Latin American,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_7,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,7,7,South Asian/Arab/West Asian,South Asian/Arab/West Asian,N/A,[8],South Asian/Arab/West Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_7,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,7,7,South Asian/Arab/West Asian,South Asian/Arab/West Asian,N/A,"[10,11]",South Asian/Arab/West Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_NA::a,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,NA::b,7,missing,missing,N/A,"[97,99]",missing,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,NA::b,7,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,, -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::b,4,missing,missing,N/A,else,else,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,5,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,English & French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,6,Neither English nor French (other),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,"[3,4]",not applicable,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,4,4,Neither,Neither English nor French (other),N/A,7,don't know (7); refusal (8); not stated (9),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::a,4,not applicable,not applicable,N/A,96,else,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,4,missing,missing,N/A,"[97,99]",English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,4,missing,missing,N/A,else,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM_A,SDCGLHM_A_cat7_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,1,7,English,English,N/A,1,English,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,2,7,French,French,N/A,2,French,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,3,7,English & French,English & French,N/A,3,English & French,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,4,7,English & French and other,English & French and other,N/A,4,English & French and other,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,5,7,English & other (not French),English & other (not French),N/A,5,English & other (not French),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,6,7,French & other (not English),French & other (not English),N/A,6,French & other (not English),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,7,7,Neither English nor French (other),Neither English nor French (other),N/A,7,Neither English nor French (other),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,7,missing,missing,N/A,else,else,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,5,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,6,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,"[3,4]",English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,4,4,Neither,Neither English nor French (other),N/A,7,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::a,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG_A,SDCGLNG_A_cat7_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,1,7,English,English,N/A,1,English,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,2,7,French,French,N/A,2,French,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_3,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,3,7,English & French,English & French,N/A,3,English & French,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_4,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,4,7,English & French and other,English & French and other,N/A,4,English & French and other,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_5,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,5,7,English & other (not French),English & other (not French),N/A,5,English & other (not French),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_6,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,6,7,French & other (not English),French & other (not English),N/A,6,French & other (not English),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_7,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,7,7,Neither English nor French (other),Neither English nor French (other),N/A,7,Neither English nor French (other),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,7,missing,missing,N/A,else,else,Languages - can converse in,Languages - can converse in - (D),,, -SDCGRES,SDCGRES_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,1,2,0 to 9 years,0 to 9 years,N/A,1,0 to 9 years,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,2,2,10 years or more,10 years or more,N/A,2,10 years or more,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Time in Canada,"Length/time in Canada since imm. (D, G)","CCHS 2001 missing don't know (7), refusal (8)",, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,2,missing,missing,N/A,else,else,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,1,2,0 to 9 years,0 to 9 years,N/A,"[0,10)",0 to 9 years,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,2,2,10 years or more,10 years or more,N/A,"[10,97]",10 years or more,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::a,2,not applicable,not applicable,N/A,996,not applicable,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,2,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,2,missing,missing,N/A,else,else,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,copy,N/A,years since immigration,years since immigration,years,"[0,97]",years since immigration,Time in Canada,Length/time in Canada since imm. (D),,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Time in Canada,Length/time in Canada since imm. (D),,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Time in Canada,Length/time in Canada since imm. (D),,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,N/A,missing,missing,years,else,else,Time in Canada,Length/time in Canada since imm. (D),,, -SLP_02,SLP_02_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,5,5,All the time,All the time,N/A,5,All the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,NA::b,5,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_1,cat,"cchs2001_p, cchs2001_i",[GENA_04],ICES altered,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Trouble sleeping,Freq. - trouble sleeping,CCHS 2001 has different categories from other cycles,, -SLP_02_A,SLP_02_A_cat3_2,cat,cchs2001_p,[GENA_04],ICES altered,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_3,cat,cchs2001_p,[GENA_04],ICES altered,cat,3,3,Never,Never,N/A,3,Never,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_NA::a,cat,cchs2001_p,[GENA_04],ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_03,SLP_03_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,5,5,All the time,All the time,N/A,5,All the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat3_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_1,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Sleep refreshing,Freq. - find sleep refreshing,CCHS 2001 has different categories from other cycles,, -SLP_03_A,SLP_03_A_cat3_2,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_3,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,3,3,Never,Never,N/A,3,Never,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_NA::a,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_04,SLP_04_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,5,5,All the time,All the time,N/A,5,All the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,NA::b,5,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_1,cat,cchs2001_p,[GENA_06],,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Difficulty awake,Freq. - diffficult to stay awake,CCHS 2001 has different categories from other cycles,, -SLP_04_A,SLP_04_A_cat3_2,cat,cchs2001_p,[GENA_06],,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_3,cat,cchs2001_p,[GENA_06],,cat,3,3,Never,Never,N/A,3,Never,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_NA::a,cat,cchs2001_p,[GENA_06],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake,,, -SLPG01,SLPG01_cat11_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,1,11,<3 hours,<3 hours,Hours,1,<3 hours,Hours sleep,No./hours spent sleeping each night,CCHS 2011-2012 onwards omitted 2-<3 hours category,, -SLPG01,SLPG01_cat11_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_5,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_6,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_7,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_8,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_9,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_10,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_11,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,11,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_1,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,1,12,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_2,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,2,12,2-<3 hours,2-<3 hours,Hours,2,2-<3 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_3,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,3,12,3-<4 hours,3-<4 hours,Hours,3,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_4,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,4,12,4-<5 hours,4-<5 hours,Hours,4,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_5,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,5,12,5-<6 hours,5-<6 hours,Hours,5,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_6,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,6,12,6-<7 hours,6-<7 hours,Hours,6,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_7,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,7,12,7-<8 hours,7-<8 hours,Hours,7,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_8,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,8,12,8-<9 hours,8-<9 hours,Hours,8,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_9,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,9,12,9-<10 hours,9-<10 hours,Hours,9,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_10,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,10,12,10-<11 hours,10-<11 hours,Hours,10,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_11,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,11,12,11-<12 hours,11-<12 hours,Hours,11,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_12,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,12,12,>= 12 hours,>= 12 hours,Hours,12,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_NA::a,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::a,12,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,12,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,12,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_1,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,1,11,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,,Possible mistake with <2 hours -SLPG01_B,SLPG01_B_cat11_2,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_3,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_4,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_5,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_6,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_7,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_8,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_9,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_10,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_11,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_NA::a,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_NA::a,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_NA::b,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,NA::b,11,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_1,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_005",ICES specific,cat,1,12,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_2,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_006",ICES specific,cat,2,12,2-<3 hours,2-<3 hours,Hours,2,2-<3 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_3,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_007",ICES specific,cat,3,12,3-<4 hours,3-<4 hours,Hours,3,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_4,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_008",ICES specific,cat,4,12,4-<5 hours,4-<5 hours,Hours,4,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_5,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_009",ICES specific,cat,5,12,5-<6 hours,5-<6 hours,Hours,5,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_6,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_010",ICES specific,cat,6,12,6-<7 hours,6-<7 hours,Hours,6,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_7,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_011",ICES specific,cat,7,12,7-<8 hours,7-<8 hours,Hours,7,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_8,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_012",ICES specific,cat,8,12,8-<9 hours,8-<9 hours,Hours,8,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_9,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_013",ICES specific,cat,9,12,9-<10 hours,9-<10 hours,Hours,9,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_10,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_014",ICES specific,cat,10,12,10-<11 hours,10-<11 hours,Hours,10,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_11,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_015",ICES specific,cat,11,12,11-<12 hours,11-<12 hours,Hours,11,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_12,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_016",ICES specific,cat,12,12,>= 12 hours,>= 12 hours,Hours,12,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_NA::a,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_017",ICES specific,cat,NA::a,12,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_NA::a,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_018",ICES specific,cat,NA::b,12,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_NA::b,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_019",ICES specific,cat,NA::b,12,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,1,N/A,Hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,2.5,N/A,Hours,convereted hours (2-<3 hours),Hours,2,convereted hours (2-<3 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,3.5,N/A,Hours,converted hours (3-<4 hours),Hours,3,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,4.5,N/A,Hours,converted hours (4-<5 hours),Hours,4,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,5.5,N/A,Hours,converted hours (5-<6 hours),Hours,5,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,6.5,N/A,Hours,converted hours (6-<7 hours),Hours,6,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,7.5,N/A,Hours,converted hours (7-<8 hours),Hours,7,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,8.5,N/A,Hours,converted hours (8-<9 hours),Hours,8,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,9.5,N/A,Hours,converted hours (9-<10 hours),Hours,9,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,10.5,N/A,Hours,converted hours (10-<11 hours),Hours,10,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,11.5,N/A,Hours,converted hours (11-<12 hours),Hours,11,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,13,N/A,Hours,converted hours (>= 12 hours),Hours,12,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,1.5,N/A,<3 hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,3.5,N/A,3-<4 hours,converted hours (3-<4 hours),Hours,2,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,4.5,N/A,4-<5 hours,converted hours (4-<5 hours),Hours,3,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,5.5,N/A,5-<6 hours,converted hours (5-<6 hours),Hours,4,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,6.5,N/A,6-<7 hours,converted hours (6-<7 hours),Hours,5,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,7.5,N/A,7-<8 hours,converted hours (7-<8 hours),Hours,6,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,8.5,N/A,8-<9 hours,converted hours (8-<9 hours),Hours,7,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,9.5,N/A,9-<10 hours,converted hours (9-<10 hours),Hours,8,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,10.5,N/A,10-<11 hours,converted hours (10-<11 hours),Hours,9,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,11.5,N/A,11-<12 hours,converted hours (11-<12 hours),Hours,10,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,13,N/A,>= 12 hours,converted hours (>= 12 hours),Hours,11,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SMK_005,SMK_005_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,1,3,Daily,Daily,N/A,1,Daily,Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,2,3,Occasionally,Occasionally,N/A,2,Occasionally,Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,3,3,Not at all,Not at all,N/A,3,Not at all,Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,NA::b,3,missing,missing,N/A,else,else,Type of smoker presently,Type of smoker presently,,, -SMK_030,SMK_030_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,1,2,yes,yes,N/A,1,Yes,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,2,2,no,no,N/A,2,No,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,NA::b,2,missing,missing,N/A,else,else,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_01A,SMK_01A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,1,2,yes,yes,N/A,1,Yes,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,2,2,no,no,N/A,2,No,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,copy,N/A,Cigarettes/day - occasional,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - occasional smoker,cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,copy,N/A,# days smoked at least 1 cigarette,# days smoked at least 1 cigarette,days,"[0,31]",# days smoked at least 1 cigarette,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,NA::b,N/A,missing,missing,days,else,else,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05D,SMK_05D_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,1,2,yes,Occasional smoker who previously smoked daily,N/A,1,Yes,evd,Ever smoked cigarettes daily - occasional smoker,2015 onward looks at occasional/former smokers,, -SMK_05D,SMK_05D_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,2,2,no,Occasional smoker never daily,N/A,2,No,evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_05D,SMK_05D_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,NA::b,2,missing,missing,N/A,else,else,evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_06A_A,SMK_06A_A_cat4_1,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_2,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_3,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_4,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_NA::a,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,4,missing,missing,years,else,else,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_B,SMK_06A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,2,4,1 to 2 years,1 year to less than 2 years ago,years,2,1 year to < 2 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,3,4,2 to 3 years,2 years to less than 3 years ago,years,3,2 years to < 3 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,4,4,>= 3 years,3 or more years ago,years,4,3 or more years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,4,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,1.5,N/A,stpn,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,4,N/A,stpn,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,6,N/A,stpn,converted age - More than 5 years ago,years,4,More than 5 years ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,N/A,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,1.5,N/A,stpn,converted age - 1 year to less than 2 years ago,years,2,1 year to < 2 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,2.5,N/A,stpn,converted age - 2 years to less than 3 years ago,years,3,2 years to < 3 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,4,N/A,stpn,converted age - 3 or more years ago,years,4,3 or more years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,N/A,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional,,, -SMK_09A_A,SMK_09A_A_cat4_1,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_2,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_3,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_4,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_NA::a,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,1,4,<1 year,Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,2,4,1 to <2 years,1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2020","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,3,4,2 to <3 years,2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2021","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,4,4,>= 3 years,3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2022","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2023","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2024","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,1.5,N/A,stpo,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,4,N/A,stpo,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,6,N/A,stpo,converted age - More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,1.5,N/A,stpo,converted age - 1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,2.5,N/A,stpo,converted age - 2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,4,N/A,stpo,converted age - 3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,copy,N/A,Cigarettes/day - daily,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - daily smoker,cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,copy,N/A,Cigarettes/day - former daily,Cigarettes/day - former daily,cigarettes,"[1,99]",# of cigarettes smoke each day - former daily,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMKDSTY_A,SMKDSTY_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,1,6,Daily,Daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,2,6,Occasional (former daily),Former daily current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,3,6,Always occasional,Never daily current occasional smoker,N/A,3,Always occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,4,6,Former daily,Former daily current nonsmoker,N/A,4,Former daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,5,Former occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,6,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6N/A_Func::SMKDSTY_fun,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,Func::SMKDSTY_fun,N/A,N/A,N/A,N/A,N/A,N/A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,1,6,Daily,Daily smoker,N/A,N/A,Daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,2,6,Occasional (former daily),Former daily current occasional smoker,N/A,N/A,Occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,3,6,Always occasional,Never daily current occasional smoker,N/A,N/A,Always occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,4,6,Former daily,Former daily current nonsmoker,N/A,N/A,Former daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,N/A,Former occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,6,6,Never smoked,Never smoked,N/A,N/A,Never smoked,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,NA::b,6,missing,missing,N/A,N/A,missing,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,1,6,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,2,6,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,3,6,Former daily,Former daily smoker (non-smoker now),N/A,3,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,4,6,Former occasional,Former occasional (non-smoker now),N/A,4,Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,5,6,Experimental,"Experimental smoker (at least 1 cig, non-smoker now)",N/A,5,Experimental,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)",, -SMKDSTY_B,SMKDSTY_B_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,NA::b,6,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,1,3,Current,Current smoker,N/A,"[1,3]",Daily (1); Occasional (2); Always occasional (3),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,2,3,Former,Former smoker,N/A,"[4,5]",Former daily(4); Former occasional (5),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,NA::b,3,missing,missing,N/A,else,else,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,1,3,Current,Current smoker,N/A,"[1,2]",Daily (1); Occasional (2),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,2,3,Former,Former smoker,N/A,"[3,5]",Former daily (3); Former occasional (4); Experimental (5),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,NA::b,3,missing,missing,N/A,else,else,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,2,5,Occasional,Current occasional smoker,N/A,"[2,3]",Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never","SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category",, -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,3,5,Former daily,Former daily smoker,N/A,4,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,4,5,Former occasional,Former occasional,N/A,5,Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,NA::b,5,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,2,5,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,3,5,Former daily,Former daily smoker,N/A,3,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,4,5,Former occasional,Former occasional,N/A,"[4,5]",Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never","SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category",, -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKG01C_A,SMKG01C_A_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,3,10,15 To 19 Years,age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,NA::b,10,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,3,10,15 To 19 Years,age smoked first whole cigarette (18 to 19),years,"[15,20)",15 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,NA::b,10,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,11,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,"[15,18)",15 To 17 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,"[18,20)",18 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,NA::b,11,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,17,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,16,N/A,agec1,converted categorical age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,18.5,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,copy,N/A,agec1,agec1,years,"[5,80]",agec1,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG040,SMKG040_cat11_1,cat,,[SMKG040],,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_7,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_8,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_9,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_10,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_11,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,11,11,50 Years or more,age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigdfd,Age started to smoke daily - daily/former daily smoker,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,11,missing,missing,years,else,else,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,N/A,Func::SMKG040_fun,N/A,N/A,N/A,years,N/A,N/A,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,N/A,NA::b,N/A,missing,missing,years,N/A,N/A,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,8,N/A,agecigdfd,converted categorical age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,13,N/A,agecigdfd,converted categorical age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,16,N/A,agecigdfd,converted categorical age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,18.5,N/A,agecigdfd,converted categorical age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,22,N/A,agecigdfd,converted categorical age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,27,N/A,agecigdfd,converted categorical age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,32,N/A,agecigdfd,converted categorical age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,37,N/A,agecigdfd,converted categorical age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,42,N/A,agecigdfd,converted categorical age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,47,N/A,agecigdfd,converted categorical age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,55,N/A,agecigdfd,converted categorical age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigdfd,Age started to smoke daily - daily/former daily smoker,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,N/A,missing,missing,years,else,else,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG06C,SMKG06C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::b,3,missing,missing,years,else,else,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,NA::a,3,not applicable,not applicable,years,996,not applicable,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",A,,cat,NA::b,3,missing,missing,years,else,else,stpny,Years since stopped smoking daily - never daily,,, -SMKG09C,SMKG09C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpdy,Years since stopped smoking daily - former daily,Don't know (7) and refusal (8) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,NA::b,3,missing,missing,years,else,else,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,NA::a,3,not applicable,not applicable,years,996,not applicable,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,NA::b,3,missing,missing,years,else,else,stpdy,Years since stopped smoking daily - former daily,,, -SMKG203_A,SMKG203_A_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,NA::b,10,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,84]",50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,NA::b,10,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,"[15,18)",15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,"[18,20)",18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,"[50,84]",50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,NA::b,11,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,Func::SMKG203_fun,N/A,N/A,N/A,N/A,N/A,N/A,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[SMK_005, SMKG040, SMK_040]",,N/A,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,N/A,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,N/A,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,N/A,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,N/A,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,N/A,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,N/A,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,N/A,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,N/A,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,N/A,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,N/A,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,N/A,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,NA::b,N/A,missing,missing,years,N/A,missing,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,copy,N/A,agecigd,agecigd,years,"[5,84]",agecigd,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG207_A,SMKG207_A_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,NA::b,10,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,80]",50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,10,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,3,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,4,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,5,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,6,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,7,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,8,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,9,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,10,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,11,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,"[5,12)",5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,"[12,15)",12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,"[15,18)",15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,"[18,20)",18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,"[20,25)",20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,"[25,30)",25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,"[30,35)",30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,"[35,40)",35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,"[40,45)",40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,"[45,50)",45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,"[50,80]",50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,NA::b,11,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,copy,N/A,agecigd,agecigd,years,"[5,80]",agecigfd,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,Func::SMKG207_fun,N/A,N/A,N/A,N/A,N/A,N/A,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,N/A,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,N/A,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,N/A,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,N/A,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,N/A,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,N/A,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,N/A,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,N/A,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,N/A,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,N/A,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,N/A,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,NA::b,N/A,missing,missing,years,N/A,missing,agecigfd,Age started to smoke daily - former daily smoker,,, -smoke_simple,smoke_simple_catN/A_Func::smoke_simple_fun,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,Func::smoke_simple_fun,N/A,N/A,N/A,N/A,N/A,N/A,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,0,4,Non-smoker (never smoked),Non-smoker (never smoked),N/A,N/A,Non-smoker (never smoked),Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,1,4,Current smoker (daily and occasional),Current smoker (daily and occasional),N/A,N/A,Current smoker (daily and occasional),Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,2,4,Former daily smoker quit less than 5 years or former occasional smoker ,Former daily smoker quit less than 5 years or former occasional smoker ,N/A,N/A,Former daily smoker quit less than 5 years or former occasional smoker ,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,3,4,Former daily smoker quit >5 years,Former daily smoker quit >5 years,N/A,N/A,Former daily smoker quit >5 years,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,NA::a,4,not applicable,not applicable,N/A,N/A,not applicable,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,NA::b,4,missing,missing,N/A,N/A,missing,Simple smoking status,Simple smoking status,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",,N/A,Func::SPS_5_fun,N/A,N/A,N/A,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall,,, -SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",,N/A,NA::b,N/A,missing,missing,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall,,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,copy,N/A,# friends and relatives,Number of friends and relatives,N/A,"[0,99]",Number of friends and relatives,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,NA::b,N/A,missing,missing,N/A,else,else,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",,N/A,Func::time_quit_smoking_fun,N/A,N/A,N/A,Years,N/A,N/A,Time since quit,Time since quit smoking,Variable derived from various harmonized smoking variables,, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",,N/A,NA::a,N/A,not applicable,not applicable,Years,N/A,N/A,Time since quit,Time since quit smoking,,, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",,N/A,NA::b,N/A,missing,missing,Years,N/A,N/A,Time since quit,Time since quit smoking,,, -WTS_M,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]",,N/A,copy,N/A,N/A,N/A,N/A,"[1.07,71809.93]",N/A,Weight,Weights,,, -WTS_S,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[WTS_S],,N/A,copy,N/A,N/A,N/A,N/A,"[2.94,65198.17]",N/A,Weight - Share,,,, diff --git a/variable sheets/variables.csv b/variable sheets/variables.csv deleted file mode 100644 index 9952dd3..0000000 --- a/variable sheets/variables.csv +++ /dev/null @@ -1,357 +0,0 @@ -variable,label,labelLong,section,subject,variableType,units,ICES confirmation,databaseStart,variableStart,description -active_transport,Daily active transportation,Time spent - active transportation daily,Health behaviour,Exercise,Continuous,mins,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont], DerivedVar::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], DerivedVar::[PAYDVTTR, PAADVTRV]", -ADL_01,Help preparing meals,Needs help - preparing meals,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]", -ADL_01_A,Help preparing meals,Needs help - preparing meals,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02,Help appointments/errands,Needs help - getting to appointments/errands,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]", -ADL_02_A,Help appointments/errands,Needs help - getting to appointments/errands,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03,Help housework,Needs help - doing housework,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]", -ADL_03_A,Help housework,Needs help - doing housework,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015], -ADL_04,Help personal care,Needs help - personal care,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]", -ADL_04_A,Help personal care,Needs help - personal care,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020], -ADL_05,Help move inside house,Needs help - moving about inside house,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]", -ADL_05_A,Help move inside house,Needs help - moving about inside house,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025], -ADL_06,Help personal finances,Needs help - looking after finances,Health status,ADL,Categorical,N/A,Yes,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]", -ADL_06_A,Help personal finances,Needs help - looking after finances,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030], -ADL_07,Help heavy household chores,Needs help - heavy household chores,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D", -ADL_der,Derived help tasks,Derived needs help with tasks,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]", -ADL_score_5,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]", -ADL_score_6,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]", -ADLF6R,Help tasks,Needs help with at least one task - (F),Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]", -ADM_RNO,Sequential record number,Sequential record number,N/A,N/A,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]", -ALC_005,Alcohol in lifetime,"In lifetime, ever drank alcohol?",Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]", -ALC_1,Alcohol past year,"Past year, have you drank alcohol",Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]", -ALCDTTM,Drinker type (last 12 months),Type of drinker (12 months),Health behaviour,Alcohol,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]", -ALCDTYP,Drinker type,Type of drinker - (D),Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]", -ALCDTYP_A,Former drinker,Type of drinker,Health behaviour,Alcohol,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]", -ALW_1,Any alcohol past week,"Past week, had any alcohol",Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]", -ALW_2A1,# of drinks - Sunday,Number of drinks on Sunday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]", -ALW_2A2,# of drinks - Monday,Number of drinks on Monday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]", -ALW_2A3,# of drinks - Tuesday,Number of drinks on Tuesday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]", -ALW_2A4,# of drinks - Wednesday,Number of drinks on Wednesday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]", -ALW_2A5,# of drinks - Thursday,Number of drinks on Thursday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]", -ALW_2A6,# of drinks - Friday,Number of drinks on Friday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]", -ALW_2A7,# of drinks - Saturday,Number of drinks on Saturday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]", -ALWDDLY,Average daily consumption,Average daily alcohol consumption,Health behaviour,Alcohol,Continuous,drinks/day,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]", -ALWDVLTR_der,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . -ALWDVSTR_der,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . -ALWDWKY,Drinks last week,Weekly consumption of alcohol,Health behaviour,Alcohol,Continuous,drinks/week,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]", -binge_drinker,Binge Drinker,Binge Drinker,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]", -CCC_031,Asthma,Do you have asthma?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]", -CCC_035,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]", -CCC_036,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]", -CCC_041,Fibromyalgia,Do you have Fibromyalgia?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]", -CCC_051,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]", -CCC_061,Back problems,Do you have back problems?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]", -CCC_071,Hypertension,Do you have high blood pressure?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]", -CCC_072,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]", -CCC_073,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]", -CCC_073A,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,Health status,Chronic condition,Categorical,N/A,,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A], -CCC_073B,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",Health status,Chronic condition,Categorical,N/A,,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B], -CCC_075,Blood cholesterol,Do you have high blood cholesterol or lipids?,Health status,Chronic condition,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075], -CCC_081,Migraine Headache,Do you have migraine headaches?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]", -CCC_091,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]", -CCC_101,Diabetes,Do you have diabetes?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]", -CCC_102_A,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Categorical,years,,"cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCCG102, [CCC_102]", -CCC_102_B,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Categorical,years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2009_s::CCC_102, cchs2010_s::CCC_102, cchs2012_s::CCC_102, [CCCG102]", -CCC_102_cont,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Continuous,years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCCG102, cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2009_s::CCC_102, cchs2010_s::CCC_102, cchs2012_s::CCC_102, [CCCG102]", -CCC_105,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]", -CCC_106,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]", -CCC_10A,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]", -CCC_10B,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]", -CCC_10C,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]", -CCC_111,Epilepsy,Do you have epilepsy?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111", -CCC_121,Heart Disease,Do you have heart disease?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]", -CCC_131,Active Cancer,Do you have cancer?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]", -CCC_141,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]", -CCC_151,Stroke,Do you suffer from effects of stroke?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]", -CCC_161,Urinary incontinence,Do you suffer from urinary incontinence?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]", -CCC_171,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]", -CCC_17A,Type of bowel disorder,What kind of bowel disease do you have?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]", -CCC_181,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,Health status,Chronic condition,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181], -CCC_251,Chronic fatigue,Do you have chronic fatigue syndrome?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]", -CCC_261,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]", -CCC_280,Mood disorder,Do you have a mood disorder?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]", -CCC_290,Anxiety Disorder,Do you have an anxiety disorder?,Health status,Chronic condition,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]", -CCC_31A,Cancer diagnosis,Have you ever been diagnosed with cancer?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]", -CCC_91A,Bronchitis,Do you have chronic bronchitis?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]", -CCC_91E,Emphysema,Do you have emphysema?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E", -CCC_91F,COPD,Do you have COPD?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F", -COPD_Emph_der,COPD/Emphysema,COPD/Emphysema,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F], DerivedVar::[DHHGAGE_cont, CCC_091]", -DEPDVSEV,Depression scale - severity of depression,Depression scale - severity of depression,Health status,Chronic condition,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015. -DHH_AGE,Age,Age,Demographics,Age,Continuous,Years,Yes,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",Continuous age variable for shared files and ICES -DHH_OWN,Home ownership,Dwelling - owned by a member of hsld,Sociodemographics,Home ownership,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]", -DHH_SEX,Sex,Sex,Demographics,Sex,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]", -DHHGAGE_5,Age,Age (20-year age groups),Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]","5 age groups: <20, 20 to 39, 40 to 59, 60 to 79, 80+ years" -DHHGAGE_A,Age,Age,Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]", -DHHGAGE_B,Age,Age,Demographics,Age,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]", -DHHGAGE_C,Age,Categorical age,Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],Derived categorical age variable using DHHGAGE_cont -DHHGAGE_cont,Age,Converted categorical age,Demographics,Age,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",Continuous age variable -DHHGAGE_D,Age,Age (10-year age groups),Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]","8 age groups: 12 to 19, 20 to 29, 30 to 39, 40 to 49, 50 to 59, 60 to 69, 70 to 79, 80+ years" -DHHGHSZ,Household size,Household size,Sociodemographics,Household Characteristics,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, cchs2009_s::DHHDHSZ, cchs2010_s::DHHDHSZ, cchs2012_s::DHHDHSZ, [DHHGHSZ]", -DHHGMS,Marital status,Marital status - (G),Sociodemographics,Marital Status,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, cchs2009_s::DHH_MS, cchs2010_s::DHH_MS, cchs2012_s::DHH_MS, [DHHGMS]", -DHH_MS,Marital status,Marital status,Sociodemographics,Marital Status,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",Categorical Marital Status -DHH_MS_A,Marital status,Marital status,Sociodemographics,Marital Status,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",Categorical Marital Status with DemPoRt specific categories -diet_score,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]","A derived diet variable based on daily consumption of ""fruit, salad, potatoes, carrots, other vegetables, and juice"". Two baseline points plus summation of total points for diet attributes with penalty for high potato intake, no carrot intake and high juice consumption (negative overall scores are recoded to 0, resulting in a range from 0 to 10)." -diet_score_cat3,Categorical diet score,Categorical diet score,Health behaviour,Diet,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],Derived categorical diet score using diet_score -DIS_10G,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]", -DIS_10H,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]", -DPS_02,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02], -DPS_03,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03], -DPS_04,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04], -DPS_05,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05], -DPS_06,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06], -DPS_07,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07], -DPS_08A,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A], -DPS_08B,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B], -DPS_09,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09], -DPS_10,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10], -DPS_11,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11], -DPS_12,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12], -DPS_13,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13], -DPS_14,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,Health status,Chronic condition,Continuous,weeks,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14], -DPSDMT,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]", -DPSDPP,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,Health status,Chronic condition,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]", -DPSDSF,Depression Scale - Short Form Score,Depression Scale - Short Form Score,Health status,Chronic condition,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]", -DPSDWK,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),Health status,Chronic condition,Continuous,weeks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]", -EDUDR03,Highest education,Highest level/education - 3 categories,Sociodemographics,Education,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3, [EDUDR04]", -EDUDR04,Highest education,Highest level/education - 4 categories,Sociodemographics,Education,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]", -energy_exp,Daily energy expenditure,Daily energy expenditure,Health behaviour,Exercise,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE], DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVDYS]", -FINF1,Food insecurity 12M,Some food insecurity in past 12 months,Sociodemographics,Food security,Categorical,N/A,,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1", -FLU_160,Ever had a flu shot,Have you ever had a flu shot?,Health care use,Vaccination,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]", -FLU_162,Last time had flu shot,When did you have your last flu shot?,Health care use,Vaccination,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]", -food_insecurity_der,Food insecurity 12M,Derived food insecurity,Sociodemographics,Food security,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FINAF1, cchs2003_p::FINCF1, [FSCEDHFS], cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]", -FSCDHFS,Food security,Household food security status - (D),Sociodemographics,Food security,Categorical,N/A,,cchs2005_p,[FSCEDHFS], -FSCDHFS2,HC food security,Household food security status - (HC),Sociodemographics,Food security,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]", -FVC_1A,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A], -FVC_1B,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B], -FVC_1C,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C], -FVC_1D,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D], -FVC_1E,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E], -FVC_2A,Eats fruit unit,Eats fruit - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A], -FVC_2B,Eats fruit daily,Eats fruit - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B], -FVC_2C,Eats fruit weekly,Eats fruit - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C], -FVC_2D,Eats fruit monthly,Eats fruit - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D], -FVC_2E,Eats fruit yearly,Eats fruit - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E], -FVC_3A,Eats green salad unit,Eats green salad - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A], -FVC_3B,Eats green salad daily,Eats green salad - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B], -FVC_3C,Eats green salad weekly,Eats green salad - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C], -FVC_3D,Eats green salad monthly,Eats green salad - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D], -FVC_3E,Eats green salad yearly,Eats green salad - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E], -FVC_4A,Eats potatoes unit,Eats potatoes - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A], -FVC_4B,Eats potatoes daily,Eats potatoes - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B], -FVC_4C,Eats potatoes weekly,Eats potatoes - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C], -FVC_4D,Eats potatoes monthly,Eats potatoes - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D], -FVC_4E,Eats potatoes yearly,Eats potatoes - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E], -FVC_5A,Eats carrots unit,Eats carrots - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A], -FVC_5B,Eats carrots daily,Eats carrots - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B], -FVC_5C,Eats carrots weekly,Eats carrots - no. of times/week ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C], -FVC_5D,Eats carrots monthly,Eats carrots - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D], -FVC_5E,Eats carrots yearly,Eats carrots - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E], -FVC_6A,Eats other vegetables unit,Eats other vegetables - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A], -FVC_6B,Eats other vegetables daily,Eats other vegetables - servings/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B], -FVC_6C,Eats other vegetables weekly,Eats other vegetables - servings/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C], -FVC_6D,Eats other vegetables monthly,Eats other vegetables - servings/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D], -FVC_6E,Eats other vegetables yearly,Eats other vegetables - servings/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E], -FVCDCAR,Carrot consumption,Daily consumption - carrots (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]", -FVCDFRU,Fruit consumption,Daily consumption - fruit - (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]", -FVCDJUI,Juice consumption,Daily consumption - fruit juice (D),Health behaviour,Diet,Continuous,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]", -FVCDPOT,Potato consumption,Daily consumption - potatoes (D),Health behaviour,Diet,Continuous,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]", -FVCDSAL,Salad consumption,Daily consumption - green salad - (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]", -FVCDTOT,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Health behaviour,Diet,Continuous,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]", -FVCDVEG,Other veg consumption,Daily consumption other vegetables - (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]", -GEN_01,Self-perceived health,Self-perceived health,Health status,Self-perceived health,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]", -GEN_02A,Life satisfaction_cat,Satisfaction with life,Health status,Satisfaction with life,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]", -GEN_02A2,Life satisfaction_cont,Satisfaction with life in general,Health status,Satisfaction with life,Continuous,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]", -GEN_02B,Self-perceived mental health,Self-perceived mental health,Health status,Mental health,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]", -GEN_07,Self-perceived life stress,Self-perceived life stress,Health status,Mental health,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]", -GEN_09,Self-perceived work stress,Self-perceived work stress,Health status,Mental health,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]", -GEN_10,Sense of belonging,Sense of belonging in the community,Health status,Mental health,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]", -GEODPMF,Health Region - (G),Health Region - (G),Demographics,Health region,Categorical,N/A,,"cchs2013_2014_p, cchs2014_p",[GEODPMF], -GEOGPRV,Province,Province of residence of respondent (G),Demographics,Province,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]", -HCU_1AA,Has regular medical doctor,Do you have a regular medical doctor?,Health care use,Medical care,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]", -HUIDCOG,HUI Cognition,Cognition prob. - function code - (D),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]", -HUIDEMO,HUI Emotion,Emotional problems - function code - (D),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]", -HUIDHSI,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat10,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat20,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat50,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIGDEX,HUI Dexterity,"Dexterity trouble - function code (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, cchs2009_s::HUIDDEX, cchs2010_s::HUIDDEX, cchs2012_s::HUIDDEX, [HUIGDEX]", -HUIGHER,HUI Hearing,"Hearing problems - function code (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, cchs2009_s::HUIDHER, cchs2010_s::HUIDHER, cchs2012_s::HUIDHER, [HUIGHER]", -HUIGMOB,HUI Mobility,"Mobility trouble - function code (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, cchs2009_s::HUIDMOB, cchs2010_s::HUIDMOB, cchs2012_s::HUIDMOB, [HUIGMOB]", -HUIGSPE,HUI Speech,"Speech trouble - function code - (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, cchs2009_s::HUIDSPE, cchs2010_s::HUIDSPE, cchs2012_s::HUIDSPE, [HUIGSPE]", -HUIGVIS,HUI Vision,"Vision trouble - function code - (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, cchs2009_s::HUIDVIS, cchs2010_s::HUIDVIS, cchs2012_s::HUIDVIS, [HUIGVIS]", -HUI06,HUI Hearing ability - in a group without a hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]", -HUI07,HUI Hearing ability - in a group with a hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]", -HUI07A,HUI Hearing ability -able to hear,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]", -HUI08,HUI Hearing ability - able to hear in a quiet room without hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]", -HUI09,HUI Hearing ability - able to hear in a quiet room with hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]", -HUPDPAD,HUI Pain,Act. prevent/pain - function code - (D),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]", -HWTGBMI,BMI,"BMI / self-report - (D,G)",Health status,BMI,Continuous,kg/m2,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, [HWTGBMI]", -HWTGBMI_der,Derived BMI,Derived Body Mass Index,Health status,BMI,Continuous,kg/m2,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]", -HWTGBMI_der_cat4,Categorical BMI,Categorical body mass index,Health status,BMI,Categorical,kg/m2,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],Derived categorical variable using HWTGBMI -HWTDBMI,BMI,"BMI / self-report - (D,G)",Health status,BMI,Categorical,kg/m2,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADBMI, cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2015_2016_i::HWTDVBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]", -HWTGCOR,Adjusted BMI,Adjusted BMI,Health status,BMI,Continuous,kg/m2,,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR], -HWTGCOR_der,Derived adjusted BMI,Derived adjusted BMI,Health status,BMI,Continuous,kg/m2,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]", -HWTGHTM,Height,"Height (metres)/self-reported - (D,G)",Health status,Height,Continuous,meters,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT, cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, [HWTGHTM]", -HWTDHTM,Height,Height (metres)/self-reported - (D),Health status,Height,Continuous,meters,Yes,"cchs_2001_i, cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADHTM, cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]", -HWTGWTK,Weight,"Weight - kilograms (D, G)",Health status,Weight,Continuous,kg,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, [HWTGWTK]", -HWTDWTK,Weight,Weight - kilograms (D),Health status,Weight,Continuous,kg,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]", -immigration_der,Immigration category,Immigration category,Sociodemographics,Migration,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]", -INCDRCA,Household income distribution,Household income distribution - (D),Sociodemographics,Income,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]", -INCDRPR,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),Sociodemographics,Income,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]", -INCDRRS,Household income distribution health region level,Hhld inc. distribution- hr level - (D),Sociodemographics,Income,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]", -INCGHH_A,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2001_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, [INCDHH]", -INCGHH_B,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, cchs2003_p::INCCGHH, cchs2005_p::INCEGHH, [INCDHH]", -INCGHH_C,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, cchs2009_s::INCDHH, cchs2010_s::INCDHH, cchs2012_s::INCDHH, [INCGHH]", -INCGHH_D,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDHH], -INCGHH_E,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDHH], -INCGHH_F,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,cchs2012_s,[INCDHH], -INCGHH_cont,Household income,Total household income from all sources - continuous,Sociodemographics,Income,Continuous,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, cchs2003_p::INCCGHH, cchs2005_p::INCEGHH, cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, cchs2009_s::INCDHH, cchs2010_s::INCDHH, cchs2012_s::INCDHH, [INCGHH]", -INCGPER_A,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER, [INCDPER]", -INCGPER_B,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, cchs2009_s::INCDPER, cchs2010_s::INCDPER, cchs2012_s::INCDPER, [INCGPER]", -INCGPER_C,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER], -INCGPER_D,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER], -INCGPER_cont,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Continuous,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER, cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, cchs2009_s::INCDPER, cchs2010_s::INCDPER, cchs2012_s::INCDPER, [INCGPER]", -LBFA_31A,Occupation group,Main job or business,Sociodemographics,Occupation,Categorical,N/A,,cchs2001_p,[LBFA_31A], -LBFA_31A_a,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,,"cchs2001_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::LBFA_31A, cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, cchs2009_s::LBSDOCG, cchs2010_s::LBSDOCG, cchs2012_s::LBSDOCG, [LBSGSOC]","See Norwrouzi-Kia, et al. (2019) Int J Crit Illn Inj Sci. 2019 Jan-Mar; 9(1): 29:35. doi: 10.4103/IJCIIS.IJCIIS_43_18 and Nowrouzi-Kia, B., et al. (2018). Heart Disease and Occupational Risk Factors in the Canadian Population: An Exploratory Study Using the Canadian Community Health Survey."" Safety and Health at Work 9(2): 144-148. https://doi.org/10.1016/j.shaw.2017.07.008""" -LBFA_31A_b,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,,"cchs2001_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::LBFA_31A, cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, cchs2009_s::LBSDOCG, cchs2010_s::LBSDOCG, cchs2012_s::LBSDOCG, [LBSGSOC]","The exact same recoding as LBFA_31A_a except that the ""Other"" category in cchs2001_p was recoded to a new category ""Other"" rather than missing" -LBFA_31A_c,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG], -low_drink_score,Low risk drinking score,Low risk drinking score,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]","Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY." -low_drink_score1,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]","Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY, ALC_005, ALC_1." -MAM_037,Currently pregnant,Currently pregnant,Sociodemographics,Pregnancy,Categorical,N/A,,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]", -MED_1P,Sleeping pills,"In the past month, did you take sleeping pills",Health behaviour,Sleep,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]", -number_conditions,Number of conditions,Number of chronic conditions,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051], DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]", -PAA_045,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),Health behaviour,Exercise,Continuous,hours/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045], -PAA_050,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050], -PAA_075,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),Health behaviour,Exercise,Continuous,hours/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075], -PAA_080,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080], -PAADVDYS,Active days (18+ years old),Number of active days (18+ years old),Health behaviour,Exercise,Continuous,days,,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS], -PAADVTRV,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV], -PAADVVIG,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG], -PAC_4A,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Categorical,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A", -PAC_4A_cont,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Continuous,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A", -PAC_4B,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Categorical,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B", -PAC_4B_cont,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Continuous,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B", -PAC_7,Walk to work/school,Walked to work or school / last 3 mo.,Health behaviour,Exercise,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7], -PAC_7A,Number times walk work/school,No. of times/3 mo./walking work/school,Health behaviour,Exercise,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A], -PAC_7B,Time walk work/school,Time spent - walking to go work/school,Health behaviour,Exercise,Categorical,mins,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B], -PAC_8,Bike to work/school,Bicycled to work or school / last 3 mo.,Health behaviour,Exercise,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8], -PAC_8A,Number times bike work/school,No. of times/3 mo./bicycl. work/school,Health behaviour,Exercise,Continuous,times/3 mos.,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A], -PAC_8B,Time bike work/school,Time spent - biking to go work/school,Health behaviour,Exercise,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B], -PACDEE,Physical activity,Daily energy expenditure - (D),Health behaviour,Exercise,Continuous,METS,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]", -PACDEE_cat3,Categorical physical activity,Categorical daily energy expenditure,Health behaviour,Exercise,Categorical,METS,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]", -pack_years_cat,Categorical PackYears,Categorical smoking pack-years,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],Derived categorical variable using pack_years_der -pack_years_der,PackYears,Smoking pack-years,Health behaviour,Smoking,Continuous,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]", -PACFLEI,Leisure physical activites,Leisure physical activity,Health behaviour,Exercise,Categorical,N/A,Yes,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]", -PAYDVADL,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL], -PAYDVDYS,Active days (12-17 years old),Number of active days (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS], -PAYDVTOA,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA], -PAYDVTTR,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR], -PAYDVVIG,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG], -pct_time_der,Percent time in Canada,Percentage of time in Canada,Sociodemographics,Migration,Continuous,%,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]", -pct_time_der_cat10,Categorical percent time in Canada,Categorical percentage of time in Canada,Sociodemographics,Migration,Categorical,%,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der], -RAC_1,Difficulty activities,Has difficulty with activities,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]", -RAC_2A,Reduction activities at home,Reduction - activities at home,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]", -RAC_2B,Reduction activities at school or work,Long-term cond. reduces act. - school or work,Health status,ADL,Categorical,N/A,,cchs2001_p,cchs2001_p::RACA_2B, -RAC_2B1,Reduction activities at school,Long-term cond. reduces act. - school,Health status,ADL,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]", -RAC_2B2,Reduction activities at work,Reduction kind/amount act. - at work,Health status,ADL,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]", -RAC_2C,Reduction other activities,Reduction - other activities,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]", -RACAG5,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,,cchs2001_p,cchs2001_p::RACAG5, -RACDIMP,Impact health problem,Impact of health problems,Health status,Health problems,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]", -RACDPAL,Particpation/activity limitation,Participation and activity limitation,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::[DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]], cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]", -RACG5,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCG5, cchs2005_p::RACEG5, cchs2009_s::RAC_5, cchs2010_s::RAC_5, cchs2012_s::RAC_5, [RACG5]", -RACG5_A,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5], -RAC_6D,Needs help - heavy housework,Needs help - heavy housework,Health status,Health status,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D", -resp_condition_der,Respiratory condition,Respiratory condition,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031], DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031], DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]", -SDC_5A_1,Knowledge of official languages,Knowledge of official languages,Sociodemographics,Language,Categorical,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]", -SDCDFOLS,First official language spoken,First official language spoken,Sociodemographics,Language,Categorical,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]", -SDCFIMM,Immigrant status,Immigrant Status (D),Sociodemographics,Migration,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]", -SDCGCBG,Country of birth,Country of birth - (G),Sociodemographics,Migration,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, cchs2009_s::SDCGCB, cchs2010_s::SDCGCB, cchs2012_s::SDCGCB10, [SDCGCBG]", -SDCGCBG_A,Country of birth,Country of birth - (G),Sociodemographics,Migration,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]", -SDCGCGT,Ethnicity,"Cultural or racial origin - (D, G)",Sociodemographics,Ethnicity,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]", -SDCGCGT_A,Ethnicity,"Cultural or racial origin - (D, G)",Sociodemographics,Ethnicity,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT], -SDCDGT_A,Ethnicity,Cultural or racial origin - (D),Sociodemographics,Ethnicity,Categorical,N/A,Yes,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ", -SDCDGT_B,Ethnicity,Cultural origin,Sociodemographics,Ethnicity,Categorical,N/A,Yes,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ", -SDCGLHM,Language(s) spoken at home,Language(s) spoken at home,Sociodemographics,Language,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, cchs2009_s::SDCDLHM, cchs2010_s::SDCDLHM, cchs2012_s::SDCDLHM, [SDCGLHM]", -SDCGLHM_A,Language(s) spoken at home,Language(s) spoken at home,Sociodemographics,Language,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM], -SDCGLNG,Languages - can converse in,Languages - can converse in,Sociodemographics,Language,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2009_s, cchs2010_s","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, cchs2009_s::SDCDLNG, cchs2010_s::SDCDLNG, [SDCGLNG]", -SDCGLNG_A,Languages - can converse in,Languages - can converse in,Sociodemographics,Language,Categorical,N/A,,"cchs2009_s, cchs2010_s",[SDCDLNG], -SDCGRES,Time in Canada,"Length/time in Canada since imm. (D, G)",Sociodemographics,Migration,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, cchs2009_s::SDCDRES, cchs2010_s::SDCDRES, cchs2012_s::SDCDRES, [SDCGRES]", -SDCGRES_A,Time in Canada,"Length/time in Canada since imm. (D, G)",Sociodemographics,Migration,Continuous,Years,,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES], -SLP_02,Trouble sleeping,Freq. - trouble sleeping,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]", -SLP_02_A,Trouble sleeping,Freq. - trouble sleeping,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2001_p, cchs2001_i",[GENA_04], -SLP_03,Sleep refreshing,Freq. - find sleep refreshing,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]", -SLP_03_A,Sleep refreshing,Freq. - find sleep refreshing,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2001_p, cchs2001_i",[GENA_05], -SLP_04,Difficulty awake,Freq. - diffficult to stay awake,Health behaviour,Sleep,Categorical,N/A,,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]", -SLP_04_A,Difficulty awake,Freq. - diffficult to stay awake,Health behaviour,Sleep,Categorical,N/A,,cchs2001_p,[GENA_06], -SLPG01,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]", -SLPG01_A,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01", -SLPG01_B,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01], -SLPG01_C,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_009", -SLPG01_cont,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Continuous,N/A,,"cchs2001_p, cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01, cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]", -SMK_005,Type of smoker presently,Type of smoker presently,Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005], -SMK_01A,s100,"In lifetime, smoked 100 or more cigarettes",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]", -SMK_030,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030], -SMK_05B,cigdayo,# of cigarettes smoked daily - occasional smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]", -SMK_05C,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",Health behaviour,Smoking,Continuous,days,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]", -SMK_05D,evd,Ever smoked cigarettes daily - occasional smoker,Health behaviour,Smoking,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]", -SMK_06A_A,stpn,When did you stop smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,,cchs2001_p,cchs2001_p::SMKA_06A, -SMK_06A_B,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]", -SMK_06A_cont,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_06A, cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]", -SMK_09A_A,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,,cchs2001_p,cchs2001_p::SMKA_09A, -SMK_09A_B,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]", -SMK_09A_cont,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_09A, cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2001_i::SMKA_09A, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]", -SMK_204,cigdayd,# of cigarettes smoked daily - daily smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]", -SMK_208,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]", -SMKDSTY_A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)" -SMKDSTY_B,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY", -SMKDSTY_cat3,Smoking status,"Type of smoker: current, former, never",Health behaviour,Smoking,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]",Re-categorization of SMKDSTY to be used for smoking imputation -SMKDSTY_cat5,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2015_2016_p, cchs2017_2018, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]","Re-categorization of SMKDSTY to be used for smoking imputation. SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category" -SMKG01C_A,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C, cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]", -SMKG01C_B,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, [SMKG01C]", -SMKG01C_cont,agec1,Age smoked first cigarette,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMKG01C]", -SMKG040,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Categorical,Years,,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040], -SMKG040_cont,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKG203_cont, SMKG207_cont], [SMKG040]", -SMKG06C,stpny,Years since stopped smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, cchs2009_s::SMK_06C, cchs2010_s::SMK_06C, cchs2012_s::SMK_06C, [SMKG06C]", -SMKG09C,stpdy,Years since stopped smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2009_s::SMK_09C, cchs2010_s::SMK_09C, cchs2012_s::SMK_09C, cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMKG09C]", -SMKG203_A,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203, cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]", -SMKG203_B,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, [SMKG203]", -SMKG203_cont,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, cchs2001_i::SMKAG203, [SMKG203], DerivedVar::[SMK_005, SMKG040]", -SMKG207_A,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207, cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]", -SMKG207_B,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, [SMKG207]", -SMKG207_cont,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMKG207], DerivedVar::[SMK_030, SMKG040]", -smoke_simple,Simple smoking status,Simple smoking status,Health behaviour,Smoking,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]", -SPS_01,SPS-5 - people to depend on for help,Five-item social provision scale - people to depend on for help,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]", -SPS_02,SPS-5 - people who enjoy same social activities,Five-item social provision scale - people who enjoy same social activities,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]", -SPS_03,SPS-5 - close relationships,Five-item social provision scale - close relationships,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]", -SPS_04,SPS-5 - important decision discussion,Five-item social provision scale - important decision discussion,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]", -SPS_05,SPS-5 - competence and skill are recognized,Five-item social provision scale - competence and skill are recognized,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]", -SPS_06,SPS-5 - trustworthy person for advice,Five-item social provision scale - trustworthy person for advice,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]", -SPS_07,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - group with shared attitudes and beliefs,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]", -SPS_08,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - strong emotional bond with a least one person,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]", -SPS_09,SPS-5 - admired talents and abilities,Five-item social provision scale - admired talents and abilities,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]", -SPS_10,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]", -SPS5_der,SPS-5 - overall,Five-item social provision scale - overall,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]", -SSA_01,MOS - # close friend and relatives,Medical Outcome Study - Social Support Survey - number of close friends and relatives,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01], -SSA_02,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - has someone to give help if confined to bed,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02], -SSA_03,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - has someone to listen,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03], -SSA_04,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - has someone to listen,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04], -SSA_05,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - has someone to take to doctor,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05], -SSA_06,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - has someone who shows love and affection,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06], -SSA_07,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - has someone to have a good time with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07], -SSA_08,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - has someone to give info to help understand a situation,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08], -SSA_09,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - has someone to confide in,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09], -SSA_10,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - has someone who gives hugs,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10], -SSA_11,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - has someone to get together with for relaxation,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11], -SSA_12,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - has someone to prepare meals,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12], -SSA_13,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - has someone to give advice,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13], -SSA_14,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - has someone to do things to get mind off things,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14], -SSA_15,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - has someone to help with daily chores if sick,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15], -SSA_16,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - has someone to share most private worries and fears with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16], -SSA_17,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - has someone to share most private worries and fears with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17], -SSA_18,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - has someone to do something enjoyable with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18], -SSA_19,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - has someone who understands problems,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19], -SSA_20,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - has someone who loves and makes feel wanted,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20], -time_quit_smoking,Time since quit,Time since quit smoking,Health behaviour,Smoking,Continuous,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMK_09A_B, SMKG09C]", -WTS_M,Weight,Weights,N/A,N/A,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]", -WTS_S,Weight - Share,Weights - Share,N/A,N/A,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[WTS_S], diff --git a/worksheets/cchs-master/CCHS_Content_Tracking_Tool_-_2012.xls b/worksheets/cchs-master/CCHS_Content_Tracking_Tool_-_2012.xls deleted file mode 100644 index 4123853..0000000 Binary files a/worksheets/cchs-master/CCHS_Content_Tracking_Tool_-_2012.xls and /dev/null differ diff --git a/worksheets/cchs-master/ICES Data Dictionary Variables.xlsx b/worksheets/cchs-master/ICES Data Dictionary Variables.xlsx deleted file mode 100644 index 3f6ba65..0000000 Binary files a/worksheets/cchs-master/ICES Data Dictionary Variables.xlsx and /dev/null differ diff --git a/worksheets/cchs-master/variable_details.csv b/worksheets/cchs-master/variable_details.csv deleted file mode 100644 index 4a68806..0000000 --- a/worksheets/cchs-master/variable_details.csv +++ /dev/null @@ -1,3447 +0,0 @@ -variable,dummyVariable,typeEnd,databaseStart,variableStart,ICES confirmation,typeStart,recEnd,numValidCat,catLabel,catLabelLong,units,recStart,catStartLabel,variableStartShortLabel,variableStartLabel,notes,, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","DerivedVar::[PAC_4A_cont, PAC_4B_cont]",,N/A,Func::active_transport1_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont]",,N/A,Func::active_transport2_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[PAYDVTTR, PAADVTRV]",,N/A,Func::active_transport3_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont, PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont, PAYDVTTR, PAADVTRV]",,N/A,NA::a,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont, PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont, PAYDVTTR, PAADVTRV]",,N/A,NA::b,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,,, -ADL_01,ADL_01_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_01,ADL_01_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,2,2,No,No,N/A,"[1,2]",No,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,,, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",,cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_01_A,ADL_01_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,,, -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],,cat,NA::b,4,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,,, -ADL_02,ADL_02_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help appointments/errands,Needs help - getting to appointments/errands,"In the 2001 CCHS, respondents were asked, ""Because of any condition or health problem, do you need the help of another person in shopping for groceries or other necessities?""",, -ADL_02,ADL_02_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_02,ADL_02_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,2,2,No,No,N/A,"[1,2]",No,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",,cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_02_A,ADL_02_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],,cat,NA::b,4,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,,, -ADL_03,ADL_03_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_03,ADL_03_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,2,2,No,No,N/A,"[1,2]",No,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,,, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",,cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help housework,Needs help - doing housework,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_03_A,ADL_03_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,,, -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],,cat,NA::b,4,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,,, -ADL_04,ADL_04_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_04,ADL_04_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,2,2,No,No,N/A,"[1,2]",No,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,,, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",,cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal care,Needs help - personal care,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_04_A,ADL_04_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,,, -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],,cat,NA::b,4,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,,, -ADL_05,ADL_05_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_05,ADL_05_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,2,2,No,No,N/A,"[1,2]",No,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,,, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",,cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_05_A,ADL_05_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,,, -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],,cat,NA::b,4,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,,, -ADL_06,ADL_06_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,, -ADL_06,ADL_06_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_06,ADL_06_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,2,2,No,No,N/A,"[1,2]",No,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,,, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",,cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal finances,Needs help - looking after finances,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",, -ADL_06_A,ADL_06_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,,, -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],,cat,NA::b,4,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,,, -ADL_07,ADL_07_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help heavy household chores,Needs help - heavy household chores,,, -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help heavy household chores,Needs help - heavy household chores,,, -ADL_der,ADL_der_catN/A_Func::adl_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,Func::adl_fun,N/A,N/A,N/A,N/A,N/A,N/A,Derived help tasks,Derived needs help with tasks,"Derived variable based on ADL_01, ADL_02, ADL_03, ADL_04, ADL_05",, -ADL_der,ADL_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,1,2,Needs help with tasks,Needs help with tasks,N/A,N/A,Needs help with tasks,Derived help tasks,Derived needs help with tasks,,, -ADL_der,ADL_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,2,2,Does not need help with tasks,Does need help with tasks,N/A,N/A,Does need help with tasks,Derived help tasks,Derived needs help with tasks,,, -ADL_der,ADL_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,NA::b,2,missing,missing,N/A,N/A,Does need help with tasks,Derived help tasks,Derived needs help with tasks,,, -ADL_score_5,ADL_score_5_catN/A_Func::adl_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,Func::adl_score_5_fun,N/A,N/A,N/A,N/A,N/A,N/A,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,0,6,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,Needs help with 0 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,1,6,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,Needs help with at least 1 task,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,2,6,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,Needs help with at least 2 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,3,6,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,Needs help with at least 3 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,4,6,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,Needs help with at least 4 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,5,6,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,Needs help with at least 5 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_5,ADL_score_5_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,N/A,NA::b,6,missing,missing,N/A,N/A,missing,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_catN/A_Func::adl_score_6_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,Func::adl_score_6_fun,N/A,N/A,N/A,N/A,N/A,N/A,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,0,7,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,Needs help with 0 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,1,7,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,Needs help with at least 1 task,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,2,7,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,Needs help with at least 2 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,3,7,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,Needs help with at least 3 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,4,7,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,Needs help with at least 4 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,5,7,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,Needs help with at least 5 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,6,7,Needs help with at least 6 tasks,Needs help with at least 6 tasks,N/A,N/A,Needs help with at least 6 tasks,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,NA::a,7,not applicable,not applicable,N/A,N/A,not applicable,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADL_score_6,ADL_score_6_cat7_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,NA::b,7,missing,missing,N/A,N/A,missing,ADL score ,"Derived using the ADL variables used in DemPoRT from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",,, -ADLF6R,ADLF6R_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,1,2,Yes,Yes,N/A,1,Yes,Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,2,2,No,No,N/A,2,No,Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help tasks,Needs help with at least one task - (F),,, -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",,cat,NA::b,2,missing,missing,N/A,else,else,Help tasks,Needs help with at least one task - (F),,, -ADM_RNO,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]",,cont,copy,N/A,Sequential record number,Sequential record number,N/A,"[1,999998]",Sequential record number,Sequential record number,Sequential record number,,, -ALC_005,ALC_005_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,1,2,yes,alcohol in the lifetime,N/A,1,"In lifetime, ever had a drink?",Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,2,2,no,no alcohol in lifetime,N/A,2,"In lifetime, ever had a drink?",Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",,cat,NA::b,2,missing,missing,N/A,else,else,Alcohol in lifetime,"In lifetime, ever drank alcohol?",,, -ALC_1,ALC_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,1,2,yes,alcohol in the past year,N/A,1,"Past year, have you drank alcohol",Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,2,2,no,no alcohol in past year,N/A,2,"Past year, have you drank alcohol",Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol past year,"Past year, have you drank alcohol",,, -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",,cat,NA::b,2,missing,missing,N/A,else,else,Alcohol past year,"Past year, have you drank alcohol",,, -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,1,3,Regular,Regular Drinker,N/A,1,Regular Drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,No drink in the last 12 months,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,1,3,Regular,Regular Drinker,N/A,1,Regular drinker,Drinker type (last 12 months),Type of drinker (12 months),"In CCHS cycles 2001, 2003, and 2005, ALCDTTM was derived from ALCDTYP in which former and never drinkers were combined into ""No drink in the last 12 months""",, -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,Former drinker,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,4,Never drank,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (12 months),,, -ALCDTYP,ALCDTYP_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,1,4,Regular,Regular drinker,N/A,1,Regular drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,2,4,Occasional,Occasional drinker,N/A,2,Occasional drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,3,4,Former,Former drinker,N/A,3,Former drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,4,4,Never drank,Never drank,N/A,4,Never drank,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,NA::a,4,Not applicable,not applicable,N/A,6,not applicable,Drinker type,Type of drinker - (D),,, -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type,Type of drinker - (D),Don't know (7) and refusal (8) not included in 2001 CCHS,, -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, [ALNDTYP]",,cat,NA::b,4,missing,missing,N/A,else,else,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,1,2,Former ,Former drinker,N/A,3,Former drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,2,2,Other,Other drinker,N/A,"[1,2]",Other drinker,Drinker type,Type of drinker - (D),"""Other"" drinker type derived from combining ""Regular"", ""Occasional"" and ""Never"" drink categories ",, -ALCDTYP_A,ALCDTYP_cat5_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,2,2,Other,Other drinker,N/A,[4],Other drinker,Drinker type,Type of drinker - (D),"""Other"" drinker type derived from combining ""Regular"", ""Occasional"" and ""Never"" drink categories ",, -ALCDTYP_A,ALCDTYP_cat5_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP",ICES specifc,cat,NA::b,2,missing,missing,N/A,else,else,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,1,2,Former,Former drinker,N/A,3,Former drinker,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,2,2,Other,Other drinker,N/A,"[1,2]",Other drinker,Drinker type,Type of drinker - (D),"""Other"" drinker type derived from combining ""Regular"" and ""Occasional"" drinker categories ",, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type,Type of drinker - (D),,, -ALCDTYP_A,ALCDTYP_cat5_NA::b,cat,"cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]",ICES specifc,cat,NA::b,2,missing,missing,N/A,else,else,Drinker type,Type of drinker - (D),,, -ALW_1,ALW_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,1,2,yes,alcohol in the past week,N/A,1,"Past week, had any alcohol",Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,2,2,no,no alcohol in past week,N/A,2,"Past week, had any alcohol",Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Any alcohol past week,"Past week, had any alcohol",,, -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",,cat,NA::b,2,missing,missing,N/A,else,else,Any alcohol past week,"Past week, had any alcohol",,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,copy,N/A,# of drinks - Sunday,Number of drinks on Sunday,drinks,"[0,50]",Number of drinks on Sunday,# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Sunday,Number of drinks on Sunday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,copy,N/A,# of drinks - Monday,Number of drinks on Monday,drinks,"[0,50]",Number of drinks on Monday,# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Monday,Number of drinks on Monday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,copy,N/A,# of drinks - Tuesday,Number of drinks on Tuesday,drinks,"[0,50]",Number of drinks on Tuesday,# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Tuesday,Number of drinks on Tuesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,copy,N/A,# of drinks - Wednesday,Number of drinks on Wednesday,drinks,"[0,90]",Number of drinks on Wednesday,# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Wednesday,Number of drinks on Wednesday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,copy,N/A,# of drinks - Thursday,Number of drinks on Thursday,drinks,"[0,90]",Number of drinks on Thursday,# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Thursday,Number of drinks on Thursday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,copy,N/A,# of drinks - Friday,Number of drinks on Friday,drinks,"[0,60]",Number of drinks on Friday,# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Friday,Number of drinks on Friday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,copy,N/A,# of drinks - Saturday,Number of drinks on Saturday,drinks,"[0,50]",Number of drinks on Saturday,# of drinks - Saturday,Number of drinks on Saturday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Saturday,Number of drinks on Saturday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Saturday,Number of drinks on Saturday,,, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]",,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Saturday,Number of drinks on Saturday,,, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,copy,N/A,drinks/day,drinks/day,drinks/day,"[0,40]",drinks per day,Average daily consumption,Average daily alcohol consumption,"2007-08, 09-10, 2010, 2012 cycles are categorical",, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,NA::a,N/A,not applicable,not applicable,drinks/day,996,Not applicable,Average daily consumption,Average daily alcohol consumption,,, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,NA::b,N/A,missing,missing,drinks/day,"[997,999]",don't know (997); refusal (998); not stated (9),Average daily consumption,Average daily alcohol consumption,,, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",,cont,NA::b,N/A,missing,missing,drinks/day,else,else,Average daily consumption,Average daily alcohol consumption,,, -ALWDVLTR_der,ALWDVLTR_der_catN/A_Func::low_drink_long_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,Func::low_drink_long_fun,N/A,N/A,N/A,N/A,N/A,N/A,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,,, -ALWDVLTR_der,ALWDVLTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,1,2,Increased long term health risk,Increased long term health risk due to drinking,N/A,1,Increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7.",, -ALWDVLTR_der,ALWDVLTR_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,2,2,No increased long term health risk,No increased long term health risk due to drinking,N/A,2,No increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,,, -ALWDVLTR_der,ALWDVLTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,,, -ALWDVSTR_der,ALWDVSTR_der_catN/A_Func::low_drink_short_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,Func::low_drink_short_fun,N/A,N/A,N/A,N/A,N/A,N/A,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7.",, -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,1,2,Increased short term health risk,Increased short term health risk due to drinking,N/A,1,Increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,,, -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,2,2,No increased short term health risk,No increased short term health risk due to drinking,N/A,2,No increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,,, -ALWDVSTR_der,ALWDVSTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,copy,N/A,drinks/week,drinks/week,drinks/week,"[0,449]",drinks per week,Drinks last week,Weekly consumption of alcohol,shown as categorical variable in CCHS 2014 cycle,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,drinks/week,996,not applicable (996),Drinks last week,Weekly consumption of alcohol,,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::b,N/A,missing,missing,drinks/week,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks last week,Weekly consumption of alcohol,,, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::b,N/A,missing,missing,drinks/week,else,else,Drinks last week,Weekly consumption of alcohol,,, -binge_drinker,binge_drinker_catN/A_Func::binge_drinker_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,Func::binge_drinker_fun,N/A,N/A,N/A,N/A,N/A,N/A,Binge Drinker,Binge Drinker,"Derived from DHH_SEX, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7",, -binge_drinker,binge_drinker_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,1,2,Binge drinker,Binge drinker,N/A,N/A,Binge drinker,Binge Drinker,Binge Drinker,,, -binge_drinker,binge_drinker_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,2,2,Regular drinker,Regular drinker,N/A,N/A,Regular drinker,Binge Drinker,Binge Drinker,,, -binge_drinker,binge_drinker_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::a,2,Not applicable,Not applicable,N/A,N/A,Not applicable,Binge Drinker,Binge Drinker,,, -binge_drinker,binge_drinker_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Binge Drinker,Binge Drinker,,, -CCC_031,CCC_031_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,1,2,Asthma,Asthma,N/A,1,Yes (Do you have asthma?),Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,2,2,No asthma,No asthma,N/A,2,No (Do you have asthma?),Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma,Do you have asthma?,,, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",,cat,NA::b,2,missing,missing,N/A,else,else,Asthma,Do you have asthma?,,, -CCC_035,CCC_035_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,1,2,Asthma symptoms,Asthma symptoms,N/A,1,Yes,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,2,2,No asthma symptoms/attacks,No asthma symptoms/attacks,N/A,2,No,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable ,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_035,CCC_035_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",,cat,NA::b,2,else,else,N/A,else,else,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,,, -CCC_036,CCC_036_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,1,2,Yes asthma medication,Yes asthma medication,N/A,1,Yes,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,2,2,No asthma medication,No asthma medication,N/A,2,No,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_036,CCC_036_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",,cat,NA::b,2,else,else,N/A,else,else,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",,, -CCC_041,CCC_041_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,1,2,Fibromyalgia,Fibromyalgia,N/A,1,Yes (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/14,, -CCC_041,CCC_041_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,2,2,No Fibromyalgia,Fibromyalgia,N/A,2,No (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/15,, -CCC_041,CCC_041_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/16,, -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/17,, -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",,cat,NA::b,2,missing,missing,N/A,else,else,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/18,, -CCC_051,CCC_051_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,1,2,Arthritis/Rheumatism,Arthritis/Rheumatism,N/A,1,Yes (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,2,2,No Arthritis/Rheumatism,No Arthritis/Rheumatism,N/A,2,No (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",,cat,NA::b,2,missing,missing,N/A,else,else,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,,, -CCC_061,CCC_061_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,1,2,Back Problems,Back Problems,N/A,1,Yes (Do you have back problems?),Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,2,2,No Back Problems,No Back Problems,N/A,2,No (Do you have back problems?),Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Back problems,Do you have back problems?,,, -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",,cat,NA::b,2,missing,missing,N/A,else,else,Back problems,Do you have back problems?,,, -CCC_071,CCC_071_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,1,2,Hypertension,Hypertension,N/A,1,Yes (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,2,2,No Hypertension,No Hypertension,N/A,2,No (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension,Do you have high blood pressure?,,, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension,Do you have high blood pressure?,,, -CCC_072,CCC_072_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,1,2,Hypertension diagnosis,Hypertension diagnosis,N/A,1,Yes (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,2,2,No hypertension diagnosis,No hypertension diagnosis,N/A,2,No (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,,, -CCC_073,CCC_073_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,1,2,Hypertension medication,Hypertension medication,N/A,1,Yes (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,2,2,No hypertension medication,No hypertension medication,N/A,2,No (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,,, -CCC_073A,CCC_073A_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,1,2,Pregnant when diagnosed with high blood pressure,Pregnant when diagnosed with high blood pressure,N/A,1,Yes,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,2,2,Not pregnant when diagnosed with high blood pressure,Not pregnant when diagnosed with high blood pressure,N/A,2,No,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073A,CCC_073A_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],,cat,NA::b,2,else,else,N/A,else,else,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,,, -CCC_073B,CCC_073B_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,1,2,Yes high blood pressure other than during pregnancy,Yes high blood pressure other than during pregnancy,N/A,1,Yes,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,2,2,No high blood pressure other than during pregnancy,No high blood pressure other than during pregnancy,N/A,2,No,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,NA::b,2,else,else,N/A,else,else,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_073B,CCC_073B_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",,, -CCC_075,CCC_075_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,1,2,High blood cholesterol,High blood cholesterol,N/A,1,High blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,Respondent are 18+ years old to answer this question in CCHS 2015-2018,, -CCC_075,CCC_075_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,2,2,No high blood cholesterol,No high blood cholesterol,N/A,2,No high blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_075,CCC_075_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],,cat,NA::b,2,missing,missing,N/A,else,else,Blood cholesterol,Do you have high blood cholesterol or lipids?,,, -CCC_081,CCC_081_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,1,2,Migraine Headache,Migraine Headache,N/A,1,Yes (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?,"2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""",, -CCC_081,CCC_081_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,2,2,No Migraine Headache,No Migraine Headache,N/A,2,No (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?,,, -CCC_081,CCC_081_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Migraine Headache,Do you have migraine headaches?,,, -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Migraine Headache,Do you have migraine headaches?,,, -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",,cat,NA::b,2,missing,missing,N/A,else,else,Migraine Headache,Do you have migraine headaches?,,, -CCC_091,CCC_091_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,1,2,COPD/emphysema/bronchitis,COPD/emphysema/bronchitis,N/A,1,"Yes (Do you have COPD(eg bronchitis,emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,2,2,No COPD/emphysema/bronchitis,No COPD/emphysema/bronchitis,N/A,2,"No (Do you have COPD(eg bronchitis,emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",,, -CCC_101,CCC_101_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,1,2,Diabetes,Diabetes,N/A,1,Yes (Do you have diabetes?),Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,2,2,No Diabetes,No Diabetes,N/A,2,No (Do you have diabetes?),Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes,Do you have diabetes?,,, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Diabetes,Do you have diabetes?,,, -CCC_102_A,CCC_102_A_cat16_1,cat,cchs2003_p,[CCCCG102],,cat,1,16,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_2,cat,cchs2003_p,[CCCCG102],,cat,2,16,12 To 14 Years,12 To 14 Years,years,2,12 To 14 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_3,cat,cchs2003_p,[CCCCG102],,cat,3,16,15 To 19 Years,15 To 19 Years,years,3,15 To 19 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_4,cat,cchs2003_p,[CCCCG102],,cat,4,16,20 To 24 Years,20 To 24 Years,years,4,20 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_5,cat,cchs2003_p,[CCCCG102],,cat,5,16,25 To 29 Years,25 To 29 Years,years,5,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_6,cat,cchs2003_p,[CCCCG102],,cat,6,16,30 To 34 Years,30 To 34 Years,years,6,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_7,cat,cchs2003_p,[CCCCG102],,cat,7,16,35 To 39 Years,35 To 39 Years,years,7,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_8,cat,cchs2003_p,[CCCCG102],,cat,8,16,40 To 44 Years,40 To 44 Years,years,8,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_9,cat,cchs2003_p,[CCCCG102],,cat,9,16,45 To 49 Years,45 To 49 Years,years,9,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_10,cat,cchs2003_p,[CCCCG102],,cat,10,16,50 To 54 Years,50 To 54 Years,years,10,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_11,cat,cchs2003_p,[CCCCG102],,cat,11,16,55 To 59 Years,55 To 59 Years,years,11,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_12,cat,cchs2003_p,[CCCCG102],,cat,12,16,60 To 64 Years,60 To 64 Years,years,12,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_13,cat,cchs2003_p,[CCCCG102],,cat,13,16,65 To 69 Years,65 To 69 Years,years,13,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_14,cat,cchs2003_p,[CCCCG102],,cat,14,16,70 To 74 Years,70 To 74 Years,years,14,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_15,cat,cchs2003_p,[CCCCG102],,cat,15,16,75 To 79 Years,75 To 79 Years,years,15,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_16,cat,cchs2003_p,[CCCCG102],,cat,16,16,80 Years And Older,80 Years And Older,years,16,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::a,cat,cchs2003_p,[CCCCG102],,cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,cchs2003_p,[CCCCG102],,cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,cchs2003_p,[CCCCG102],,cat,NA::b,16,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,1,16,0 To 11 Years,0 To 11 Years,years,"[0,12)",0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,2,16,12 To 14 Years,12 To 14 Years,years,"[12,15)",12 To 14 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,3,16,15 To 19 Years,15 To 19 Years,years,"[15,20)",15 To 19 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,4,16,20 To 24 Years,20 To 24 Years,years,"[20,25)",20 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,5,16,25 To 29 Years,25 To 29 Years,years,"[25,30)",25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,6,16,30 To 34 Years,30 To 34 Years,years,"[30,35)",30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,7,16,35 To 39 Years,35 To 39 Years,years,"[35,40)",35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,8,16,40 To 44 Years,40 To 44 Years,years,"[40,45)",40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,9,16,45 To 49 Years,45 To 49 Years,years,"[45,50)",45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,10,16,50 To 54 Years,50 To 54 Years,years,"[50,55)",50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,11,16,55 To 59 Years,55 To 59 Years,years,"[55,60)",55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,12,16,60 To 64 Years,60 To 64 Years,years,"[60,65)",60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,13,16,65 To 69 Years,65 To 69 Years,years,"[65,70)",65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,14,16,70 To 74 Years,70 To 74 Years,years,"[70,75)",70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,15,16,75 To 79 Years,75 To 79 Years,years,"[75,80)",75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_16,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,16,16,80 Years And Older,80 Years And Older,years,"[80,96)",80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::a,16,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,16,missing,missing,years,"[997,999]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,16,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,1,15,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,2,15,12 To 17 Years,12 To 17 Years,years,2,12 To 17 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,3,15,18 To 24 Years,18 To 24 Years,years,3,18 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,4,15,25 To 29 Years,25 To 29 Years,years,4,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,5,15,30 To 34 Years,30 To 34 Years,years,5,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,6,15,35 To 39 Years,35 To 39 Years,years,6,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,7,15,40 To 44 Years,40 To 44 Years,years,7,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,8,15,45 To 49 Years,45 To 49 Years,years,8,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,9,15,50 To 54 Years,50 To 54 Years,years,9,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,10,15,55 To 59 Years,55 To 59 Years,years,10,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,11,15,60 To 64 Years,60 To 64 Years,years,11,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,12,15,65 To 69 Years,65 To 69 Years,years,12,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,13,15,70 To 74 Years,70 To 74 Years,years,13,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,14,15,75 To 79 Years,75 To 79 Years,years,14,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,15,15,80 Years And Older,80 Years And Older,years,15,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,15,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,1,15,0 To 11 Years,0 To 11 Years,years,"[0,12)",0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,2,15,12 To 17 Years,12 To 17 Years,years,"[12,18)",12 To 17 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,3,15,18 To 24 Years,18 To 24 Years,years,"[18,25)",18 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,4,15,25 To 29 Years,25 To 29 Years,years,"[25,30)",25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,5,15,30 To 34 Years,30 To 34 Years,years,"[30,35)",30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,6,15,35 To 39 Years,35 To 39 Years,years,"[35,40)",35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,7,15,40 To 44 Years,40 To 44 Years,years,"[40,45)",40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,8,15,45 To 49 Years,45 To 49 Years,years,"[45,50)",45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,9,15,50 To 54 Years,50 To 54 Years,years,"[50,55)",50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,10,15,55 To 59 Years,55 To 59 Years,years,"[55,60)",55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,11,15,60 To 64 Years,60 To 64 Years,years,"[60,65)",60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,12,15,65 To 69 Years,65 To 69 Years,years,"[65,70)",65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,13,15,70 To 74 Years,70 To 74 Years,years,"[70,75)",70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,14,15,75 To 79 Years,75 To 79 Years,years,"[75,80)",75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,15,15,80 Years And Older,80 Years And Older,years,"[80,96)",80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::a,15,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,15,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,15,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,13,N/A,Age,converted categorical age (12 to 14),years,2,12 To 14 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,17.5,N/A,Age,converted categorical age (15 to 19),years,3,15 To 19 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,82,N/A,Age,converted categorical age (80 plus),years,16,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],,cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,14.5,N/A,Age,converted categorical age (12 to 17),years,2,12 To 17 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,21,N/A,Age,converted categorical age (18 to 24),years,3,18 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,82,N/A,Age,converted categorical age (80 plus),years,15,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",,cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,copy,N/A,Age of diabetes diagnosis,Age of diabetes diagnosis,years,"[0,96]",Age of diabetes diagnosis,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],,cont,NA::b,N/A,else,else,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,,, -CCC_105,CCC_105_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,1,2,Yes diabetes and currently taking insulin,Yes diabetes and currently taking insulin,N/A,1,Yes,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,2,2,No diabetes and currently taking insulin,No diabetes and currently taking insulin,N/A,2,No,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_105,CCC_105_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,,, -CCC_106,CCC_106_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,1,2,Yes diabetes pills to control blood sugar,Yes diabetes pills to control blood sugar,N/A,1,Yes,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_106_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,2,2,No diabetes pills to control blood sugar,No diabetes pills to control blood sugar,N/A,2,No,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_105_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_105_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_106,CCC_105_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",,, -CCC_10A,CCC_10A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,1,2,Yes diabetes diagnosed when pregnant,Yes diabetes diagnosed when pregnant,N/A,1,Yes,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,2,2,No diabetes diagnosed when pregnant,No diabetes diagnosed when pregnant,N/A,2,No,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10A,CCC_10A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,,, -CCC_10B,CCC_10B_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,1,2,Yes diabetes diagnosed other than pregnant,Yes diabetes diagnosed other than pregnant,N/A,1,Yes,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,2,2,No diabetes diagnosed other than pregnant,No diabetes diagnosed other than pregnant,N/A,2,No,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10B,CCC_10B_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",,, -CCC_10C,CCC_10C_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,1,6,< 1 month,< 1 month,N/A,1,< 1 month,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,2,6,1 to <2 months,1 to <2 months,N/A,2,1 to <2 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,3,6,2 to <6 months,2 to <6 months,N/A,3,2 to <6 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,4,6,6 months - < 1 year,6 months - < 1 year,N/A,4,6 months - < 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,5,6,>= 1 year,>= 1 year,N/A,5,>= 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,6,6,never,never,N/A,6,never,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_10C,CCC_10C_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",,cat,NA::b,6,else,else,N/A,else,else,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",,, -CCC_111,CCC_111_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,1,2,Epilepsy,Epilepsy,N/A,1,Yes (Do you have epilepsy?),Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,2,2,No Epilepsy,No Epilepsy,N/A,2,No (Do you have epilepsy?),Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Epilepsy,Do you have epilepsy?,,, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Epilepsy,Do you have epilepsy?,,, -CCC_121,CCC_121_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,1,2,Heart Disease,Heart Disease,N/A,1,Yes (Do you have heart disease?),Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,2,2,No Heart Disease,No Heart Disease,N/A,2,No (Do you have heart disease?),Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Heart Disease,Do you have heart disease?,,, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Heart Disease,Do you have heart disease?,,, -CCC_131,CCC_131_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,1,2,Cancer,Cancer,N/A,1,Yes (Do you have cancer?),Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,2,2,No Cancer,No Cancer,N/A,2,No (Do you have cancer?),Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Active Cancer,Do you have cancer?,,, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",,cat,NA::b,2,missing,missing,N/A,else,else,Active Cancer,Do you have cancer?,,, -CCC_141,CCC_141_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,2,2,No stomach or intestinal ulcers,No stomach or intestinal ulcers,N/A,2,No,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,1,2,Yes stomach or intestinal ulcers,Yes stomach or intestinal ulcers,N/A,1,Yes,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_141,CCC_141_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",,cat,NA::b,2,else,else,N/A,else,else,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,,, -CCC_151,CCC_151_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,1,2,Stroke,Stroke,N/A,1,Yes (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,2,2,No Stroke,No Stroke,N/A,2,No (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stroke,Do you suffer from effects of stroke?,,, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Stroke,Do you suffer from effects of stroke?,,, -CCC_161,CCC_161_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,1,2,Yes urinary incontinence,Yes urinary incontinence,N/A,1,Yes,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,2,2,No urinary incontinence,No urinary incontinence,N/A,2,No,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_161,CCC_161_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",,cat,NA::b,2,else,else,N/A,else,else,Urinary incontinence,Do you suffer from urinary incontinence?,,, -CCC_171,CCC_171_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,1,2,Bowel disorder,Bowel disorder,N/A,1,Yes (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,2,2,No bowel disorder,No bowel disorder,N/A,2,No (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,cat,NA::b,2,missing,missing,N/A,else,else,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,,, -CCC_17A,CCC_17A_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,2,5,Ulcer colitis,Ulcer colitis,N/A,2,Ulcer colitis,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,3,5,Irritable bowel,Irritable bowel,N/A,3,Irritable bowel,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,4,5,Incontinence,Incontinence,N/A,4,Incontinence,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,5,5,Other,Other,N/A,5,Other,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,NA::b,5,else,else,N/A,else,else,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_17A,CCC_17A_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",,cat,1,5,Crohn's disease,Crohn's disease,N/A,1,Crohn's disease,Type of bowel disorder,What kind of bowel disease do you have?,,, -CCC_181,CCC_181_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,1,2,Yes alzheimer's disease or other dementia,Yes alzheimer's disease or other dementia,N/A,1,Yes,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,2,2,No alzheimer's disease or other dementia,No alzheimer's disease or other dementia,N/A,2,No,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_181,CCC_181_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],,cat,NA::b,2,else,else,N/A,else,else,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,,, -CCC_251,CCC_251_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,1,2,Chronic fatigue,Chronic fatigue,N/A,1,Yes (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,2,2,No chronic fatigue,No chronic fatigue,N/A,2,No (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",,cat,NA::b,2,missing,missing,N/A,else,else,Chronic fatigue,Do you have chronic fatigue syndrome?,,, -CCC_261,CCC_261_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,1,2,Yes chemical sensitivities,Yes chemical sensitivities,N/A,1,Yes,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,2,2,No chemical sensitivities,No chemical sensitivities,N/A,2,No,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_261,CCC_261_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",,cat,NA::b,2,else,else,N/A,else,else,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,,, -CCC_280,CCC_280_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,1,2,Has a mood disorder,Has a mood disorder,N/A,1,Yes (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,2,2,Does not have a mood disorder,Does not have a mood disorder,N/A,2,No (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Mood disorder,Do you have a mood disorder?,,, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Mood disorder,Do you have a mood disorder?,,, -CCC_290,CCC_290_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,1,2,Has an anxiety disorder,Has an anxiety disorder,N/A,1,Yes (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,2,2,Does not have an anxiety disorder,Does not have an anxiety disorder,N/A,2,No (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",,cat,NA::b,2,missing,missing,N/A,else,else,Anxiety Disorder,Do you have an anxiety disorder?,,, -CCC_31A,CCC_31A_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,1,2,Cancer diagnosis,Cancer diagnosis,N/A,1,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,2,2,No cancer diagnosis,No cancer diagnosis,N/A,2,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,NA::a,2,not applicable,not applicable,N/A,6,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",,cat,NA::b,2,missing,missing,N/A,else,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,,, -CCC_91A,CCC_91A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,1,2,Bronchitis,Chronic bronchitis,N/A,1,Yes (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,2,2,No bronchitis,No chronic bronchitis,N/A,2,No (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bronchitis,Do you have chronic bronchitis?,,, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,cat,NA::b,2,missing,missing,N/A,else,else,Bronchitis,Do you have chronic bronchitis?,,, -CCC_91E,CCC_91E_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,1,2,Emphysema,Emphysema,N/A,1,Yes (Do you have emphysema?),Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,2,2,No emphysema,No emphysema,N/A,2,No (Do you have emphysema?),Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Emphysema,Do you have emphysema?,,, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,cat,NA::b,2,missing,missing,N/A,else,else,Emphysema,Do you have emphysema?,,, -CCC_91F,CCC_91F_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,1,2,COPD,COPD,N/A,1,Yes (Do you have COPD?),COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,2,2,No COPD,No COPD,N/A,2,No (Do you have COPD?),COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD,Do you have COPD?,,, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,cat,NA::b,2,missing,missing,N/A,else,else,COPD,Do you have COPD?,,, -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun1,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F]",,N/A,Func::COPD_Emph_der_fun1,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables,, -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091]",,N/A,Func::COPD_Emph_der_fun2,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables,, -COPD_Emph_der,COPD_Emph_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091]",,N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -COPD_Emph_der,COPD_Emph_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",,N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -COPD_Emph_der,COPD_Emph_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",,N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -COPD_Emph_der,COPD_Emph_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",,N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,,, -DEPDVSEV,DEPDVSEV_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,1,6,No depression,No depression,N/A,0,No depression,Depression scale - severity of depression,Depression scale - severity of depression,This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015.,, -DEPDVSEV,DEPDVSEV_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,2,6,Minimal depression,Minimal depression,N/A,1,Minimal depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,3,6,Mild depression,Mild depression,N/A,2,Mild depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,4,6,Moderate depression,Moderate depression,N/A,3,Moderate depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,5,6,Moderately severe depression,Moderately severe depression,N/A,4,Moderately severe depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,6,6,Severe depression,Severe depression,N/A,5,Severe depression,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,NA::b,6,missing,missing,N/A,"[7,9]",not stated,Depression scale - severity of depression,Depression scale - severity of depression,,, -DEPDVSEV,DEPDVSEV_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],,cat,NA::b,6,missing,missing,N/A,else,else,Depression scale - severity of depression,Depression scale - severity of depression,,, -DHH_OWN,DHH_OWN_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,1,2,Yes,Yes,N/A,1,Yes,Home ownership,Dwelling - owned by a member of hsld,"Prior to 2009, CCHS restricted this variable to participants who were not living in an institution. In 2011, CCHS changed wording of responses to (1) owner and (2) renter",, -DHH_OWN,DHH_OWN_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,2,2,No,No,N/A,2,No,Home ownership,Dwelling - owned by a member of hsld,,, -DHH_OWN,DHH_OWN_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Home ownership,Dwelling - owned by a member of hsld,,, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Home ownership,Dwelling - owned by a member of hsld,,, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,cat,NA::b,2,missing,missing,N/A,else,else,Home ownership,Dwelling - owned by a member of hsld,,, -DHH_SEX,DHH_SEX_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,1,2,Male,Male,N/A,1,Male,Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,2,2,Female,Female,N/A,2,Female,Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sex,Sex,,, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Sex,Sex,,, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,1,5,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,2,5,age (20 to 39),age (20 to 39),years,"[4,7]",20 To 24 Years (4); 25 To 29 Years (5); 30 To 34 Years (6); 35 To 39 Years (7),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,3,5,age (40 to 59),age (40 to 59),years,"[8,11]",40 To 44 Years (8); 45 To 49 Years (9); 50 To 54 Years (10); 55 To 59 Years (11),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,4,5,age (60 to 79),age (60 to 79),years,"[12,15]",60 To 64 Years (12); 65 To 69 Years (13); 70 To 74 Years (14); 75 To 79 Years (15),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,5,5,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,1,5,age (12 to 19),age (12 to 19),years,"[12,20)",12 To 14 Years (1); 15 To 19 Years (2),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,2,5,age (20 to 39),age (20 to 39),years,"[20,",20 To 24 Years (3); 25 To 29 Years (4); 30 To 34 Years (5); 35 To 39 Years (6),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,3,5,age (40 to 59),age (40 to 59),years,"[7,10]",40 To 44 Years (7); 45 To 49 Years (8); 50 To 54 Years (9); 55 To 59 Years (10),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,4,5,age (60 to 79),age (60 to 79),years,"[11,14]",60 To 64 Years (11); 65 To 69 Years (12); 70 To 74 Years (13); 75 To 79 Years (14),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,5,5,age (80 plus),age (80 plus),years,15,80 Years or more (15),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,1,5,age (12 to 19),age (12 to 19),years,"[12,20)",12 to 19 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,2,5,age (20 to 39),age (20 to 39),years,"[20,40)",20 to 39 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,3,5,age (40 to 59),age (40 to 59),years,"[40,60)",40 to 59 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,4,5,age (60 to 79),age (60 to 79),years,"[60,80)",60 to 79 years,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cont,5,5,age (80 plus),age (80 plus),years,"[80, 102]",80 years or older,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat8_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::a,5,not applicable,not applicable,years,96,not applicable,Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,5,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (20-year age groups),,, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,5,else,else,years,else,else,Age,Age (20-year age groups),,, -DHHGAGE_A,DHHGAGE_A_cat15_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,1,15,age (12 to 14),age (12 to 14),years,1,12 to 14 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,2,15,age (15 to 19),age (15 to 19),years,2,15 to 19 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,3,15,age (20 to 24),age (20 to 24),years,3,20 To 24 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,4,15,age (25 to 29),age (25 to 29),years,4,25 To 29 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,5,15,age (30 to 34),age (30 to 34),years,5,30 To 34 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,6,15,age (35 to 39),age (35 to 39),years,6,35 To 39 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,7,15,age (40 to 44),age (40 to 44),years,7,40 To 44 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,8,15,age (45 to 49),age (45 to 49),years,8,45 To 49 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,9,15,age (50 to 54),age (50 to 54),years,9,50 To 54 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,10,15,age (55 to 59),age (55 to 59),years,10,55 To 59 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_11,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,11,15,age (60 to 64),age (60 to 64),years,11,60 To 64 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_12,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,12,15,age (65 to 69),age (65 to 69),years,12,65 To 69 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_13,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,13,15,age (70 to 74),age (70 to 74),years,13,70 To 74 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_14,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,14,15,age (75 to 79),age (75 to 79),years,14,75 To 79 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_15,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,15,15,age (80 plus),age (80 plus),years,15,80 Years or more,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,1,15,age (12 to 14),age (12 to 14),years,"[12,15)",12 to 14 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,2,15,age (15 to 19),age (15 to 19),years,"[15,20)",15 to 19 years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,3,15,age (20 to 24),age (20 to 24),years,"[20,25)",20 To 24 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,4,15,age (25 to 29),age (25 to 29),years,"[25,30)",25 To 29 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,5,15,age (30 to 34),age (30 to 34),years,"[30,35)",30 To 34 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,6,15,age (35 to 39),age (35 to 39),years,"[35,40)",35 To 39 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,7,15,age (40 to 44),age (40 to 44),years,"[40,45)",40 To 44 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,8,15,age (45 to 49),age (45 to 49),years,"[45,50)",45 To 49 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,9,15,age (50 to 54),age (50 to 54),years,"[50,55)",50 To 54 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,10,15,age (55 to 59),age (55 to 59),years,"[55,60)",55 To 59 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,11,15,age (60 to 64),age (60 to 64),years,"[60,65)",60 To 64 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,12,15,age (65 to 69),age (65 to 69),years,"[65,70)",65 To 69 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,13,15,age (70 to 74),age (70 to 74),years,"[70,75)",70 To 74 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,14,15,age (75 to 79),age (75 to 79),years,"[75,80)",75 To 79 Years,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,15,15,age (80 plus),age (80 plus),years,"[80,102]",80 Years or more,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",,cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age,Age,,, -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",,cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,"Not applicable, don't know, refusal, not stated (96-99) were options only in CCHS 2003, but had zero responses",, -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",,cat,NA::b,15,missing,missing,years,else,else,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,1,16,age (12 to 14),age (12 to 14),years,1,12 To 14 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,2,16,age (15 to 17),age (15 to 17),years,2,15 To 17 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,3,16,age (18 to 19),age (18 to 19),years,3,18 To 19 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,4,16,age (20 to 24),age (20 to 24),years,4,20 To 24 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,5,16,age (25 to 29),age (25 to 29),years,5,25 To 29 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,6,16,age (30 to 34),age (30 to 34),years,6,30 To 34 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,7,16,age (35 to 39),age (35 to 39),years,7,35 To 39 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,8,16,age (40 to 44),age (40 to 44),years,8,40 To 44 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,9,16,age (45 to 49),age (45 to 49),years,9,45 To 49 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,10,16,age (50 to 54),age (50 to 54),years,10,50 To 54 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,11,16,age (55 to 59),age (55 to 59),years,11,55 To 59 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,12,16,age (60 to 64),age (60 to 64),years,12,60 To 64 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,13,16,age (65 to 69),age (65 to 69),years,13,65 To 69 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,14,16,age (70 to 74),age (70 to 74),years,14,70 To 74 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,15,16,age (75 to 79),age (75 to 79),years,15,75 To 79 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_16,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,16,16,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,1,16,age (12 to 14),age (12 to 14),years,"[12,15)",12 To 14 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,2,16,age (15 to 17),age (15 to 17),years,"[15,18)",15 To 17 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,3,16,age (18 to 19),age (18 to 19),years,"[18,20)",18 To 19 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,4,16,age (20 to 24),age (20 to 24),years,"[20,25)",20 To 24 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,5,16,age (25 to 29),age (25 to 29),years,"[25,30)",25 To 29 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,6,16,age (30 to 34),age (30 to 34),years,"[30,35)",30 To 34 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,7,16,age (35 to 39),age (35 to 39),years,"[35,40)",35 To 39 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,8,16,age (40 to 44),age (40 to 44),years,"[40,45)",40 To 44 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,9,16,age (45 to 49),age (45 to 49),years,"[45,50)",45 To 49 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,10,16,age (50 to 54),age (50 to 54),years,"[50,55)",50 To 54 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,11,16,age (55 to 59),age (55 to 59),years,"[55,60)",55 To 59 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,12,16,age (60 to 64),age (60 to 64),years,"[60,65)",60 To 64 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,13,16,age (65 to 69),age (65 to 69),years,"[65,70)",65 To 69 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,14,16,age (70 to 74),age (70 to 74),years,"[70,75)",70 To 74 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,15,16,age (75 to 79),age (75 to 79),years,"[75,80)",75 To 79 Years,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_16,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,16,16,age (80 plus),age (80 plus),years,"[80,102]",80 Years or more,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,,, -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,16,missing,missing,years,else,else,Age,Age,,, -DHHGAGE_C,DHHGAGE_C_catN/A_Func::age_cat_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,Func::age_cat_fun,N/A,N/A,N/A,years,N/A,N/A,Age,Categorical age,This variable is derived from DHHGAGE_cont,, -DHHGAGE_C,DHHGAGE_C_cat16_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,1,16,age (12 to 14),age (12 to 14),years,N/A,12 To 14 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,2,16,age (15 to 17),age (15 to 17),years,N/A,15 To 17 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,3,16,age (18 to 19),age (18 to 19),years,N/A,18 To 19 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,4,16,age (20 to 24),age (20 to 24),years,N/A,20 To 24 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,5,16,age (25 to 29),age (25 to 29),years,N/A,25 To 29 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,6,16,age (30 to 34),age (30 to 34),years,N/A,30 To 34 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,7,16,age (35 to 39),age (35 to 39),years,N/A,35 To 39 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,8,16,age (40 to 44),age (40 to 44),years,N/A,40 To 44 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,9,16,age (45 to 49),age (45 to 49),years,N/A,45 To 49 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,10,16,age (50 to 54),age (50 to 54),years,N/A,50 To 54 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,11,16,age (55 to 59),age (55 to 59),years,N/A,55 To 59 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,12,16,age (60 to 64),age (60 to 64),years,N/A,60 To 64 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,13,16,age (65 to 69),age (65 to 69),years,N/A,65 To 69 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,14,16,age (70 to 74),age (70 to 74),years,N/A,70 To 74 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,15,16,age (75 to 79),age (75 to 79),years,N/A,75 To 79 Years,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,16,16,age (80 plus),age (80 plus),years,N/A,80 Years or more,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,NA::a,16,not applicable,not applicable,years,N/A,not applicable,Age,Categorical age,,, -DHHGAGE_C,DHHGAGE_C_cat16_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],,N/A,NA::b,16,missing,missing,years,N/A,missing,Age,Categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 to 14 years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,17,N/A,Age,converted categorical age (15 to 19),years,2,15 to 19 years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,22,N/A,Age,converted categorical age (20 to 24),years,3,20 To 24 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,85,N/A,Age,converted categorical age (80 plus),years,15,80 Years or more,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 To 14 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,16,N/A,Age,converted categorical age (15 to 17),years,2,15 To 17 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,18.5,N/A,Age,converted categorical age (18 to 19),years,3,18 To 19 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,85,N/A,Age,converted categorical age (80 plus),years,16,80 Years or more,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",,cont,copy,N/A,Age,continuous age,years,"[12,102]",Age,Age,Converted categorical age,Share files have continuous age.,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Converted categorical age,,, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cont,NA::b,N/A,missing,missing,years,else,else,Age,Converted categorical age,,, -DHH_AGE,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,copy,N/A,Age,continuous age,years,"[12,102]",Age,Age,Continuous age,Share files have continuous age.,, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Continuous age,,, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Continuous age,,, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,Age,Continuous age,,, -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,1,8,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,2,8,age (20 to 29),age (20 to 29),years,"[4,5]",20 to 24 Years (4); 25 To 29 Years (5),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,3,8,age (30 to 39),age (30 to 39),years,"[6,7]",30 To 34 Years (6); 35 To 39 Years (7),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,4,8,age (40 to 49),age (40 to 49),years,"[8,9]",40 To 44 Years (8); 45 To 49 Years (9),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,5,8,age (50 to 59),age (50 to 59),years,"[10,11]",50 To 54 Years (10); 55 To 59 Years (11),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,6,8,age (60 to 69),age (60 to 69),years,"[12,13]",60 To 64 Years (12); 65 To 69 Years (13),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,7,8,age (70 to 79),age (70 to 79),years,"[14,15]",70 To 74 Years (14); 75 To 79 Years (15),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",,cat,8,8,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,1,8,age (12 to 19),age (12 to 19),years,"[1,2]",12 To 14 Years (1); 15 To 19 Years (2),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,2,8,age (20 to 29),age (20 to 29),years,"[3,4]",20 to 24 Years (3); 25 To 29 Years (4),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,3,8,age (30 to 39),age (30 to 39),years,"[5,6]",30 To 34 Years (5); 35 To 39 Years (6),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,4,8,age (40 to 49),age (40 to 49),years,"[7,8]",40 To 44 Years (7); 45 To 49 Years (8),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,5,8,age (50 to 59),age (50 to 59),years,"[9,10]",50 To 54 Years (9); 55 To 59 Years (10),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,6,8,age (60 to 69),age (60 to 69),years,"[11,12]",60 To 64 Years (11); 65 To 69 Years (12),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,7,8,age (70 to 79),age (70 to 79),years,"[13,14]",70 To 74 Years (13); 75 To 79 Years (14),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",,cat,8,8,age (80 plus),age (80 plus),years,15,80 plus Years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,1,8,age (12 to 19),age (12 to 19),years,"[12,20)",12 to 19 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,2,8,age (20 to 29),age (20 to 29),years,"[20,30)",20 to 29 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,3,8,age (30 to 39),age (30 to 39),years,"[30,40)",30 to 39 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,4,8,age (40 to 49),age (40 to 49),years,"[40,50)",40 to 49 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,5,8,age (50 to 59),age (50 to 59),years,"[50,60)",50 to 59 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,6,8,age (60 to 69),age (60 to 69),years,"[60,70)",60 to 69 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,7,8,age (70 to 79),age (70 to 79),years,"[70,80)",70 to 79 years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],,cat,8,8,age (80 plus),age (80 plus),years,"[80,102]",80 plus years,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (10-year age groups),,, -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",,cat,NA::b,8,else,else,years,else,else,Age,Age (10-year age groups),,, -DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,5,5,5+ persons,5 or more persons,N/A,5,5 or more persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",,cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,5,5,5+ persons,5 or more persons,N/A,"[5,16]",5 or more persons,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household size,Household size,,, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],,cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size,,, -DHHGMS,DHHGMS_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,1,4,Married,Married,N/A,1,Married,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,3,Widow/separated/divorced,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,4,4,Single/Never mar.,Single,N/A,4,Single/never married,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,1,4,Married,Married,N/A,1,Married,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,"[3,5]",Widow (3)/separated (4)/divorced (5),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,4,4,Single/Never mar.,Single,N/A,6,Single/never married (6),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,Marital status - (G),,, -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,Marital status - (G),,, -DHH_MS,DHH_MS_cat4_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,1,4,Married,Married,N/A,1,Married,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_3,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,"[3,5]",Widow/Sep/Div,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_4,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,4,4,Single/Never mar.,Single/Never mar.,N/A,6,Single/Never mar.,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS,DHH_MS_cat4_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,2001:Marital status - (G); [Marital status],,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,1,4,Married/Common-law,Married/Common-law,N/A,"[1,2]",Married/Common-law,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,2,4,Sep/Div,Sep/Div,N/A,"[4,5]",Sep/Div,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_3,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,3,4,Widow,Widow,N/A,3,Widow,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_3,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,4,4,Single ,Single ,N/A,6,Single ,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -DHH_MS_A,DHH_MS_DemPoRT_cat3_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,, -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",,N/A,Func::diet_score_fun,N/A,N/A,N/A,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",,, -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",,N/A,NA::b,N/A,missing,missing,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",,, -diet_score_cat3,diet_score_cat3N/A_Func::diet_score_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,Func::diet_score_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,1,3,Poor diet,Poor diet,N/A,1,Poor diet,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,2,3,Fair diet,Fair diet,N/A,2,Fair diet,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,3,3,Adequate diet,Adequate diet,N/A,3,Adequate diet,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,NA::a,3,not applicable,not applicable,N/A,NA::a,not applicable,Categorical diet score,Categorical diet score,,, -diet_score_cat3,diet_score_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],,N/A,NA::b,3,missing,missing,N/A,NA::b,missing,Categorical diet score,Categorical diet score,,, -DIS_10G,DIS_10G_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",,cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",,, -DIS_10H,DIS_10H_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",,cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",,, -DPS_02,DPS_02_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,1,2,Yes,Yes,N/A,1,Yes,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,2,2,No,No,N/A,2,No,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],,cat,NA::b,2,missing,missing,N/A,else,else,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",,, -DPS_03,DPS_03_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,1,4,All day long,All day long,N/A,1,All day long,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,2,4,Most of the day,Most of the day,N/A,2,Most of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,3,4,About half of the day,About half of the day,N/A,3,About half of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,4,4,Less than half of a day,Less than half of a day,N/A,4,Less than half of a day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],,cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",,, -DPS_04,DPS_04_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,1,3,Every day,Every day,N/A,1,Every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,2,3,Almost every day,Almost every day,N/A,2,Almost every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],,cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",,, -DPS_05,DPS_05_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,2,2,No,No,N/A,2,No,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,,, -DPS_06,DPS_06_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,2,2,No,No,N/A,2,No,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,,, -DPS_07,DPS_07_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,1,4,Gained weight,Gained weight,N/A,1,Gained weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,2,4,Lost weight,Lost weight,N/A,2,Lost weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,3,4,Stayed about the same,Stayed about the same,N/A,3,Stayed about the same,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,4,4,Was on a diet,Was on a diet,N/A,4,Was on a diet,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],,cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,copy,N/A,Weight,Weight,N/A,"[1,90]",Weight,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (999.7); refusal (999.8); not stated (999.9),Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],,cont,NA::b,N/A,missing,missing,N/A,else,else,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,,, -DPS_08B,DPS_08B_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,1,2,Pounds,Pounds,N/A,1,Pounds,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,2,2,Kilograms,Kilograms,N/A,2,Kilograms,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,NA::b,2,missing,missing,N/A,9,not stated,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,,, -DPS_09,DPS_09_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,,, -DPS_10,DPS_10_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,1,3,Every night,Every night,N/A,1,Every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,2,3,Nearly every night,Nearly every night,N/A,2,Nearly every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],,cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",,, -DPS_11,DPS_11_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,,, -DPS_12,DPS_12_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,2,2,No,No,N/A,2,No,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",,, -DPS_13,DPS_13_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,2,2,No,No,N/A,2,No,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of week feel this way,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,NA::b,N/A,missing,missing,weeks,"[97,99]",don't know (97); refusal (98); not stated (99),Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],,cont,NA::b,N/A,missing,missing,weeks,else,else,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,,, -DPSDMT,DPSDMT_cat12_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,1,12,January,January,N/A,1,January,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,2,12,February,February,N/A,2,February,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,3,12,March,March,N/A,3,March,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,4,12,April,April,N/A,4,April,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,5,12,May,May,N/A,5,May,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,6,12,June,June,N/A,6,June,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,7,12,July,July,N/A,7,July,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,8,12,August,August,N/A,8,August,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,9,12,September,September,N/A,9,September,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,10,12,October,October,N/A,10,October,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,11,12,November,November,N/A,11,November,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,12,12,December,December,N/A,12,December,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,NA::a,12,not applicable,not applicable,N/A,96,not applicable,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,NA::b,12,missing,missing,N/A,99,not stated,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",,cat,NA::b,12,missing,missing,N/A,else,else,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),,, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,copy,N/A,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,N/A,"[0,0.90]",Predicted Probability,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,"Variable was documented as a categorical variable with categories 0, 0.05, 0.25, 0.50, 0.80, 0.90 across all cycles. See documentation for DPSDPP() for more details, or type ?DPSDPP in the console.",, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,NA::a,N/A,not applicable,not applicable,N/A,9.96,not applicable,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,,, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,NA::b,N/A,missing,missing,N/A,9.99,not stated,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,,, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,copy,N/A,Depression Scale - Short Form Score,Depression Scale - Short Form Score,N/A,"[0,8]",Short Form Score,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,NA::b,N/A,missing,missing,N/A,99,not stated,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Short Form Score,Depression Scale - Short Form Score,,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of weeks felt depressed,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,NA::b,N/A,missing,missing,weeks,99,not stated,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",,cont,NA::b,N/A,missing,missing,weeks,else,else,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),,, -EDUDR03,EDUDR03_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,"[3,4]",Post-sec. grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,3,Post-sec. grad,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories,,, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories,CCHS 2015-2018 does not have don't know (7) or refusal (8),, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],,cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories,,, -EDUDR04,EDUDR04_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,1,4,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 4 categories,Slight change in wording of categories from CCHS 2011 onwards,, -EDUDR04,EDUDR04_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,2,4,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,3,4,Some post-secondary education,Some post-secondary education,N/A,3,Other post-sec.,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,4,4,Post-secondary graduate,Post-secondary graduate,N/A,4,Post-sec. grad,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 4 categories,,, -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 4 categories,CCHS 2001 does not have don't know (7) or refusal (8); CCHS 2001 ICES has don't know (7) and refusal (8),, -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,else,else,Highest education,Highest level/education - 4 categories,,, -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",,N/A,Func::energy_exp_fun,N/A,N/A,N/A,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,Used for all cycles. Derived from various physical activity measure for 18+ and 12-17 years old.,, -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",,N/A,NA::b,N/A,missing,missing,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,copy,N/A,Daily energry expenditure,Daily energry expenditure,N/A,"[0,43.5]",Daily energy expenditure - (D),Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::a,N/A,not applicable,not applicable,N/A,99.6,Not applicable,Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,N/A,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Daily energy expenditure,Daily energy expenditure,,, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Daily energy expenditure,Daily energy expenditure,,, -FINF1,FINF1_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,1,2,Yes,Yes,N/A,1,Yes,Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,2,2,No,No,N/A,2,No,Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Some food insecurity in past 12 months,,, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Some food insecurity in past 12 months,,, -FLU_160,FLU_160_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,1,2,Yes,Yes,N/A,1,Yes,Ever had a flu shot,Have you ever had a flu shot?,"In 2007, question was reworded to ""Have you ever had a seasonal flu shot?"" In 2015-2018, question was reworded to ""Have you ever had a seasonal flu shot, excluding the H1N1 flu shot?""",, -FLU_160,FLU_160_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,2,2,No,No,N/A,2,No,Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_160,FLU_160_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",,cat,NA::b,2,missing,missing,N/A,else,else,Ever had a flu shot,Have you ever had a flu shot?,,, -FLU_162,FLU_162_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,1,3,<1 year ago,<1 year ago,N/A,1,<1 year ago,Last time had flu shot,When did you have your last flu shot?,"In 2015-2018, question was reworded to ""When did you have your last seasonal flu shot?""",, -FLU_162,FLU_162_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,2,3,1-<2 years ago,1-<2 years ago,N/A,2,1-<2 years ago,Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,3,3,2 years ago or more,2 years ago or more,N/A,3,2 years ago or more,Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Last time had flu shot,When did you have your last flu shot?,,, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",,cat,NA::b,3,missing,missing,N/A,else,else,Last time had flu shot,When did you have your last flu shot?,,, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,2,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,"This variable is derived from FINF1, FSCDHFS, FSCDHFS2 by dichotomizing food insecurity into 2 categories. See ?food_insecurity_der for more details",, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_1,cat,cchs2005_p,[FSCEDHFS],,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,3,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,cchs2005_p,[FSCEDHFS],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,,, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,,, -FSCDHFS,FSCDHFS_cat4_0,cat,cchs2005_p,[FSCEDHFS],,cat,0,4,Secure,Secure,N/A,0,Secure,Food security,Household food security status - (D),CCHS 2005 has different categories from other CCHS cycles so new variable created,, -FSCDHFS,FSCDHFS_cat4_1,cat,cchs2005_p,[FSCEDHFS],,cat,1,4,Without hunger,Without hunger,N/A,1,Without hunger,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_2,cat,cchs2005_p,[FSCEDHFS],,cat,2,4,W/mod. hunger,With moderate hunger,N/A,2,With moderate hunger,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_3,cat,cchs2005_p,[FSCEDHFS],,cat,3,4,W/severe hunger,With severe hunger,N/A,3,With severe hunger,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_NA::a,cat,cchs2005_p,[FSCEDHFS],,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food security,Household food security status - (D),,, -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],,cat,NA::b,4,missing,missing,N/A,else,else,Food security,Household food security status - (D),,, -FSCDHFS2,FSCDHFS2_cat3_0,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,0,3,Food secure,Food secure,N/A,0,Food secure,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,1,3,Mod. food insec.,Mod. food insec.,N/A,1,Moderate food insecurity,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,2,3,Sev. food insec.,Sev. food insec.,N/A,2,Severe food insecurity,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HC food security,Household food security status - (HC),,, -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",,cat,NA::b,3,missing,missing,N/A,else,else,HC food security,Household food security status - (HC),,, -FVC_1A,FVC_1A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,1,5,Per day,Per day,N/A,1,Per day,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,"How often do you usually drink fruit juices such as orange, grapefruit or tomato? (For example, once a day, three times a week, or twice a month) ",, -FVC_1A,FVC_1A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,2,5,Per week,Per week,N/A,2,Per week,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,3,5,Per month,Per month,N/A,3,Per month,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,4,5,Per year,Per year,N/A,4,Per year,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,5,5,Never,Never,N/A,5,Never,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1A,FVC_1A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],,cat,NA::b,5,missing,missing,N/A,else,else,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,copy,N/A,Drinks fruit juices daily,Drinks fruit juices daily,N/A,"[1,20]",Drinks fruit juices - no. of times/day ,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,Unit of measure of value in FVC_1A. ,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,,, -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,copy,N/A,Drinks fruit juices weekly,Drinks fruit juices weekly,N/A,"[1,50]",Drinks fruit juices - no. of times/week,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,Unit of measure of value in FVC_1A. ,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,,, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,copy,N/A,Drinks fruit juices monthly,Drinks fruit juices monthly,N/A,"[1,75]",Drinks fruit juices - no. of times/month,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,Unit of measure of value in FVC_1A. ,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,,, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,copy,N/A,Drinks fruit juices yearly,Drinks fruit juices yearly,N/A,"[1,250]",Drinks fruit juices - no. of times/year,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,Unit of measure of value in FVC_1A. ,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,,, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,,, -FVC_2A,FVC_2A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats fruit unit,Eats fruit - reporting unit ,"Not counting juice, how often do you usually eat fruit? ",, -FVC_2A,FVC_2A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,5,5,Never,Never,N/A,5,Never,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2A,FVC_2A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats fruit unit,Eats fruit - reporting unit ,,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,copy,N/A,Eats fruit daily,Eats fruit daily,N/A,"[1,20]",Eats fruit - no. of times/day ,Eats fruit daily,Eats fruit - no. of times/day ,Unit of measure of value in FVC_2A. ,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats fruit daily,Eats fruit - no. of times/day ,,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit daily,Eats fruit - no. of times/day ,,, -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit daily,Eats fruit - no. of times/day ,,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,copy,N/A,Eats fruit weekly,Eats fruit weekly,N/A,"[1,54]",Eats fruit - no. of times/week,Eats fruit weekly,Eats fruit - no. of times/week,Unit of measure of value in FVC_2A. ,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats fruit weekly,Eats fruit - no. of times/week,,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit weekly,Eats fruit - no. of times/week,,, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit weekly,Eats fruit - no. of times/week,,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,copy,N/A,Eats fruit monthly,Eats fruit monthly,N/A,"[1,105]",Eats fruit - no. of times/month,Eats fruit monthly,Eats fruit - no. of times/month,Unit of measure of value in FVC_2A. ,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats fruit monthly,Eats fruit - no. of times/month,,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit monthly,Eats fruit - no. of times/month,,, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit monthly,Eats fruit - no. of times/month,,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,copy,N/A,Eats fruit yearly,Eats fruit yearly,N/A,"[1,350]",Eats fruit - no. of times/year,Eats fruit yearly,Eats fruit - no. of times/year,Unit of measure of value in FVC_2A. ,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats fruit yearly,Eats fruit - no. of times/year,,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit yearly,Eats fruit - no. of times/year,,, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit yearly,Eats fruit - no. of times/year,,, -FVC_3A,FVC_3A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats green salad unit,Eats green salad - reporting unit ,How often do you (usually) eat green salad? ,, -FVC_3A,FVC_3A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,5,5,Never,Never,N/A,5,Never,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3A,FVC_3A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats green salad unit,Eats green salad - reporting unit ,,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,copy,N/A,Eats green salad daily,Eats green salad daily,N/A,"[1,14]",Eats green salad - no. of times/day ,Eats green salad daily,Eats green salad - no. of times/day ,Unit of measure of value in FVC_3A. ,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats green salad daily,Eats green salad - no. of times/day ,,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad daily,Eats green salad - no. of times/day ,,, -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad daily,Eats green salad - no. of times/day ,,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,copy,N/A,Eats green salad weekly,Eats green salad weekly,N/A,"[1,67]",Eats green salad - no. of times/week,Eats green salad weekly,Eats green salad - no. of times/week,Unit of measure of value in FVC_3A. ,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats green salad weekly,Eats green salad - no. of times/week,,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad weekly,Eats green salad - no. of times/week,,, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad weekly,Eats green salad - no. of times/week,,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,copy,N/A,Eats green salad monthly,Eats green salad monthly,N/A,"[1,47]",Eats green salad - no. of times/month,Eats green salad monthly,Eats green salad - no. of times/month,Unit of measure of value in FVC_3A. ,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats green salad monthly,Eats green salad - no. of times/month,,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad monthly,Eats green salad - no. of times/month,,, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad monthly,Eats green salad - no. of times/month,,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,copy,N/A,Eats green salad yearly,Eats green salad yearly,N/A,"[1,330]",Eats green salad - no. of times/year,Eats green salad yearly,Eats green salad - no. of times/year,Unit of measure of value in FVC_3A. ,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats green salad yearly,Eats green salad - no. of times/year,,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad yearly,Eats green salad - no. of times/year,,, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad yearly,Eats green salad - no. of times/year,,, -FVC_4A,FVC_4A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats potatoes unit,Eats potatoes - reporting unit ,"How often do you usually eat potatoes, not including french fries, fried potatoes, or potato chips? ",, -FVC_4A,FVC_4A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,5,5,Never,Never,N/A,5,Never,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4A,FVC_4A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats potatoes unit,Eats potatoes - reporting unit ,,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,copy,N/A,Eats potatoes daily,Eats potatoes daily,N/A,"[1,17]",Eats potatoes - no. of times/day ,Eats potatoes daily,Eats potatoes - no. of times/day ,Unit of measure of value in FVC_4A. ,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats potatoes daily,Eats potatoes - no. of times/day ,,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes daily,Eats potatoes - no. of times/day ,,, -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes daily,Eats potatoes - no. of times/day ,,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,copy,N/A,Eats potatoes weekly,Eats potatoes weekly,N/A,"[1,69]",Eats potatoes - no. of times/week,Eats potatoes weekly,Eats potatoes - no. of times/week,Unit of measure of value in FVC_4A. ,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats potatoes weekly,Eats potatoes - no. of times/week,,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes weekly,Eats potatoes - no. of times/week,,, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes weekly,Eats potatoes - no. of times/week,,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,copy,N/A,Eats potatoes monthly,Eats potatoes monthly,N/A,"[1,111]",Eats potatoes - no. of times/month,Eats potatoes monthly,Eats potatoes - no. of times/month,Unit of measure of value in FVC_4A. ,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats potatoes monthly,Eats potatoes - no. of times/month,,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes monthly,Eats potatoes - no. of times/month,,, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes monthly,Eats potatoes - no. of times/month,,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,copy,N/A,Eats potatoes yearly,Eats potatoes yearly,N/A,"[1,365]",Eats potatoes - no. of times/year,Eats potatoes yearly,Eats potatoes - no. of times/year,Unit of measure of value in FVC_4A. ,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats potatoes yearly,Eats potatoes - no. of times/year,,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes yearly,Eats potatoes - no. of times/year,,, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes yearly,Eats potatoes - no. of times/year,,, -FVC_5A,FVC_5A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats carrots unit,Eats carrots - reporting unit ,How often do you (usually) eat carrots? ,, -FVC_5A,FVC_5A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,5,5,Never,Never,N/A,5,Never,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5A,FVC_5A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats carrots unit,Eats carrots - reporting unit ,,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,copy,N/A,Eats carrots daily,Eats carrots daily,N/A,"[1,15]",Eats carrots - no. of times/day ,Eats carrots daily,Eats carrots - no. of times/day ,Unit of measure of value in FVC_5A. ,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats carrots daily,Eats carrots - no. of times/day ,,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots daily,Eats carrots - no. of times/day ,,, -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots daily,Eats carrots - no. of times/day ,,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,copy,N/A,Eats carrots weekly,Eats carrots weekly,N/A,"[1,75]",Eats carrots - no. of times/week ,Eats carrots weekly,Eats carrots - no. of times/week ,Unit of measure of value in FVC_5A. ,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats carrots weekly,Eats carrots - no. of times/week ,,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots weekly,Eats carrots - no. of times/week ,,, -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots weekly,Eats carrots - no. of times/week ,,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,copy,N/A,Eats carrots monthly,Eats carrots monthly,N/A,"[1,115]",Eats carrots - no. of times/month,Eats carrots monthly,Eats carrots - no. of times/month,Unit of measure of value in FVC_5A. ,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats carrots monthly,Eats carrots - no. of times/month,,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots monthly,Eats carrots - no. of times/month,,, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots monthly,Eats carrots - no. of times/month,,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,copy,N/A,Eats carrots yearly,Eats carrots yearly,N/A,"[1,270]",Eats carrots - no. of times/year,Eats carrots yearly,Eats carrots - no. of times/year,Unit of measure of value in FVC_5A. ,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats carrots yearly,Eats carrots - no. of times/year,,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots yearly,Eats carrots - no. of times/year,,, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots yearly,Eats carrots - no. of times/year,,, -FVC_6A,FVC_6A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,1,5,Per day,Per day,N/A,1,Per day,Eats other vegetables unit,Eats other vegetables - reporting unit ,"Not counting carrots, potatoes, or salad, how many servings of other vegetables do you usually eat? ",, -FVC_6A,FVC_6A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,2,5,Per week,Per week,N/A,2,Per week,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,3,5,Per month,Per month,N/A,3,Per month,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,4,5,Per year,Per year,N/A,4,Per year,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,5,5,Never,Never,N/A,5,Never,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6A,FVC_6A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],,cat,NA::b,5,missing,missing,N/A,else,else,Eats other vegetables unit,Eats other vegetables - reporting unit ,,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,copy,N/A,Eats other vegetables daily,Eats other vegetables daily,N/A,"[1,20]",Eats other vegetables - servings/day ,Eats other vegetables daily,Eats other vegetables - servings/day ,Unit of measure of value in FVC_6A. ,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats other vegetables daily,Eats other vegetables - servings/day ,,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables daily,Eats other vegetables - servings/day ,,, -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables daily,Eats other vegetables - servings/day ,,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,copy,N/A,Eats other vegetables weekly,Eats other vegetables weekly,N/A,"[1,83]",Eats other vegetables - servings/week,Eats other vegetables weekly,Eats other vegetables - servings/week,Unit of measure of value in FVC_6A. ,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats other vegetables weekly,Eats other vegetables - servings/week,,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables weekly,Eats other vegetables - servings/week,,, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables weekly,Eats other vegetables - servings/week,,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,NA::a,N/A,Eats other vegetables - servings/month,not applicable,N/A,"[1,120]",Eats other vegetables - servings/month,Eats other vegetables monthly,Eats other vegetables - servings/month,,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,copy,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats other vegetables monthly,Eats other vegetables - servings/month,Unit of measure of value in FVC_6A. ,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables monthly,Eats other vegetables - servings/month,,, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables monthly,Eats other vegetables - servings/month,,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,copy,N/A,Eats other vegetables yearly,Eats other vegetables yearly,N/A,"[1,300]",Eats other vegetables - servings/year,Eats other vegetables yearly,Eats other vegetables - servings/year,Unit of measure of value in FVC_6A. ,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats other vegetables yearly,Eats other vegetables - servings/year,,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables yearly,Eats other vegetables - servings/year,,, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],,cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables yearly,Eats other vegetables - servings/year,,, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,copy,N/A,Daily carrots,Daily carrots,N/A,"[0,30]",Daily consumption - carrots - (D),Carrot consumption,Daily consumption - carrots (D),2015 onward changed question to look at all orange-coloured vegetables,, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Carrot consumption,Daily consumption - carrots (D),,, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Carrot consumption,Daily consumption - carrots (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS",, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Carrot consumption,Daily consumption - carrots (D),,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,copy,N/A,Daily fruit,Daily fruit,N/A,"[0,73]",Daily consumption - fruit - (D),Fruit consumption,Daily consumption - fruit - (D),,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Fruit consumption,Daily consumption - fruit - (D),,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Fruit consumption,Daily consumption - fruit - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Fruit consumption,Daily consumption - fruit - (D),,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,copy,N/A,Daily juice,Daily juice,N/A,"[0,47]",Daily consumption - fruit juice - (D),Juice consumption,Daily consumption - fruit juice (D),,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Juice consumption,Daily consumption - fruit juice (D),,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Juice consumption,Daily consumption - fruit juice (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,else,else,Juice consumption,Daily consumption - fruit juice (D),,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,copy,N/A,Daily potatoes,Daily potatoes,N/A,"[0,30]",Daily consumption - potatoes - (D),Potato consumption,Daily consumption - potatoes (D),,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Potato consumption,Daily consumption - potatoes (D),,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Potato consumption,Daily consumption - potatoes (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,else,else,Potato consumption,Daily consumption - potatoes (D),,, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,copy,N/A,Daily salad,Daily salad,N/A,"[0,60]",Daily consumption - green salad - (D),Salad consumption,Daily consumption - green salad - (D),2015 onwards changed question to look at dark green vegetables,, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Salad consumption,Daily consumption - green salad - (D),,, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Salad consumption,Daily consumption - green salad - (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS",, -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Salad consumption,Daily consumption - green salad - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,copy,N/A,Daily total fruits and vegetables,Daily total fruits and vegetables,N/A,"[0,70]",Daily consumption - total fruits and veg. - (D),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,else,else,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,N/A,9999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Not applicable (9999.6) not included in 2015-2016 CCHS,, -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,N/A,9999.9,don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,copy,N/A,Daily other vegetables,Daily other vegetables,N/A,"[0,30]",Daily consumption other vegetables - (D),Other veg consumption,Daily consumption other vegetables - (D),,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Other veg consumption,Daily consumption other vegetables - (D),,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Other veg consumption,Daily consumption other vegetables - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Other veg consumption,Daily consumption other vegetables - (D),,, -GEN_01,GEN_01_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,3,5,Good,Good,N/A,3,Good,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived health,Self-perceived health,,, -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived health,Self-perceived health,,, -GEN_02A,GEN_02A_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,1,5,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,2,5,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,3,5,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,4,5,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,5,5,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cat,Satisfaction with life,,, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",,cat,NA::b,5,missing,missing,N/A,else,else,Life satisfaction_cat,Satisfaction with life,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,10,N/A,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cont,Satisfaction with life in general,"For CCHS cycles 2003-2007, GEN_02A2 was derived from GEN_02A where the values were rescaled to match GEN_02A2",, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,7,N/A,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,5,N/A,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,2,N/A,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,NA::a,N/A,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,NA::b,N/A,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",,cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,0,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,1,N/A,1,1,N/A,1,1,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,2,N/A,2,2,N/A,2,2,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,3,N/A,3,3,N/A,3,3,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,4,N/A,4,4,N/A,4,4,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,5,N/A,5,5,N/A,5,5,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,6,N/A,6,6,N/A,6,6,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,7,N/A,7,7,N/A,7,7,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,8,N/A,8,8,N/A,8,8,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,9,N/A,9,9,N/A,9,9,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,10,N/A,Very satisfied,Very satisfied,N/A,10,Very satisfied,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Life satisfaction_cont,Satisfaction with life in general,CCHS 2015-2018 does not have not applicable (96),, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",,cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general,,, -GEN_02B,GEN_02B_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,3,5,Good,Good,N/A,3,Good,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived mental health,Self-perceived mental health,,, -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived mental health,Self-perceived mental health,,, -GEN_07,GEN_07_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived life stress,Self-perceived life stress,CCHS 2015-2018 does not have not applicable (6),, -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived life stress,Self-perceived life stress,,, -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020,cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived life stress,Self-perceived life stress,,, -GEN_09,GEN_09_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived work stress,Self-perceived work stress,,, -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived work stress,Self-perceived work stress,,, -GEN_10,GEN_10_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,1,4,Very strong,Very strong,N/A,1,Very strong,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,2,4,Somewhat strong,Somewhat strong,N/A,2,Somewhat strong,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,3,4,Somewhat weak,Somewhat weak,N/A,3,Somewhat weak,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,4,4,Very weak,Very weak,N/A,4,Very weak,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sense of belonging,Sense of belonging in the community,,, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,else,else,Sense of belonging,Sense of belonging in the community,,, -GEODPMF,GEODPMF_cat97_1,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,10911,97,EASTERN REGIONAL INTEGRATED HA,EASTERN REGIONAL INTEGRATED HA,N/A,10911,EASTERN REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_2,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,10912,97,CENTRAL REGIONAL INTEGRATED HA,CENTRAL REGIONAL INTEGRATED HA,N/A,10912,CENTRAL REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_3,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,10913,97,WESTERN/LABRADOR-GRENFELL REGIONAL HA,WESTERN/LABRADOR-GRENFELL REGIONAL HA,N/A,10913,WESTERN/LABRADOR-GRENFELL REGIONAL HA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_4,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,11901,97,PRINCE EDWARD ISLAND,PRINCE EDWARD ISLAND,N/A,11901,PRINCE EDWARD ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_5,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12910,97,SOUTH SHORE-SOUTH WEST NOVA,SOUTH SHORE-SOUTH WEST NOVA,N/A,12910,SOUTH SHORE-SOUTH WEST NOVA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_6,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12923,97,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,N/A,12923,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_7,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12930,97,COLCHESTER EAST HANTS-CUMBERLAND,COLCHESTER EAST HANTS-CUMBERLAND,N/A,12930,COLCHESTER EAST HANTS-CUMBERLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_8,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12940,97,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,N/A,12940,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_9,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12958,97,CAPE BRETON DISTRICT HEALTH AUTHORITY,CAPE BRETON DISTRICT HEALTH AUTHORITY,N/A,12958,CAPE BRETON DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_10,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,12969,97,CAPITAL DISTRICT HEALTH AUTHORITY,CAPITAL DISTRICT HEALTH AUTHORITY,N/A,12969,CAPITAL DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_11,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13901,97,ZONE 1,ZONE 1,N/A,13901,ZONE 1,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_12,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13902,97,ZONE 2,ZONE 2,N/A,13902,ZONE 2,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_13,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13903,97,ZONE 3,ZONE 3,N/A,13903,ZONE 3,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_14,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13904,97,ZONES 4 AND 5,ZONES 4 AND 5,N/A,13904,ZONES 4 AND 5,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_15,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,13906,97,ZONES 6 AND 7,ZONES 6 AND 7,N/A,13906,ZONES 6 AND 7,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_16,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24901,97,REGION DU BAS-SAINT-LAURENT,REGION DU BAS-SAINT-LAURENT,N/A,24901,REGION DU BAS-SAINT-LAURENT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_17,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24902,97,REGION DU SAGUENAY - LAC-SAINT-JEAN,REGION DU SAGUENAY - LAC-SAINT-JEAN,N/A,24902,REGION DU SAGUENAY - LAC-SAINT-JEAN,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_18,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24903,97,REGION DE LA CAPITALE-NATIONALE,REGION DE LA CAPITALE-NATIONALE,N/A,24903,REGION DE LA CAPITALE-NATIONALE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_19,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24904,97,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,N/A,24904,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_20,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24905,97,REGION DE L'ESTRIE,REGION DE L'ESTRIE,N/A,24905,REGION DE L'ESTRIE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_21,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24906,97,REGION DE MONTREAL,REGION DE MONTREAL,N/A,24906,REGION DE MONTREAL,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_22,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24907,97,REGION DE L'OUTAOUAIS,REGION DE L'OUTAOUAIS,N/A,24907,REGION DE L'OUTAOUAIS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_23,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24908,97,REGION DE L'ABITIBI-TEMISCAMINGUE,REGION DE L'ABITIBI-TEMISCAMINGUE,N/A,24908,REGION DE L'ABITIBI-TEMISCAMINGUE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_24,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24909,97,REGION DE LA COTE-NORD,REGION DE LA COTE-NORD,N/A,24909,REGION DE LA COTE-NORD,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_25,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24911,97,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,N/A,24911,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_26,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24912,97,REGION DE LA CHAUDIERE-APPALACHES,REGION DE LA CHAUDIERE-APPALACHES,N/A,24912,REGION DE LA CHAUDIERE-APPALACHES,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_27,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24913,97,REGION DE LAVAL,REGION DE LAVAL,N/A,24913,REGION DE LAVAL,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_28,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24914,97,REGION DE LANAUDIERE,REGION DE LANAUDIERE,N/A,24914,REGION DE LANAUDIERE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_29,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24915,97,REGION DES LAURENTIDES,REGION DES LAURENTIDES,N/A,24915,REGION DES LAURENTIDES,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_30,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,24916,97,REGION DE LA MONTEREGIE,REGION DE LA MONTEREGIE,N/A,24916,REGION DE LA MONTEREGIE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_31,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35926,97,DISTRICT OF ALGOMA HEALTH UNIT,DISTRICT OF ALGOMA HEALTH UNIT,N/A,35926,DISTRICT OF ALGOMA HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_32,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35927,97,BRANT COUNTY HEALTH UNIT,BRANT COUNTY HEALTH UNIT,N/A,35927,BRANT COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_33,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35930,97,DURHAM REGIONAL HEALTH UNIT,DURHAM REGIONAL HEALTH UNIT,N/A,35930,DURHAM REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_34,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35931,97,ELGIN-ST THOMAS HEALTH UNIT,ELGIN-ST THOMAS HEALTH UNIT,N/A,35931,ELGIN-ST THOMAS HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_35,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35933,97,GREY BRUCE HEALTH UNIT,GREY BRUCE HEALTH UNIT,N/A,35933,GREY BRUCE HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_36,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35934,97,HALDIMAND-NORFOLK HEALTH UNIT,HALDIMAND-NORFOLK HEALTH UNIT,N/A,35934,HALDIMAND-NORFOLK HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_37,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35935,97,HALIBURTON-KAWARTHA-PINE RIDGE DHU,HALIBURTON-KAWARTHA-PINE RIDGE DHU,N/A,35935,HALIBURTON-KAWARTHA-PINE RIDGE DHU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_38,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35936,97,HALTON REGIONAL HEALTH UNIT,HALTON REGIONAL HEALTH UNIT,N/A,35936,HALTON REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_39,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35937,97,CITY OF HAMILTON HEALTH UNIT,CITY OF HAMILTON HEALTH UNIT,N/A,35937,CITY OF HAMILTON HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_40,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35938,97,HASTINGS AND PRINCE EDWARD COUNTIES HU,HASTINGS AND PRINCE EDWARD COUNTIES HU,N/A,35938,HASTINGS AND PRINCE EDWARD COUNTIES HU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_41,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35939,97,HURON AND PERTH HEALTH UNITS,HURON AND PERTH HEALTH UNITS,N/A,35939,HURON AND PERTH HEALTH UNITS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_42,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35940,97,CHATHAM-KENT HEALTH UNIT,CHATHAM-KENT HEALTH UNIT,N/A,35940,CHATHAM-KENT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_43,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35941,97,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,N/A,35941,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_44,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35942,97,LAMBTON HEALTH UNIT,LAMBTON HEALTH UNIT,N/A,35942,LAMBTON HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_45,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35943,97,LEEDS-GRENVILLE-LANARK DHU,LEEDS-GRENVILLE-LANARK DHU,N/A,35943,LEEDS-GRENVILLE-LANARK DHU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_46,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35944,97,MIDDLESEX-LONDON HEALTH UNIT,MIDDLESEX-LONDON HEALTH UNIT,N/A,35944,MIDDLESEX-LONDON HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_47,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35946,97,NIAGARA REGIONAL AREA HEALTH UNIT,NIAGARA REGIONAL AREA HEALTH UNIT,N/A,35946,NIAGARA REGIONAL AREA HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_48,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35947,97,NORTH BAY AND TIMISKAMING HEALTH UNITS,NORTH BAY AND TIMISKAMING HEALTH UNITS,N/A,35947,NORTH BAY AND TIMISKAMING HEALTH UNITS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_49,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35949,97,NORTHWESTERN HEALTH UNIT,NORTHWESTERN HEALTH UNIT,N/A,35949,NORTHWESTERN HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_50,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35951,97,CITY OF OTTAWA HEALTH UNIT,CITY OF OTTAWA HEALTH UNIT,N/A,35951,CITY OF OTTAWA HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_51,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35952,97,OXFORD COUNTY HEALTH UNIT,OXFORD COUNTY HEALTH UNIT,N/A,35952,OXFORD COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_52,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35953,97,PEEL REGIONAL HEALTH UNIT,PEEL REGIONAL HEALTH UNIT,N/A,35953,PEEL REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_53,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35955,97,PETERBOROUGH COUNTY-CITY HEALTH UNIT,PETERBOROUGH COUNTY-CITY HEALTH UNIT,N/A,35955,PETERBOROUGH COUNTY-CITY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_54,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35956,97,PORCUPINE HEALTH UNIT,PORCUPINE HEALTH UNIT,N/A,35956,PORCUPINE HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_55,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35957,97,RENFREW COUNTY AND DISTRICT HEALTH UNIT,RENFREW COUNTY AND DISTRICT HEALTH UNIT,N/A,35957,RENFREW COUNTY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_56,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35958,97,EASTERN ONTARIO HEALTH UNIT,EASTERN ONTARIO HEALTH UNIT,N/A,35958,EASTERN ONTARIO HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_57,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35960,97,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,N/A,35960,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_58,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35961,97,SUDBURY AND DISTRICT HEALTH UNIT,SUDBURY AND DISTRICT HEALTH UNIT,N/A,35961,SUDBURY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_59,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35962,97,THUNDER BAY DISTRICT HEALTH UNIT,THUNDER BAY DISTRICT HEALTH UNIT,N/A,35962,THUNDER BAY DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_60,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35965,97,WATERLOO HEALTH UNIT,WATERLOO HEALTH UNIT,N/A,35965,WATERLOO HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_61,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35966,97,WELLINGTON-DUFFERIN-GUELPH HU,WELLINGTON-DUFFERIN-GUELPH HU,N/A,35966,WELLINGTON-DUFFERIN-GUELPH HU,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_62,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35968,97,WINDSOR-ESSEX COUNTY HEALTH UNIT,WINDSOR-ESSEX COUNTY HEALTH UNIT,N/A,35968,WINDSOR-ESSEX COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_63,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35970,97,YORK REGIONAL HEALTH UNIT,YORK REGIONAL HEALTH UNIT,N/A,35970,YORK REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_64,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,35995,97,CITY OF TORONTO HEALTH UNIT,CITY OF TORONTO HEALTH UNIT,N/A,35995,CITY OF TORONTO HEALTH UNIT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_65,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46901,97,WINNIPEG RHA,WINNIPEG RHA,N/A,46901,WINNIPEG RHA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_66,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46902,97,PRAIRIE M. HEALTH,PRAIRIE M. HEALTH,N/A,46902,PRAIRIE M. HEALTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_67,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46903,97,INTERLAKE-EASTERN RHA,INTERLAKE-EASTERN RHA,N/A,46903,INTERLAKE-EASTERN RHA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_68,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46904,97,NORTHEN RHA,NORTHEN RHA,N/A,46904,NORTHEN RHA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_69,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,46905,97,SOUTHEN HEALTH,SOUTHEN HEALTH,N/A,46905,SOUTHEN HEALTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_70,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47901,97,SUN COUNTRY/FIVE HILLS/CYPRESS,SUN COUNTRY/FIVE HILLS/CYPRESS,N/A,47901,SUN COUNTRY/FIVE HILLS/CYPRESS,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_71,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47904,97,REGINA QU'APPELLE,REGINA QU'APPELLE,N/A,47904,REGINA QU'APPELLE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_72,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47905,97,SUNRISE/KELSEY TRAIL,SUNRISE/KELSEY TRAIL,N/A,47905,SUNRISE/KELSEY TRAIL,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_73,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47906,97,SASKATOON,SASKATOON,N/A,47906,SASKATOON,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_74,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47907,97,HEARTLAND/PRAIRIE NORTH,HEARTLAND/PRAIRIE NORTH,N/A,47907,HEARTLAND/PRAIRIE NORTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_75,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,47909,97,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,N/A,47909,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_76,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48931,97,SOUTH ZONE,SOUTH ZONE,N/A,48931,SOUTH ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_77,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48932,97,CALGARY ZONE,CALGARY ZONE,N/A,48932,CALGARY ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_78,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48933,97,CENTRAL ZONE,CENTRAL ZONE,N/A,48933,CENTRAL ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_79,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48934,97,EDMONTON ZONE,EDMONTON ZONE,N/A,48934,EDMONTON ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_80,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,48935,97,NORTH ZONE,NORTH ZONE,N/A,48935,NORTH ZONE,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_81,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59911,97,EAST KOOTENAY,EAST KOOTENAY,N/A,59911,EAST KOOTENAY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_82,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59912,97,KOOTENAY-BOUNDARY,KOOTENAY-BOUNDARY,N/A,59912,KOOTENAY-BOUNDARY,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_83,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59913,97,OKANAGAN,OKANAGAN,N/A,59913,OKANAGAN,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_84,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59914,97,THOMPSON/CARIBOO,THOMPSON/CARIBOO,N/A,59914,THOMPSON/CARIBOO,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_85,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59921,97,FRASER EAST,FRASER EAST,N/A,59921,FRASER EAST,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_86,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59922,97,FRASER NORTH,FRASER NORTH,N/A,59922,FRASER NORTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_87,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59923,97,FRASER SOUTH,FRASER SOUTH,N/A,59923,FRASER SOUTH,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_88,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59931,97,RICHMOND,RICHMOND,N/A,59931,RICHMOND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_89,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59932,97,VANCOUVER,VANCOUVER,N/A,59932,VANCOUVER,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_90,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59933,97,NORTH SHORE/COAST GARIBALDI,NORTH SHORE/COAST GARIBALDI,N/A,59933,NORTH SHORE/COAST GARIBALDI,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_91,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59941,97,SOUTH VANCOUVER ISLAND,SOUTH VANCOUVER ISLAND,N/A,59941,SOUTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_92,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59942,97,CENTRAL VANCOUVER ISLAND,CENTRAL VANCOUVER ISLAND,N/A,59942,CENTRAL VANCOUVER ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_93,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59943,97,NORTH VANCOUVER ISLAND,NORTH VANCOUVER ISLAND,N/A,59943,NORTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_94,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59951,97,NORTHWEST,NORTHWEST,N/A,59951,NORTHWEST,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_95,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59952,97,NORTHERN INTERIOR,NORTHERN INTERIOR,N/A,59952,NORTHERN INTERIOR,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_96,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,59953,97,NORTHEAST,NORTHEAST,N/A,59953,NORTHEAST,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_97,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,60901,97,YUKON/NORTHWEST TERRITORIES/NUNAVUT,YUKON/NORTHWEST TERRITORIES/NUNAVUT,N/A,60901,YUKON/NORTHWEST TERRITORIES/NUNAVUT,Health Region - (G),Health Region - (G),,, -GEODPMF,GEODPMF_cat97_NA::b,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],,cat,NA::b,97,missing,missing,N/A,else,else,Health Region - (G),Health Region - (G),,, -GEOGPRV,GEOGPRV_cat11_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,10,11,NL,Nfld. & Labrador,N/A,10,Nfld. & Labrador,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,11,11,PEI,Prince Edward Island,N/A,11,Prince Edward Island,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,12,11,NS,Nova Scotia,N/A,12,Nova Scotia,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,13,11,NB,New Brunswick,N/A,13,New Brunswick,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,24,11,QC,Quebec,N/A,24,Quebec,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,35,11,ON,Ontario,N/A,35,Ontario,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,46,11,MB,Manitoba,N/A,46,Manitoba,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,47,11,SK,Saskatchewan,N/A,47,Saskatchewan,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,48,11,AB,Alberta,N/A,48,Alberta,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,59,11,BC,British Columbia,N/A,59,British Columbia,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,60,11,YT/NT/NU,Yukon/NWT/Nunavut,N/A,"[60,62]",Yukon/NWT/Nunavut,Province,Province of residence of respondent (G),"CCHS2015_2016 and CCHS2017_2018 divides category into Yukon (60), NWT (61), and Nunavut (62)",, -GEOGPRV,GEOGPRV_cat11_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,NA::b,11,missing,missing,N/A,"[97,99]","don't know (97), refusal (98), not stated (99)",Province,Province of residence of respondent (G),,, -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,cat,NA::b,11,missing,missing,N/A,else,else,Province,Province of residence of respondent (G),,, -HCU_1AA,HCU_1AA_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,1,2,Yes,Yes (Has regular medical doctor),N/A,1,Yes (Has regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?,"In 2015-2018, question was reworded to ""Do you have a regular health care provider?""",, -HCU_1AA,HCU_1AA_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,2,2,No,No (Does not have regular medical doctor),N/A,2,No (Does not have regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?,,, -HCU_1AA,HCU_1AA_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Has regular medical doctor,Do you have a regular medical doctor?,,, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Has regular medical doctor,Do you have a regular medical doctor?,,, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",,cat,NA::b,2,missing,missing,N/A,else,else,Has regular medical doctor,Do you have a regular medical doctor?,,, -HUIDCOG,HUIDCOG_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,1,6,No cognit prob,No cognition problems,N/A,1,No cognit prob,HUI Cognition,Cognition prob. - function code - (D),CCHS 2007 onwards uses cognition levels which coincide with HUI Mark 3,, -HUIDCOG,HUIDCOG_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,2,6,Little difficult,Little difficulty,N/A,2,Little difficulty,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,3,6,Some forgetful,Some forgetful,N/A,3,Some forgetful,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,4,6,Forget/dif think,Forgetful/difficulty thinking,N/A,4,Forget/dif think,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,5,6,Very forgetful,Very forgetful,N/A,5,Very forgetful,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,6,6,Can't remember,Can't remember,N/A,6,Can't remember,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Cognition,Cognition prob. - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (97) or refusal (98)",, -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",,cat,NA::b,6,missing,missing,N/A,else,else,HUI Cognition,Cognition prob. - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,1,5,Happy in life,Happy in life,N/A,1,Happy in life,HUI Emotion,Emotional problems - function code - (D),CCHS 2007 onwards uses emotional levels which coincide with HUI Mark 3,, -HUIDEMO,HUIDEMO_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,2,5,Somewhat happy,Somewhat happy,N/A,2,Somewhat happy,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,3,5,Somewhat unhappy,Somewhat unhappy,N/A,3,Somewhat unhappy,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,4,5,Very unhappy,Very unhappy,N/A,4,Very unhappy,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,5,5,Life not worth,Life not worth,N/A,5,Life not worth,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Emotion,Emotional problems - function code - (D),,, -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Emotion,Emotional problems - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (7) or refusal (8)",, -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Emotion,Emotional problems - function code - (D),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,copy,N/A,HUI score,Health Utility Index (HUI3) - (D),N/A,"[-0.359,1]",Health Utility Index (HUI3) - (D),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,N/A,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,N/A,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,N/A,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,1,10,Decile 1,Decile 1,N/A,"[-0.359,-0.2231)",Decile 1,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,2,10,Decile 2,Decile 2,N/A,"[-0.2231,-0.0872)",Decile 2,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,3,10,Decile 3,Decile 3,N/A,"[-0.0872,0.0487)",Decile 3,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,4,10,Decile 4,Decile 4,N/A,"[0.0487,0.1846)",Decile 4,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,5,10,Decile 5,Decile 5,N/A,"[0.1846,0.3205)",Decile 5,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,6,10,Decile 6,Decile 6,N/A,"[0.3205,0.4564)",Decile 6,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,7,10,Decile 7,Decile 7,N/A,"[0.4564,0.5923)",Decile 7,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,8,10,Decile 8,Decile 8,N/A,"[0.5923,0.7282)",Decile 8,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,9,10,Decile 9,Decile 9,N/A,"[0.7282,0.8641)",Decile 9,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,10,10,Decile 10,Decile 10,N/A,"[0.8641,1]",Decile 10,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,10,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,10,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,10,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,1,20,Group 1,Group 1,N/A,"[-0.359,-0.29105)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,2,20,Group 2,Group 2,N/A,"[-0.29105,-0.2231)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,3,20,Group 3,Group 3,N/A,"[-0.2231,-0.15515)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,4,20,Group 4,Group 4,N/A,"[-0.15515,-0.0872)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,5,20,Group 5,Group 5,N/A,"[-0.0872,-0.01925)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,6,20,Group 6,Group 6,N/A,"[-0.01925,0.0487)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,7,20,Group 7,Group 7,N/A,"[0.0487,0.11665)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,8,20,Group 8,Group 8,N/A,"[0.11665,0.1846)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,9,20,Group 9,Group 9,N/A,"[0.1846,0.25255)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,10,20,Group 10,Group 10,N/A,"[0.25255,0.3205)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,11,20,Group 11,Group 11,N/A,"[0.3205,0.38845)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,12,20,Group 12,Group 12,N/A,"[0.38845,0.4564)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,13,20,Group 13,Group 13,N/A,"[0.4564,0.52435)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,14,20,Group 14,Group 14,N/A,"[0.52435,0.5923)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,15,20,Group 15,Group 15,N/A,"[0.5923,0.66025)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,16,20,Group 16,Group 16,N/A,"[0.66025,0.7282)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,17,20,Group 17,Group 17,N/A,"[0.7282,0.79615)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,18,20,Group 18,Group 18,N/A,"[0.79615,0.8641)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,19,20,Group 19,Group 19,N/A,"[0.8641,0.93205)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,20,20,Group 20,Group 20,N/A,"[0.93205,1]",Group 20,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,20,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,20,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,20,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,1,50,Group 1,Group 1,N/A,"[-0.359,-0.33182)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,2,50,Group 2,Group 2,N/A,"[-0.33182,-0.30464)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,3,50,Group 3,Group 3,N/A,"[-0.30464,-0.27746)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,4,50,Group 4,Group 4,N/A,"[-0.27746,-0.25028)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,5,50,Group 5,Group 5,N/A,"[-0.25028,-0.2231)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,6,50,Group 6,Group 6,N/A,"[-0.2231,-0.19592)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,7,50,Group 7,Group 7,N/A,"[-0.19592,-0.16874)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,8,50,Group 8,Group 8,N/A,"[-0.16874,-0.14156)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,9,50,Group 9,Group 9,N/A,"[-0.14156,-0.11438)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,10,50,Group 10,Group 10,N/A,"[-0.11438,-0.0872)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,11,50,Group 11,Group 11,N/A,"[-0.0872,-0.06002)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,12,50,Group 12,Group 12,N/A,"[-0.06002,-0.03284)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,13,50,Group 13,Group 13,N/A,"[-0.03284,-0.00566000000000004)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,14,50,Group 14,Group 14,N/A,"[-0.00566000000000004,0.02152)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,15,50,Group 15,Group 15,N/A,"[0.02152,0.0487)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,16,50,Group 16,Group 16,N/A,"[0.0487,0.07588)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,17,50,Group 17,Group 17,N/A,"[0.07588,0.10306)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,18,50,Group 18,Group 18,N/A,"[0.10306,0.13024)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,19,50,Group 19,Group 19,N/A,"[0.13024,0.15742)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,20,50,Group 20,Group 20,N/A,"[0.15742,0.1846)",Group 20,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_21,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,21,50,Group 21,Group 21,N/A,"[0.1846,0.21178)",Group 21,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_22,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,22,50,Group 22,Group 22,N/A,"[0.21178,0.23896)",Group 22,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_23,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,23,50,Group 23,Group 23,N/A,"[0.23896,0.26614)",Group 23,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_24,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,24,50,Group 24,Group 24,N/A,"[0.26614,0.29332)",Group 24,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_25,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,25,50,Group 25,Group 25,N/A,"[0.29332,0.3205)",Group 25,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_26,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,26,50,Group 26,Group 26,N/A,"[0.3205,0.34768)",Group 26,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_27,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,27,50,Group 27,Group 27,N/A,"[0.34768,0.37486)",Group 27,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_28,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,28,50,Group 28,Group 28,N/A,"[0.37486,0.40204)",Group 28,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_29,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,29,50,Group 29,Group 29,N/A,"[0.40204,0.42922)",Group 29,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_30,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,30,50,Group 30,Group 30,N/A,"[0.42922,0.4564)",Group 30,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_31,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,31,50,Group 31,Group 31,N/A,"[0.4564,0.48358)",Group 31,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_32,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,32,50,Group 32,Group 32,N/A,"[0.48358,0.51076)",Group 32,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_33,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,33,50,Group 33,Group 33,N/A,"[0.51076,0.53794)",Group 33,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_34,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,34,50,Group 34,Group 34,N/A,"[0.53794,0.56512)",Group 34,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_35,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,35,50,Group 35,Group 35,N/A,"[0.56512,0.5923)",Group 35,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_36,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,36,50,Group 36,Group 36,N/A,"[0.5923,0.61948)",Group 36,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_37,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,37,50,Group 37,Group 37,N/A,"[0.61948,0.64666)",Group 37,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_38,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,38,50,Group 38,Group 38,N/A,"[0.64666,0.67384)",Group 38,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_39,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,39,50,Group 39,Group 39,N/A,"[0.67384,0.70102)",Group 39,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_40,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,40,50,Group 40,Group 40,N/A,"[0.70102,0.7282)",Group 40,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_41,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,41,50,Group 41,Group 41,N/A,"[0.7282,0.75538)",Group 41,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_42,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,42,50,Group 42,Group 42,N/A,"[0.75538,0.78256)",Group 42,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_43,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,43,50,Group 43,Group 43,N/A,"[0.78256,0.80974)",Group 43,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_44,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,44,50,Group 44,Group 44,N/A,"[0.80974,0.83692)",Group 44,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_45,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,45,50,Group 45,Group 45,N/A,"[0.83692,0.8641)",Group 45,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_46,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,46,50,Group 46,Group 46,N/A,"[0.8641,0.89128)",Group 46,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_47,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,47,50,Group 47,Group 47,N/A,"[0.89128,0.91846)",Group 47,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_48,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,48,50,Group 48,Group 48,N/A,"[0.91846,0.94564)",Group 48,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_49,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,49,50,Group 49,Group 49,N/A,"[0.94564,0.97282)",Group 49,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_50,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,50,50,Group 50,Group 50,N/A,"[0.97282,1]",Group 50,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::a,50,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,50,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",,cont,NA::b,50,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),,, -HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,3,3,Dext/need help,Needs help,N/A,3,Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Dexterity,"Dexterity trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",,cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)",Shared files use dexterity health status with more detailed categories. See derived variable documentation.,, -HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,3,3,Dext/need help,Needs help,N/A,"[3,6]",Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],,cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,2,3,Hear corrected,Hearing corrected,N/A,2,Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,3,Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,"Hearing problems - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)",Shared files use hearing health status with more detailed categories. See derived variable documentation.,, -HUIGHER,HUIGHER_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,2,3,Hear corrected,Hearing corrected,N/A,"[2,3]",Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,"[4,6]",Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Hearing,"Hearing problems - function code (D, G)",,, -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],,cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)",,, -HUI06,HUI06_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,1,2,Able to hear in a group w/o hearing aid,Able to hear in a group without a hearing aid,N/A,1,Able to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,2,2,Unable to hear in a group w/o hearing aid,Unable to hear in a group without a hearing aid,N/A,2,Unable to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI06,HUI06_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing,Hearing ability - in a group without a hearing aid,,, -HUI07,HUI07_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,1,2,Able to hear in a group w/ hearing aid,Able to hear in a group with hearing aid,N/A,1,Able to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,2,2,Unable to hear in a group w/ hearing aid,Unable to hear in a group with hearing aid,N/A,2,Unable to hear in a group with a hearing aid,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07,HUI07_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing,Hearing ability - in a group with a hearing aid,,, -HUI07A,HUI07_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Able to hear,HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,2,2,No,No,N/A,2,Unable to hear,HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,NA::a,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,Hearing ability - Able to hear,,, -HUI07A,HUI07_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing,Hearing ability - Able to hear,,, -HUI08,HUI08_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Able to hear in quiet room without a hearing aid,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,2,2,No ,No,N/A,2,Unable to hear in quiet room without a hearing aid,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI08,HUI08_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing ,Hearing ability - Able to hear in quiet room without hearing aid ,,, -HUI09,HUI09_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_09, cchs2003_i::HUIC_09, [HUI_09]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Able to hear in quiet room with a hearing aid,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,2,2,No ,No ,N/A,2,Unable to hear in quiet room with a hearing aid ,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::a,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUI09,HUI09_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,HUI Hearing ,Hearing ability - Able to hear in quiet room with hearing aid,,, -HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,3,4,Need mech supp.,Need mech supp.,N/A,3,Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,4,4,Can't walk,Can't walk,N/A,4,Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Mobility,"Mobility trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",,cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)",Shared files use amputation health status with more detailed categories. See derived variable documentation.,, -HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,3,4,Need mech supp.,Need mech supp.,N/A,"[3,4]",Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,4,4,Can't walk,Can't walk,N/A,"[5,6]",Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],,cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)",,, -HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,2,2,Part/not underst,Part/not underst,N/A,2,Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Speech,"Speech trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",,cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)",Shared files use speech health status with more detailed categories. See derived variable documentation.,, -HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,2,2,Part/not underst,Part/not underst,N/A,"[2,5]",Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],,cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,5,Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Vision,"Vision trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)",Shared files use vision health status with more detailed categories. See derived variable documentation.,, -HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,"[5,6]",Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Vision,"Vision trouble - function code - (D, G)",,, -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],,cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)",,, -HUPDPAD,HUPDPAD_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,1,5,No pain/discomf,No pain/discomf,N/A,1,No pain/discomf,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,2,5,Doesn't prev act,Doesn't prev act,N/A,2,Doesn't prev act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,3,5,Prevents few act,Prevents few act,N/A,3,Prevents few act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,4,5,Prev. some act,Prev. some act,N/A,4,Prev. some act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,5,5,Prev. most act,Prev. most act,N/A,5,Prev. most act,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Pain,Act. prevent/pain - function code - (D),,, -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Pain,Act. prevent/pain - function code - (D),CCHS 2001 does not include don't know (7) or refusal (8),, -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Pain,Act. prevent/pain - function code - (D),,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, [HWTGBMI]",ICES confirmed,cont,copy,N/A,BMI,Body Mass Index,kg/m2,"[8.07,137.46]","BMI / self-report - (D,G)",BMI,"BMI / self-report - (D,G)","CCHS 2001 restricts BMI to ages 20-64. CCHS 2015-2016 uses adjusted BMI. Consider using using HWTGBMI_der for the most concistent BMI variable across all CCHS cycles. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console.",, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.6,Not applicable,BMI,"BMI / self-report - (D,G)","CCHS 2001 and 2003 codes not applicable and missing variables as 999.6 and 999.7-999.9 respectively, while CCHS 2005 onwards codes not applicable and missing variables as 999.96 and 999.7-999.99 respectively",, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,"BMI / self-report - (D,G)",Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,BMI,"BMI / self-report - (D,G)",,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,"BMI / self-report - (D,G)",,, -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, cchs2015_2016_i::HWTGVBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,else,else,BMI,"BMI / self-report - (D,G)",,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADBMI, cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2015_2016_i::HWTDVBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,copy,N/A,BMI,Body Mass Index,kg/m3,"[8.07, 137.46]",BMI / self-report - (D),BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,kg/m4,999.6,Not applicable,BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m5,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,kg/m6,999.96,Not applicable,BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m7,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,BMI / self-report - (D),,, -HWTDBMI,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m8,else,else,BMI,BMI / self-report - (D),,, -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]",,N/A,Func::bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,"BMI variable derived from the harmonized height and weight variables. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console.",, -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]",,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,,, -HWTDBMI_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[HWTDHTM, HWTDWTK]",,N/A,Func::bmi_fun_D,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,,, -HWTDBMI_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[HWTDHTM, HWTDWTK]",,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4N/A_Func::bmi_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,Func::bmi_fun_cat,N/A,N/A,N/A,kg/m2,N/A,N/A,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI,Categorical body mass index,,, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],,N/A,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i",DerivedVar::HWTDBMI_der_cat4,,N/A,Func::bmi_fun_cat_D,N/A,N/A,N/A,kg/m2,N/A,N/A,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI,Categorical body mass index,,, -HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::bmi_fun_cat_D,cat,,,,,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI,Categorical body mass index,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,copy,N/A,Adjusted BMI,Adjusted body mass index,kg/m2,"[14.23,56.72]",Adjusted BMI,Adjusted BMI,Adjusted BMI,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,Adjusted BMI,Adjusted BMI,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Adjusted BMI,Adjusted BMI,,, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],,N/A,NA::b,N/A,missing,missing,kg/m2,else,else,Adjusted BMI,Adjusted BMI,,, -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]",,N/A,Func::adjusted_bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,"Adjusted BMI variable derived from the harmonized sex, height and weight variables. See documentation for adjusted_bmi_fun() in derived variables for more details, or type ?adjusted_bmi_fun in the console.",, -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX,HWTGHTM, HWTGWTK]",,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,,, -HWTDCOR_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[DHH_SEX,HWTDHTM, HWTDWTK]",,N/A,Func::adjusted_bmi_fun_D,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,,, -HWTDCOR_der,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[DHH_SEX,HWTDHTM, HWTDWTK]",,N/A,NA::b,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.118,N/A,Height,converted height (3'8 IN - 44 inches),meters,1,3'8 IN - 44 inches,Height,"Height (metres)/self-reported - (D,G)","2001 and 2003 CCHS use inches, values converted to meters to 3 decimal points",, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.143,N/A,Height,converted height (3'9 IN - 45 inches),meters,2,3'9 IN - 45 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.168,N/A,Height,converted height (3'10 IN - 46 inches),meters,3,3'10 IN - 46 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.194,N/A,Height,converted height (3'11 IN - 47 inches),meters,4,3'11 IN - 47 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.219,N/A,Height,converted height (4'0 IN - 48 inches),meters,5,4'0 IN - 48 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.245,N/A,Height,converted height (4'1 IN - 49 inches),meters,6,4'1 IN - 49 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.27,N/A,Height,converted height (4'2 IN - 50 inches),meters,7,4'2 IN - 50 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.295,N/A,Height,converted height (4'3 IN - 51 inches),meters,8,4'3 IN - 51 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.321,N/A,Height,converted height (4'4 IN - 52 inches),meters,9,4'4 IN - 52 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.346,N/A,Height,converted height (4'5 IN - 53 inches),meters,10,4'5 IN - 53 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.372,N/A,Height,converted height (4'6 IN - 54 inches),meters,11,4'6 IN - 54 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.397,N/A,Height,converted height (4'7 IN - 55 inches),meters,12,4'7 IN - 55 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.422,N/A,Height,converted height (4'8 IN - 56 inches),meters,13,4'8 IN - 56 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.448,N/A,Height,converted height (4'9 IN - 57 inches),meters,14,4'9 IN - 57 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.473,N/A,Height,converted height (4'10 IN - 58 inches),meters,15,4'10 IN - 58 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.499,N/A,Height,converted height (4'11 in - 59 inches),meters,16,4'11 in - 59 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.524,N/A,Height,converted height (5'0 IN - 60 inches),meters,17,5'0 IN - 60 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.549,N/A,Height,converted height (5'1 IN - 61 inches),meters,18,5'1 IN - 61 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.575,N/A,Height,converted height (5'2 IN - 62 inches),meters,19,5'2 IN - 62 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.6,N/A,Height,converted height (5'3 IN - 63 inches),meters,20,5'3 IN - 63 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.626,N/A,Height,converted height (5'4 IN - 64 inches),meters,21,5'4 IN - 64 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.651,N/A,Height,converted height (5'5 IN - 65 inches),meters,22,5'5 IN - 65 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.676,N/A,Height,converted height (5'6 IN - 66 inches),meters,23,5'6 IN - 66 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.702,N/A,Height,converted height (5'7 IN - 67 inches),meters,24,5'7 IN - 67 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.727,N/A,Height,converted height (5'8 IN - 68 inches),meters,25,5'8 IN - 68 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.753,N/A,Height,converted height (5'9 IN - 69 inches),meters,26,5'9 IN - 69 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.778,N/A,Height,converted height (5'10 IN - 70 inches),meters,27,5'10 IN - 70 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.803,N/A,Height,converted height (5'11 IN - 71 inches),meters,28,5'11 IN - 71 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.829,N/A,Height,converted height (6'0 IN - 72 inches),meters,29,6'0 IN - 72 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.854,N/A,Height,converted height (6'1 IN - 73 inches),meters,30,6'1 IN - 73 inches,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,1.93,N/A,Height,converted height (6'2 IN+ - 74+ inches),meters,31,6'2 IN+ - 74+ inches,Height,"Height (metres)/self-reported - (D,G)",74+ inches converted to 76 inches,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,NA::a,N/A,not applicable,not applicable,meters,96,not applicable,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,NA::b,N/A,missing,missing,meters,99,not stated (99),Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",,cat,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,copy,N/A,Height,Height,meters,"[0.914,2.134]",Height,Height,"Height (metres)/self-reported - (D,G)",Height is a reported in meters from 2005 CCHS onwards,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,NA::b,N/A,missing,missing,meters,"[9.997,9.999]","don't know (9.997), refusal (9.998), not stated (9.999)",Height,"Height (metres)/self-reported - (D,G)",,, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",,cont,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)",,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,copy,N/A,Height,Height,meters,"[0.914, 2.134]",Height,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,NA::a,N/A,Height,Height,meters,9.996,not applicable,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,NA::b,N/A,Height,Height,meters,"[9.997,9.999]",don't know (9.997); refusal (9.998); not stated (9.999),Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,cchs_2001_i,[HWTADHTM],ICES specific,cont,NA::b,N/A,Height,Height,meters,else,else,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,copy,N/A,Height,Height,meters,"[0.914, 2.134]",Height,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,NA::b,N/A,missing,missing,meters,"[9.997, 9.999]",don't know (9.997); refusal (9.998); not stated (9.999),Height,Height (metres)/self-reported - (D),,, -HWTDHTM,N/A,cont,"cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]",ICES specific,cont,NA::b,N/A,missing,missing,meters,else,else,Height,Height (metres)/self-reported - (D),,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,copy,N/A,Weight,Weight - kilograms,kg,"[27.0,135.0]","Weight - kilograms (D, G)",Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,NA::b,N/A,missing,missing,kg,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,,cont,NA::a,N/A,not applicable,not applicable,kg,996,not applicable,Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,,cont,NA::b,N/A,missing,missing,kg,"[997,999]",don't know (997); refusal (998); not stated (999),Weight,"Weight - kilograms (D, G)",,, -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",,cont,NA::b,N/A,missing,missing,kg,else,else,Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,copy,N/A,Weight,Weight - kilograms,kg,***,"Weight - kilograms (D, G)",Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg,"[999.97, 999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,"Weight - kilograms (D, G)",,, -HWTDWTK,N/A,cont,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg,else,else,Weight,"Weight - kilograms (D, G)",,, -immigration_der,immigration_derN/A_Func::immigration_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,Func::immigration_fun,N/A,N/A,N/A,N/A,N/A,N/A,Immigration category,Immigration category,"Derived from SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES",, -immigration_der,immigration_der_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,1,6,White Canada-born,White Canada-born,N/A,1,White Canada-born,Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,2,6,Non-white Canadian born,Non-white Canadian born,N/A,2,Non-white Canadian born,Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,3,6,White immigrant born outside of Canada (0-9 years in Canada),White immigrant born outside of Canada (0-9 years in Canada),N/A,3,White immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,4,6,Non-white immigrant born outside of Canada (0-9 years in Canada),Non-white immigrant born outside of Canada (0-9 years in Canada),N/A,4,Non-white immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,5,6,White immigrant born outside of Canada (10+ years in Canada),White immigrant born outside of Canada (10+ years in Canada),N/A,5,White immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,6,6,Non-white immigrant born outside of Canada (10+ years in Canada),Non-white immigrant born outside of Canada (10+ years in Canada),N/A,6,Non-white immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,NA::a,6,not applicable,not applicable,N/A,NA::a,not applicable,Immigration category,Immigration category,,, -immigration_der,immigration_der_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",,N/A,NA::b,6,missing,missing,N/A,NA::b,missing,Immigration category,Immigration category,,, -INCDRCA,INCDRCA_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution,Household income distribution - (D),,, -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution,Household income distribution - (D),,, -INCDRPR,INCDRPR_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),,, -INCDRRS,INCDRRS_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution health region level,Hhld inc. distribution- hr level - (D),,, -INCGHH_A,INCGHH_A_cat6_1,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories",, -INCGHH_A,INCGHH_A_cat6_2,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_3,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_4,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_5,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_6,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::a,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_1,cat,cchs2012_s,[INCDHH],,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_2,cat,cchs2012_s,[INCDHH],,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_3,cat,cchs2012_s,[INCDHH],,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_4,cat,cchs2012_s,[INCDHH],,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_5,cat,cchs2012_s,[INCDHH],,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_6,cat,cchs2012_s,[INCDHH],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,cchs2001_p,[INCAGHH],,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,2]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories",, -INCGHH_B,INCGHH_B_cat5_2,cat,cchs2001_p,[INCAGHH],,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,cchs2001_p,[INCAGHH],,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,cchs2001_p,[INCAGHH],,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,cchs2001_p,[INCAGHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,cchs2001_p,[INCAGHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2001_p,[INCAGHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2001_p,[INCAGHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2003 and 2005 classifies no income and less than $15,000 as one category",, -INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_1,cat,cchs2012_s,[INCDHH],,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_2,cat,cchs2012_s,[INCDHH],,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_3,cat,cchs2012_s,[INCDHH],,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_4,cat,cchs2012_s,[INCDHH],,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_5,cat,cchs2012_s,[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_1,cat,cchs2012_s,[INCDHH],,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_2,cat,cchs2012_s,[INCDHH],,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_3,cat,cchs2012_s,[INCDHH],,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_4,cat,cchs2012_s,[INCDHH],,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_5,cat,cchs2012_s,[INCDHH],,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_C,INCGHH_C_cat5_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_7,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_8,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_9,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_10,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_11,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_12,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,12,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_1,cat,cchs2012_s,[INCDHH],,cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_2,cat,cchs2012_s,[INCDHH],,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_3,cat,cchs2012_s,[INCDHH],,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_4,cat,cchs2012_s,[INCDHH],,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_5,cat,cchs2012_s,[INCDHH],,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_6,cat,cchs2012_s,[INCDHH],,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_7,cat,cchs2012_s,[INCDHH],,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_8,cat,cchs2012_s,[INCDHH],,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_9,cat,cchs2012_s,[INCDHH],,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_10,cat,cchs2012_s,[INCDHH],,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_11,cat,cchs2012_s,[INCDHH],,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_12,cat,cchs2012_s,[INCDHH],,cat,12,12,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,12,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_D,INCGHH_D_cat12_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_7,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_8,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_9,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_10,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_11,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_12,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_13,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_14,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,14,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_1,cat,cchs2012_s,[INCDHH],,cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_2,cat,cchs2012_s,[INCDHH],,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_3,cat,cchs2012_s,[INCDHH],,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_4,cat,cchs2012_s,[INCDHH],,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_5,cat,cchs2012_s,[INCDHH],,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_6,cat,cchs2012_s,[INCDHH],,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_7,cat,cchs2012_s,[INCDHH],,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_8,cat,cchs2012_s,[INCDHH],,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_9,cat,cchs2012_s,[INCDHH],,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_10,cat,cchs2012_s,[INCDHH],,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_11,cat,cchs2012_s,[INCDHH],,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_12,cat,cchs2012_s,[INCDHH],,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_13,cat,cchs2012_s,[INCDHH],,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_14,cat,cchs2012_s,[INCDHH],,cat,14,14,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,14,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_E,INCGHH_E_cat14_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_1,cat,cchs2012_s,[INCDHH],,cat,1,15,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_2,cat,cchs2012_s,[INCDHH],,cat,2,15,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_3,cat,cchs2012_s,[INCDHH],,cat,3,15,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_4,cat,cchs2012_s,[INCDHH],,cat,4,15,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_5,cat,cchs2012_s,[INCDHH],,cat,5,15,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_6,cat,cchs2012_s,[INCDHH],,cat,6,15,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_7,cat,cchs2012_s,[INCDHH],,cat,7,15,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_8,cat,cchs2012_s,[INCDHH],,cat,8,15,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_9,cat,cchs2012_s,[INCDHH],,cat,9,15,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_10,cat,cchs2012_s,[INCDHH],,cat,10,15,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_11,cat,cchs2012_s,[INCDHH],,cat,11,15,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_12,cat,cchs2012_s,[INCDHH],,cat,12,15,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_13,cat,cchs2012_s,[INCDHH],,cat,13,15,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_14,cat,cchs2012_s,[INCDHH],,cat,14,15,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_15,cat,cchs2012_s,[INCDHH],,cat,15,15,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_NA::a,cat,cchs2012_s,[INCDHH],,cat,NA::a,15,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,15,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)",,, -INCGHH_F,INCGHH_F_cat15_NA::b,cat,cchs2012_s,[INCDHH],,cat,NA::b,15,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,7500,N/A,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,10000,N/A,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,30000,N/A,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,125000,N/A,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,170000,N/A,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous,,, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,,, -INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",CCHS 2001 missing 97 (don't know) and 98 (refusal),, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,"[5,6]","$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,2,6,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,6,"Less than $20,000","Less than $20,000",$/year,"[2,5]","Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,"[6,7]","$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,12,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,12,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_C,INCGPER_C_cat12_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,12,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,1,14,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,14,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_D,INCGPER_D_cat14_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,14,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,22500,N/A,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,10000,N/A,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,30000,N/A,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",,, -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",,, -LBFA_31A,LBFA_31A_cat9_1,cat,cchs2001_p,[LBFA_31A],,cat,1,9,Management,Management,N/A,1,Management,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_2,cat,cchs2001_p,[LBFA_31A],,cat,2,9,Professional (including accountants),Professional (including accountants),N/A,2,Professional (including accountants),Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_3,cat,cchs2001_p,[LBFA_31A],,cat,3,9,"Technologist, Technician or Tech Occ","Technologist, Technician or Tech Occ",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_4,cat,cchs2001_p,[LBFA_31A],,cat,4,9,"Administrative, Financial or Clerical","Administrative, Financial or Clerical",N/A,4,"Administrative, Financial or Clerical",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_5,cat,cchs2001_p,[LBFA_31A],,cat,5,9,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_6,cat,cchs2001_p,[LBFA_31A],,cat,6,9,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_7,cat,cchs2001_p,[LBFA_31A],,cat,7,9,"Farming, Forestry, Fishing, Mining","Farming, Forestry, Fishing, Mining",N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_8,cat,cchs2001_p,[LBFA_31A],,cat,8,9,"Processing, Manufacturing, Utilities","Processing, Manufacturing, Utilities",N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_9,cat,cchs2001_p,[LBFA_31A],,cat,9,9,Other,Other,N/A,9,Other,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_NA::a,cat,cchs2001_p,[LBFA_31A],,cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Main job or business,,, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,9,missing,missing,N/A,else,else,Occupation group,Main job or business,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,3,5,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,5,missing,missing,N/A,9,not stated,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,cchs2001_p,[LBFA_31A],,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,cchs2001_p,[LBFA_31A],,cat,3,5,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,cchs2001_p,[LBFA_31A],,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,5,missing,missing,N/A,9,Other,Occupation group,Occupation Group,"""Other"" has no equivalent in LBSGSOC recoded to 'NA::b' missing",, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,cchs2001_p,[LBFA_31A],,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,3,5,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::a,5,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,3,6,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,6,missing,missing,N/A,9,not stated,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,cchs2001_p,[LBFA_31A],,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,cchs2001_p,[LBFA_31A],,cat,3,6,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,cchs2001_p,[LBFA_31A],,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_6,cat,cchs2001_p,[LBFA_31A],,cat,6,6,Other,Other,N/A,9,Other,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,cchs2001_p,[LBFA_31A],,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,3,6,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::a,6,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,1,10,Management,Management,N/A,1,Management,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,2,10,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,3,10,"Natural and Applied Science, Religious","Natural and Applied Science, Religious",N/A,3,"Natural and Applied Science, Religious",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,4,10,Health,Health,N/A,4,Health,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,5,10,"Social Science, Education, Government, Religion","Social Science, Education, Government, Religion",N/A,5,"Social Science, Education, Government, Religion",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,6,10,"Culture, Recreation, Sport","Culture, Recreation, Sport",N/A,6,"Culture, Recreation, Sport",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,7,10,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,8,10,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,9,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,9,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,10,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,10,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::a,10,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,, -LBFA_31A_c,LBFA_31A_c_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,,, -LBFA_31A_c,LBFA_31A_c_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],,cat,NA::b,10,missing,missing,N/A,else,else,Occupation group,Occupation Group,,, -low_drink_score,low_drink_score_cat4N/A_Func::low_drink_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,Func::low_drink_score_fun,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY.",, -low_drink_score,low_drink_score_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,1,4,Low risk,Low risk,N/A,1,Low risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,2,4,Marginal risk,Marginal risk,N/A,2,Marginal risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,3,4,Medium risk,Medium risk,N/A,3,Medium risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,4,4,High risk,High risk,N/A,4,High risk,Low risk drinking score,Low risk drinking score,,, -low_drink_score,low_drink_score_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",,N/A,NA::b,4,missing,missing,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score,,, -low_drink_score1,low_drink_score1_cat5N/A_Func::low_drink_score_fun1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,Func::low_drink_score_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,1,5,Low risk - never drank,Low risk - never drank,N/A,N/A,Low risk - never drank,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,2,5,Low risk - former drinker,Low risk - former drinker,N/A,N/A,Low risk - former drinker,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,3,5,Marginal risk,Marginal risk,N/A,N/A,Marginal risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,4,5,Medium risk,Medium risk,N/A,N/A,Medium risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,5,5,High risk,High risk,N/A,N/A,High risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -low_drink_score1,low_drink_score1_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",,N/A,NA::b,5,missing,missing,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,,, -MAM_037,MAM_037_cat2_1,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,1,2,Yes,Yes,N/A,1,Yes,Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_2,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,2,2,No ,No,N/A,2,No,Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Currently pregnant,Currently pregnant,,, -MAM_037,MAM_037_cat2_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]",,cat,NA::b,2,missing,missing,N/A,else,else,Currently pregnant,Currently pregnant,,, -MED_1P,MED_1P_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,1,2,Yes,Yes,N/A,1,Yes,Sleeping pills,"In the past month, did you take sleeping pills",CCHS 2001 does not provide examples of sleeping pills in its literal question,, -MED_1P,MED_1P_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,2,2,No,No,N/A,2,No,Sleeping pills,"In the past month, did you take sleeping pills",,, -MED_1P,MED_1P_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sleeping pills,"In the past month, did you take sleeping pills",,, -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleeping pills,"In the past month, did you take sleeping pills",,, -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",,cat,NA::b,2,missing,missing,N/A,else,else,Sleeping pills,"In the past month, did you take sleeping pills",,, -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun1,cat,cchs2001_p,"DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,Func::multiple_conditions_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, resp_condition, CCC_050",, -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,Func::multiple_conditions_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition, CCC_051. Variable can be extended to 2018 when bowel condition not included.",, -number_conditions,number_conditions_cat6_0,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,0,6,0,0,N/A,N/A,0,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,1,6,1,1,N/A,N/A,1,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,2,6,2,2,N/A,N/A,2,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,3,6,3,3,N/A,N/A,3,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,4,6,4,4,N/A,N/A,4,Number of conditions,Number of chronic conditions,,, -number_conditions,number_conditions_cat6_5+,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,5+,6,5+,5+,N/A,N/A,5+,Number of conditions,Number of chronic conditions,,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,160]",No. hours sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],,cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,1680]",No. minutes sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],,cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),,, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,168]",No. hours sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes.",, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],,cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,4880]",No. minutes sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes.",, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],,cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,copy,N/A,No. active days - 7d,No. active days - 7d,days,"[0,7]",No. active days - 7d,Active days (18+ years old),Number of active days (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (18+ years old),Number of active days (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (18+ years old),Number of active days (18+ years old),,, -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],,cont,NA::b,N/A,missing,missing,days,else,else,Active days (18+ years old),Number of active days (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,10080]",No. minutes of active transportation,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,copy,N/A,No. minutes - vigorous physical activity - 7d,No. minutes - vigorous physical activity - 7d,minutes/week,"[0,6000]",No. minutes - vigorous physical activity - 7d,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),,, -PAC_4A,PAC_4A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,1,6,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,6,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,0,N/A,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",,cat,NA::b,N/A,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,1,6,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,6,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,0,N/A,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",,cat,NA::b,N/A,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",,, -PAC_7,PAC_7_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,1,3,Yes,Yes,N/A,1,Yes,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,2,3,No,No,N/A,2,No,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],,cat,NA::b,3,missing,missing,N/A,else,else,Walk to work/school,Walked to work or school / last 3 mo.,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,copy,N/A,No. of times/3 mo./walking work/school,No. of times walking work/school,N/A,"[1,270]",No. of times walking work/school,Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],,cont,NA::b,N/A,missing,missing,N/A,else,else,Number times walk work/school,No. of times/3 mo./walking work/school,,, -PAC_7B,PAC_7B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,4,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school,,, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],,cat,NA::b,N/A,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school,,, -PAC_8,PAC_8_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,1,3,Yes,Yes,N/A,1,Yes,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,2,3,No,No,N/A,2,No,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],,cat,NA::b,3,missing,missing,N/A,else,else,Bike to work/school,Bicycled to work or school / last 3 mo.,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,copy,N/A,No. of times/3 mo./biking work/school,No. of times biking work/school,times/3 mos.,"[1,270]",No. of times biking work/school,Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,NA::a,N/A,not applicable,not applicable,times/3 mos.,996,not applicable,Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,NA::b,N/A,missing,missing,times/3 mos.,"[997,999]",don't know (997); refusal (998); not stated (999),Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],,cont,NA::b,N/A,missing,missing,times/3 mos.,else,else,Number times bike work/school,No. of times/3 mo./bicycl. work/school,,, -PAC_8B,PAC_8B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,4,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school,,, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],,cat,NA::b,N/A,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school,,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,copy,N/A,Physical Activity,Average daily leisure time energy expenditure in METs,METS,"[0,43.5]",Daily energy expenditure - (D),Physical activity,Daily energy expenditure - (D),Refer to energy_exp for PACDEE all cycles,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::a,N/A,not applicable,not applicable,METS,99.6,Not applicable,Physical activity,Daily energy expenditure - (D),,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Physical activity,Daily energy expenditure - (D),Don't know (99.7) and refusal (99.8) not included in 2001 CCHS,, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,N/A,missing,missing,METS,else,else,Physical activity,Daily energy expenditure - (D),,, -PACDEE_cat3,PACDEE_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,1,3,Inactive,Inactive - leisure activity,METS,"[0,1.5)",Inactive - leisure activity,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,2,3,Moderately active,Moderately active - leisure activity,METS,"[1.5,3)",Moderately active - leisure activity,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,3,3,Active,Active - leisure activity,METS,"[3,43.5]",Active - leisure activity,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::a,3,not applicable,not applicable,METS,99.6,Not applicable,Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,3,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Categorical physical activity,Categorical daily energy expenditure,,, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,cont,NA::b,3,missing,missing,METS,else,else,Categorical physical activity,Categorical daily energy expenditure,,, -pack_years_cat,pack_years_catN/A_Func::pack_years_fun_cat,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,Func::pack_years_fun_cat,N/A,N/A,N/A,pack-years,N/A,N/A,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,1,8,0,0 pack-years,pack-years,N/A,0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,2,8,0 to 0.01,0 to 0.01 pack-years,pack-years,N/A,0 to 0.01 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,3,8,0.01 to 3.0,0.01 to 3.0 pack-years,pack-years,N/A,0.01 to 3.0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,4,8,3.0 to 9.0,3.0 to 9.0 pack-years,pack-years,N/A,3.0 to 9.0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,5,8,9.0 to 16.2,9.0 to 16.2 pack-years,pack-years,N/A,9.0 to 16.2 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,6,8,16.2 to 25.7,16.2 to 25.7 pack-years,pack-years,N/A,16.2 to 25.7 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_7,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,7,8,25.7 to 40.0,25.7 to 40.0 pack-years,pack-years,N/A,25.7 to 40.0 pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_8,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,8,8,40.0+,40.0+ pack-years,pack-years,N/A,40.0+ pack-years,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,NA::a,8,not applicable,not applicable,pack-years,N/A,not applicable,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_cat,pack_years_cat_cat8_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],,N/A,NA::b,8,missing,missing,pack-years,N/A,missing,Categorical PackYears,Categorical smoking pack-years,,, -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",,N/A,Func::pack_years_fun,N/A,N/A,N/A,pack-years,N/A,N/A,PackYears,Smoking pack-years,PackYears variable derived from various harmonized smoking variables,, -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",,N/A,NA::b,N/A,missing,missing,pack-years,N/A,N/A,PackYears,Smoking pack-years,,, -PACFLEI,PACFLEI_cat_cat6_1,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,1,2,Yes,Yes,Leisure physical activity,1,Yes,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_2,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,2,2,No,No,Leisure physical activity,2,No,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_NA::a,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,NA::a,2,not applicable,not applicable,Leisure physical activity,6,not applicable,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_NA::b,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,NA::b,2,missing,missing,Leisure physical activity,"[7,9]",don't know (7); refusal (8); not stated (9) ,Leisure phys. activity,Leisure physical activity,,, -PACFLEI,PACFLEI_cat_cat6_NA::b,cat,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]",ICES specific,cat,NA::b,2,missing,missing,Leisure physical activity,else,else,Leisure phys. activity,Leisure physical activity,,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,copy,N/A,No. minutes of leisure activities,No. minutes of leisure activities,minutes/week,"[0,4140]",No. minutes of leisure activities,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,copy,N/A,No. physically active days,No. physically active days,days,"[0,7]",No. physically active days,Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],,cont,NA::b,N/A,missing,missing,days,else,else,Active days (12-17 years old),Number of active days (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,copy,N/A,No. minutes of other activities,No. minutes of other activities,minutes/week,"[0,4980]",No. minutes of other activities,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,6300]",No. minutes of active transportation,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,copy,N/A,No. minutes of vigorous activities,No. minutes of vigorous activities,minutes/week,"[0,2880]",No. minutes of vigorous activities,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),,, -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",,N/A,Func::pct_time_fun,N/A,N/A,N/A,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,"Percent time in Canada derived from Age, immigration status, and time in Canada variables",, -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",,N/A,NA::b,N/A,missing,missing,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10N/A_Func::pct_time_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,Func::pct_time_fun_cat,N/A,N/A,N/A,%,N/A,N/A,Categorical percent time in Canada,Categorical percentage of time in Canada,Categorical percent time in Canada derived from pct_time_der,, -pct_time_der_cat10,pct_time_der_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,1,10,10%,10% time in Canada,%,1,10% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,2,10,20%,20% time in Canada,%,2,20% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,3,10,30%,30% time in Canada,%,3,30% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,4,10,40%,40% time in Canada,%,4,40% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,5,10,50%,50% time in Canada,%,5,50% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,6,10,60%,60% time in Canada,%,6,60% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,7,10,70%,70% time in Canada,%,7,70% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,8,10,80%,80% time in Canada,%,8,80% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,9,10,90%,90% time in Canada,%,9,90% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,10,10,100%,100% time in Canada,%,10,100% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,NA::a,10,not applicable,not applicable,%,NA::a,not applicable,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -pct_time_der_cat10,pct_time_der_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,N/A,NA::b,10,missing,missing,%,NA::b,missing,Categorical percent time in Canada,Categorical percentage of time in Canada,,, -RAC_1,RAC_1_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",,cat,2,3,Often,Often,N/A,2,Often,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",,cat,3,3,Never,Never,N/A,3,Never,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::a,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::a,cat,cchs2003_p,cchs2003_p::RACC_1,,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Difficulty activities,Has difficulty with activities,CCHS 2003 codes N/A as 96 and missing as 97-99,, -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Difficulty activities,Has difficulty with activities,,, -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities,,, -RAC_2A,RAC_2A_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,2,3,Often,Often,N/A,2,Often,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,3,3,Never,Never,N/A,3,Never,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at home,Reduction - activities at home,,, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at home,Reduction - activities at home,,, -RAC_2B,RAC_2B_cat3_1,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school or work,Long-term cond. reduces act. - school or work,"In CCHS 2001, work and school reduction were combined into one variable. From CCHS 2003 onwards they were split into 2 variables (RAC_2B1 & RAC_2B2)",, -RAC_2B,RAC_2B_cat3_2,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,2,3,Often,Often,N/A,2,Often,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_3,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,3,3,Never,Never,N/A,3,Never,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_NA::a,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,NA::a,3,not applicable,not applicable,N/A,4,not applicable,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,,cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at school or work,Long-term cond. reduces act. - school or work,,, -RAC_2B1,RAC_2B1_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,2,4,Often,Often,N/A,2,Often,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,3,4,Never,Never,N/A,3,Never,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,4,4,Not attend school,Not attend school,N/A,4,Not attend school,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",,cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at school,Long-term cond. reduces act. - school,,, -RAC_2B2,RAC_2B2_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,2,4,Often,Often,N/A,2,Often,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,3,4,Never,Never,N/A,3,Never,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,4,4,Has no job,Has no job,N/A,4,Has no job,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",,cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at work,Reduction kind/amount act. - at work,,, -RAC_2C,RAC_2C_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,2,3,Often,Often,N/A,2,Often,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,3,3,Never,Never,N/A,3,Never,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction other activities,Reduction - other activities,,, -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,cat,NA::b,3,missing,missing,N/A,else,else,Reduction other activities,Reduction - other activities,,, -RACAG5,RACAG5_cat4_1,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,1,4,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem,"CCHS 2001 has different categories from other cycles, hence a new variable created",, -RACAG5,RACAG5_cat4_2,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,2,4,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_3,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,3,4,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_4,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,4,4,Other,Other,N/A,4,Other,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_NA::a,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Cause health problem,Cause of Health problem,,, -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,,cat,NA::b,4,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -RAC_6D,RAC_6D_cat_cat1,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_cat2,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,2,2,No,No,N/A,2,No,Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_NA::a,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,NA::b,2,missing,missing,N/A,"[7,9]",dont know (7); refusal (8); not stated (9),Help heavy housework,Needs help - heavy housework,,, -RAC_6D,RAC_6D_cat_NA::b,cat,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,Help heavy housework,Needs help - heavy housework,,, -RACDIMP,RACDIMP_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,2,3,Often,Often,N/A,2,Often,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,3,3,Never,Never,N/A,3,Never,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Impact health problem,Impact of health problems,,, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",,cat,NA::b,3,missing,missing,N/A,else,else,Impact health problem,Impact of health problems,,, -RACDPAL,RACDPAL_catN/A_Func::RACDPAL_fun,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,Func::RACDPAL_fun,N/A,N/A,N/A,N/A,N/A,N/A,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_1,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,1,3,Sometimes,Sometimes,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_2,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,2,3,Often,Often,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_3,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,3,3,Never,Never,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::b,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",,N/A,NA::b,3,missing,missing,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,2,3,Often,Often,N/A,2,Often,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,3,3,Never,Never,N/A,3,Never,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Particpation/activity limitation,Participation and activity limitation,,, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,cat,NA::b,3,missing,missing,N/A,else,else,Particpation/activity limitation,Participation and activity limitation,,, -RACG5,RACG5_cat6_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,1,6,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,2,6,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,3,6,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,4,6,Existed at birth,Existed at birth,N/A,4,Existed at birth,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,5,6,Work conditions,Work conditions,N/A,5,Work conditions,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,6,6,Other,Other,N/A,6,Other,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",,cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,1,6,Injury,Injury,N/A,"[1,4]",Injury,Cause health problem,Cause of Health problem,"For CCHS 2007-2008 and shared files, cause of health problem groupings based on 2009-2010 derived variable documentation.",, -RACG5,RACG5_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,2,6,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,3,6,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,4,6,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,5,6,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,6,6,Other,Other,N/A,"[9,11]",Other,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,,, -RACG5,RACG5_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,1,11,Accident at home,Accident at home,N/A,1,Accident at home,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,2,11,Motor vehicle accident,Motor vehicle accident,N/A,2,Motor vehicle accident,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,3,11,Accident at work,Accident at work,N/A,3,Accident at work,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,4,11,Other type of accident,Other type of accident,N/A,4,Other type of accident,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,5,11,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,6,11,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,7,11,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,8,11,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,9,11,Emotional/mental health problems,Emotional/mental health problems,N/A,9,Emotional/mental health problems,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,10,11,Use of alcohol or drugs,Use of alcohol or drugs,N/A,10,Use of alcohol or drugs,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,11,11,Other,Other,N/A,11,Other,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,11,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,,, -RACG5_A,RACG5_A_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],,cat,NA::b,11,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,,, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",,N/A,Func::resp_condition_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables",, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun2,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,Func::resp_condition_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables",, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun3,cat,"cchs2001_p, cchs2003_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]",,N/A,Func::resp_condition_fun3,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables",, -resp_condition_der,resp_condition_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -resp_condition_der,resp_condition_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -resp_condition_der,resp_condition_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -resp_condition_der,resp_condition_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",,N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition,,, -SDC_5A_1,SDC_5A_1_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,1,4,English ,English only,N/A,1,English ,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,2,4,French,French only,N/A,2,French,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,3,4,English & French,English & French,N/A,3,English & French,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,4,4,Neither,Neither English nor French,N/A,4,Neither,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Knowledge of official languages,Knowledge of official languages,,, -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",,cat,NA::b,4,missing,missing,N/A,else,else,Knowledge of official languages,Knowledge of official languages,,, -SDCDFOLS,SDCDFOLS_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,1,4,English ,English only,N/A,1,English ,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,2,4,French,French only,N/A,2,French,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,3,4,English & French,English & French,N/A,3,English & French,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,4,4,Neither,Neither English nor French,N/A,4,Neither,First official language spoken,First official language spoken,,, -SDCDFOLS,SDCDFOLS_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)",, -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)",, -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",,cat,NA::b,4,missing,missing,N/A,else,else,First official language spoken,First official language spoken,,, -SDCFIMM,SDCFIMM_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2019","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2020","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2021","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Immigrant status,Immigrant Status (D),,, -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016, cchs2017_2022","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status,Immigrant Status (D),,, -SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,2,2,Other,Other,N/A,2,Other,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Country of birth,Country of birth - (G),CCHS 2001 does not have don't know (7) or refusal (8),, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::b,2,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,2,2,Other,Other,N/A,"[2,7]",Other,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Country of birth,Country of birth - (G),,, -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,2,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,1,7,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,2,7,Other North America,Other North America,N/A,2,Other North America,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,3,7,"South, Central America and Caribbean","South, Central America and Caribbean",N/A,3,"South, Central America and Caribbean",Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,4,7,Europe,Europe,N/A,4,Europe,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,5,7,Africa,Africa,N/A,5,Africa,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,6,7,Asia,Asia,N/A,6,Asia,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,7,7,Oceania,Oceania,N/A,7,Oceania,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Country of birth,Country of birth - (G),,, -SDCGCBG_A,SDCGCBG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",,cat,NA::b,7,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,, -SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,2,2,Non-white,Non-white,N/A,2,Visible minority,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ethnicity,"Cultural or racial origin - (D, G)","CCHS 2001 missing don't know (7), refusal (8)",, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]",ICES altered,cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,2,2,Non-white,Non-white,N/A,"[2,13]",Visible minority,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)",,, -SDCGCGT_A,SDCGCGT_A_cat13_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,1,13,White,White,N/A,1,White,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,2,13,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,3,13,Korean,Korean,N/A,3,Korean,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,4,13,Filipino,Filipino,N/A,4,Filipino,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,5,13,Japanese,Japanese,N/A,5,Japanese,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,6,13,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,7,13,South Asian,South Asian,N/A,7,South Asian,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,8,13,Southeast Asian,Southeast Asian,N/A,8,Southeast Asian,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,9,13,Arab,Arab,N/A,9,Arab,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,10,13,West Asian,West Asian,N/A,10,West Asian,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,11,13,Latin American,Latin American,N/A,11,Latin American,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,12,13,Other,Other,N/A,12,Other,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,13,13,Multiple origins,Multiple origins,N/A,13,Multiple origins,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::a,13,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,13,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin - (D),,, -SDCGCGT_A,SDCGCGT_A_cat13_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],,cat,NA::b,13,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin - (D),,, -SDCDCGT_A,SDCDCGT_A_cat13_1,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,1,14,White,White,N/A,1,White,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_2,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,2,14,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_3,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,3,14,Korean,Korean,N/A,3,Korean,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_4,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,4,14,Filipino,Filipino,N/A,4,Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,5,14,Japanese,Japanese,N/A,5,Japanese,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_6,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,6,14,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_7,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,7,14,Aboriginal/N ame,Aboriginal/N ame,N/A,7,Aboriginal/N ame,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_8,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,8,14,South Asian,South Asian,N/A,8,South Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_9,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,9,14,South East Asian,South East Asian,N/A,9,South East Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_10,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,10,14,Arab,Arab,N/A,10,Arab,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_11,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,11,14,West Asian,West Asian,N/A,11,West Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_12,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,12,14,Latin American,Latin American,N/A,12,Latin American,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_13,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,13,14,Other,Other,N/A,13,Other,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_13,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,14,14,Multiple origins,Multiple origins,N/A,14,Multiple origins,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::a,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,NA::a,14,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,NA::b,14,missing,missing,N/A,"[97, 99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, [SDCDCGT] ",ICES specific,cat,NA::b,14,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_1,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,1,13,White only,White only,N/A,1,White only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_2,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,2,13,South Asian only,South Asian only,N/A,8,South Asian only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_3,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,3,13,Chinese only,Chinese only,N/A,6,Chinese only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_4,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,4,13,Black only,Black only,N/A,2,Black only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_5,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,5,13,Filipino only,Filipino only,N/A,4,Filipino only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_6,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,6,13,Latin American only,Latin American only,N/A,12,Latin American only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_7,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,7,13,Arab only,Arab only,N/A,10,Arab only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_8,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,8,13,Southeastern Asian only,Southeastern Asian only,N/A,9,Southeastern Asian only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_9,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,9,13,West Asian only,West Asian only,N/A,11,West Asian only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_10,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,10,13,Korean only,Korean only,N/A,3,Korean only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_11,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,11,13,Japenese only,Japenese only,N/A,5,Japenese only,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_12,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,12,13,Other racial or cultural origin (only),Other racial or cultural origin (only),N/A,13,Other racial or cultural origin (only),Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_13,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,13,13,Multiple racial or cultural origins,Multiple racial or cultural origins,N/A,14,Multiple racial or cultural origins,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::a,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,NA::a,13,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,NA::b,13,missing,missing,N/A,"[97, 99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin,,, -SDCDCGT_A,SDCDCGT_A_cat13_NA::b,cat,"cchs2015_2016_i, cchs2017_2018_i",[SDCDVCGT],ICES specific,cat,NA::b,13,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_1,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,1,7,White,White,N/A,1,White,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_2,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,2,7,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_3,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,3,7,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_4,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,4,7,Aboriginal,Aboriginal,N/A,7,Aboriginal,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,[3],Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,[5],Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_5,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,[9],Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_6,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,6,7,other/multiple origin/unknown/Latin American,other/multiple origin/unknown/Latin American,N/A,[12],other/multiple origin/unknown/Latin American,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_6,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,6,7,other/multiple origin/unknown/Latin American,other/multiple origin/unknown/Latin American,N/A,[14],other/multiple origin/unknown/Latin American,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_7,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,7,7,South Asian/Arab/West Asian,South Asian/Arab/West Asian,N/A,[8],South Asian/Arab/West Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_7,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,7,7,South Asian/Arab/West Asian,South Asian/Arab/West Asian,N/A,"[10,11]",South Asian/Arab/West Asian,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_NA::a,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,NA::b,7,missing,missing,N/A,"[97,99]",missing,Ethnicity,Cultural or racial origin,,, -SDCDCGT_B,SDCDCGT_B_cat7_NA::b,cat,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ",ICES specific,cat,NA::b,7,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,, -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::b,4,missing,missing,N/A,else,else,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,5,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,English & French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,6,Neither English nor French (other),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,"[3,4]",not applicable,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,4,4,Neither,Neither English nor French (other),N/A,7,don't know (7); refusal (8); not stated (9),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::a,4,not applicable,not applicable,N/A,96,else,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,4,missing,missing,N/A,"[97,99]",English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,4,missing,missing,N/A,else,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,, -SDCGLHM_A,SDCGLHM_A_cat7_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,1,7,English,English,N/A,1,English,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,2,7,French,French,N/A,2,French,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,3,7,English & French,English & French,N/A,3,English & French,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,4,7,English & French and other,English & French and other,N/A,4,English & French and other,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,5,7,English & other (not French),English & other (not French),N/A,5,English & other (not French),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,6,7,French & other (not English),French & other (not English),N/A,6,French & other (not English),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,7,7,Neither English nor French (other),Neither English nor French (other),N/A,7,Neither English nor French (other),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLHM_A,SDCGLHM_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],,cat,NA::b,7,missing,missing,N/A,else,else,Language(s) spoken at home,Language(s) spoken at home - (D),,, -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,1,4,English w/ or w/o other,English with or without other language,N/A,5,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,2,4,French w/ or w/o other,French with or without other language,N/A,6,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,"[3,4]",English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,4,4,Neither,Neither English nor French (other),N/A,7,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::a,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)",,, -SDCGLNG_A,SDCGLNG_A_cat7_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,1,7,English,English,N/A,1,English,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,2,7,French,French,N/A,2,French,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_3,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,3,7,English & French,English & French,N/A,3,English & French,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_4,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,4,7,English & French and other,English & French and other,N/A,4,English & French and other,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_5,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,5,7,English & other (not French),English & other (not French),N/A,5,English & other (not French),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_6,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,6,7,French & other (not English),French & other (not English),N/A,6,French & other (not English),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_7,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,7,7,Neither English nor French (other),Neither English nor French (other),N/A,7,Neither English nor French (other),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Languages - can converse in,Languages - can converse in - (D),,, -SDCGLNG_A,SDCGLNG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],,cat,NA::b,7,missing,missing,N/A,else,else,Languages - can converse in,Languages - can converse in - (D),,, -SDCGRES,SDCGRES_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,1,2,0 to 9 years,0 to 9 years,N/A,1,0 to 9 years,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,2,2,10 years or more,10 years or more,N/A,2,10 years or more,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Time in Canada,"Length/time in Canada since imm. (D, G)","CCHS 2001 missing don't know (7), refusal (8)",, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,2,missing,missing,N/A,else,else,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,1,2,0 to 9 years,0 to 9 years,N/A,"[0,10)",0 to 9 years,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,2,2,10 years or more,10 years or more,N/A,"[10,97]",10 years or more,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::a,2,not applicable,not applicable,N/A,996,not applicable,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,2,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,2,missing,missing,N/A,else,else,Time in Canada,"Length/time in Canada since imm. (D, G)",,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,copy,N/A,years since immigration,years since immigration,years,"[0,97]",years since immigration,Time in Canada,Length/time in Canada since imm. (D),,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Time in Canada,Length/time in Canada since imm. (D),,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Time in Canada,Length/time in Canada since imm. (D),,, -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],,cont,NA::b,N/A,missing,missing,years,else,else,Time in Canada,Length/time in Canada since imm. (D),,, -SLP_02,SLP_02_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,5,5,All the time,All the time,N/A,5,All the time,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]",ICES altered,cat,NA::b,5,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_1,cat,"cchs2001_p, cchs2001_i",[GENA_04],ICES altered,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Trouble sleeping,Freq. - trouble sleeping,CCHS 2001 has different categories from other cycles,, -SLP_02_A,SLP_02_A_cat3_2,cat,cchs2001_p,[GENA_04],ICES altered,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_3,cat,cchs2001_p,[GENA_04],ICES altered,cat,3,3,Never,Never,N/A,3,Never,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_NA::a,cat,cchs2001_p,[GENA_04],ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping,,, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping,,, -SLP_03,SLP_03_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,5,5,All the time,All the time,N/A,5,All the time,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat3_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_1,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Sleep refreshing,Freq. - find sleep refreshing,CCHS 2001 has different categories from other cycles,, -SLP_03_A,SLP_03_A_cat3_2,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_3,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,3,3,Never,Never,N/A,3,Never,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_NA::a,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,"cchs2001_p, cchs2001_i",[GENA_05],ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing,,, -SLP_04,SLP_04_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,5,5,All the time,All the time,N/A,5,All the time,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",,cat,NA::b,5,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_1,cat,cchs2001_p,[GENA_06],,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Difficulty awake,Freq. - diffficult to stay awake,CCHS 2001 has different categories from other cycles,, -SLP_04_A,SLP_04_A_cat3_2,cat,cchs2001_p,[GENA_06],,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_3,cat,cchs2001_p,[GENA_06],,cat,3,3,Never,Never,N/A,3,Never,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_NA::a,cat,cchs2001_p,[GENA_06],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake,,, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake,,, -SLPG01,SLPG01_cat11_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,1,11,<3 hours,<3 hours,Hours,1,<3 hours,Hours sleep,No./hours spent sleeping each night,CCHS 2011-2012 onwards omitted 2-<3 hours category,, -SLPG01,SLPG01_cat11_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_5,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_6,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_7,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_8,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_9,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_10,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_11,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,11,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_1,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,1,12,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_2,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,2,12,2-<3 hours,2-<3 hours,Hours,2,2-<3 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_3,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,3,12,3-<4 hours,3-<4 hours,Hours,3,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_4,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,4,12,4-<5 hours,4-<5 hours,Hours,4,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_5,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,5,12,5-<6 hours,5-<6 hours,Hours,5,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_6,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,6,12,6-<7 hours,6-<7 hours,Hours,6,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_7,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,7,12,7-<8 hours,7-<8 hours,Hours,7,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_8,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,8,12,8-<9 hours,8-<9 hours,Hours,8,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_9,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,9,12,9-<10 hours,9-<10 hours,Hours,9,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_10,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,10,12,10-<11 hours,10-<11 hours,Hours,10,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_11,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,11,12,11-<12 hours,11-<12 hours,Hours,11,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_12,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,12,12,>= 12 hours,>= 12 hours,Hours,12,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_NA::a,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::a,12,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,12,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,12,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_1,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,1,11,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,,Possible mistake with <2 hours -SLPG01_B,SLPG01_B_cat11_2,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_3,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_4,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_5,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_6,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_7,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_8,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_9,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_10,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_11,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_NA::a,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_NA::a,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_B,SLPG01_B_cat11_NA::b,cat,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01],ICES specific,cat,NA::b,11,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_1,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_005",ICES specific,cat,1,12,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_2,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_006",ICES specific,cat,2,12,2-<3 hours,2-<3 hours,Hours,2,2-<3 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_3,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_007",ICES specific,cat,3,12,3-<4 hours,3-<4 hours,Hours,3,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_4,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_008",ICES specific,cat,4,12,4-<5 hours,4-<5 hours,Hours,4,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_5,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_009",ICES specific,cat,5,12,5-<6 hours,5-<6 hours,Hours,5,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_6,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_010",ICES specific,cat,6,12,6-<7 hours,6-<7 hours,Hours,6,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_7,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_011",ICES specific,cat,7,12,7-<8 hours,7-<8 hours,Hours,7,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_8,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_012",ICES specific,cat,8,12,8-<9 hours,8-<9 hours,Hours,8,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_9,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_013",ICES specific,cat,9,12,9-<10 hours,9-<10 hours,Hours,9,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_10,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_014",ICES specific,cat,10,12,10-<11 hours,10-<11 hours,Hours,10,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_11,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_015",ICES specific,cat,11,12,11-<12 hours,11-<12 hours,Hours,11,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_12,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_016",ICES specific,cat,12,12,>= 12 hours,>= 12 hours,Hours,12,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_NA::a,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_017",ICES specific,cat,NA::a,12,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_NA::a,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_018",ICES specific,cat,NA::b,12,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SPLG01_C,SPLG01_C_cat12_NA::b,cat,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_019",ICES specific,cat,NA::b,12,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,1,N/A,Hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,2.5,N/A,Hours,convereted hours (2-<3 hours),Hours,2,convereted hours (2-<3 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,3.5,N/A,Hours,converted hours (3-<4 hours),Hours,3,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,4.5,N/A,Hours,converted hours (4-<5 hours),Hours,4,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,5.5,N/A,Hours,converted hours (5-<6 hours),Hours,5,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,6.5,N/A,Hours,converted hours (6-<7 hours),Hours,6,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,7.5,N/A,Hours,converted hours (7-<8 hours),Hours,7,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,8.5,N/A,Hours,converted hours (8-<9 hours),Hours,8,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,9.5,N/A,Hours,converted hours (9-<10 hours),Hours,9,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,10.5,N/A,Hours,converted hours (10-<11 hours),Hours,10,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,11.5,N/A,Hours,converted hours (11-<12 hours),Hours,11,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,13,N/A,Hours,converted hours (>= 12 hours),Hours,12,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",,cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,1.5,N/A,<3 hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,3.5,N/A,3-<4 hours,converted hours (3-<4 hours),Hours,2,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,4.5,N/A,4-<5 hours,converted hours (4-<5 hours),Hours,3,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,5.5,N/A,5-<6 hours,converted hours (5-<6 hours),Hours,4,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,6.5,N/A,6-<7 hours,converted hours (6-<7 hours),Hours,5,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,7.5,N/A,7-<8 hours,converted hours (7-<8 hours),Hours,6,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,8.5,N/A,8-<9 hours,converted hours (8-<9 hours),Hours,7,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,9.5,N/A,9-<10 hours,converted hours (9-<10 hours),Hours,8,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,10.5,N/A,10-<11 hours,converted hours (10-<11 hours),Hours,9,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,11.5,N/A,11-<12 hours,converted hours (11-<12 hours),Hours,10,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,13,N/A,>= 12 hours,converted hours (>= 12 hours),Hours,11,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,, -SMK_005,SMK_005_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,1,3,Daily,Daily,N/A,1,Daily,Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,2,3,Occasionally,Occasionally,N/A,2,Occasionally,Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,3,3,Not at all,Not at all,N/A,3,Not at all,Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Type of smoker presently,Type of smoker presently,,, -SMK_005,SMK_005_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],,cat,NA::b,3,missing,missing,N/A,else,else,Type of smoker presently,Type of smoker presently,,, -SMK_030,SMK_030_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,1,2,yes,yes,N/A,1,Yes,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,2,2,no,no,N/A,2,No,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_030,SMK_030_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],,cat,NA::b,2,missing,missing,N/A,else,else,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),,, -SMK_01A,SMK_01A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,1,2,yes,yes,N/A,1,Yes,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,2,2,no,no,N/A,2,No,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,s100,"In lifetime, smoked 100 or more cigarettes",,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,copy,N/A,Cigarettes/day - occasional,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - occasional smoker,cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,cigdayo,# of cigarettes smoked daily - occasional smoker,,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,copy,N/A,# days smoked at least 1 cigarette,# days smoked at least 1 cigarette,days,"[0,31]",# days smoked at least 1 cigarette,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",ICES confirmed,cont,NA::b,N/A,missing,missing,days,else,else,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",,, -SMK_05D,SMK_05D_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,1,2,yes,Occasional smoker who previously smoked daily,N/A,1,Yes,evd,Ever smoked cigarettes daily - occasional smoker,2015 onward looks at occasional/former smokers,, -SMK_05D,SMK_05D_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,2,2,no,Occasional smoker never daily,N/A,2,No,evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_05D,SMK_05D_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",,cat,NA::b,2,missing,missing,N/A,else,else,evd,Ever smoked cigarettes daily - occasional smoker,,, -SMK_06A_A,SMK_06A_A_cat4_1,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_2,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_3,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_4,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_NA::a,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - never daily,,, -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,4,missing,missing,years,else,else,stpn,When did you stop smoking daily - never daily,,, -SMK_06A_B,SMK_06A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,2,4,1 to 2 years,1 year to less than 2 years ago,years,2,1 year to < 2 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,3,4,2 to 3 years,2 years to less than 3 years ago,years,3,2 years to < 3 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,4,4,>= 3 years,3 or more years ago,years,4,3 or more years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional,,, -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,4,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,1.5,N/A,stpn,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,4,N/A,stpn,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,6,N/A,stpn,converted age - More than 5 years ago,years,4,More than 5 years ago,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,,cat,NA::b,N/A,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,1.5,N/A,stpn,converted age - 1 year to less than 2 years ago,years,2,1 year to < 2 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,2.5,N/A,stpn,converted age - 2 years to less than 3 years ago,years,3,2 years to < 3 years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,4,N/A,stpn,converted age - 3 or more years ago,years,4,3 or more years,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional,,, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",,cat,NA::b,N/A,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional,,, -SMK_09A_A,SMK_09A_A_cat4_1,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_2,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_3,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_4,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_NA::a,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,"cchs2001_p, cchs2001_i","cchs2001_p::SMKA_09A, cchs2001_i::SMKA_09A",ICES confirmed,cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,1,4,<1 year,Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,2,4,1 to <2 years,1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2020","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,3,4,2 to <3 years,2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2021","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,4,4,>= 3 years,3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2022","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2023","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2024","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",ICES confirmed,cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,1.5,N/A,stpo,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,4,N/A,stpo,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,6,N/A,stpo,converted age - More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,,cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,1.5,N/A,stpo,converted age - 1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,2.5,N/A,stpo,converted age - 2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,4,N/A,stpo,converted age - 3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily,,, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",,cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,copy,N/A,Cigarettes/day - daily,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - daily smoker,cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,cigdayd,# of cigarettes smoked daily - daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,copy,N/A,Cigarettes/day - former daily,Cigarettes/day - former daily,cigarettes,"[1,99]",# of cigarettes smoke each day - former daily,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,,, -SMKDSTY_A,SMKDSTY_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,1,6,Daily,Daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,2,6,Occasional (former daily),Former daily current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,3,6,Always occasional,Never daily current occasional smoker,N/A,3,Always occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,4,6,Former daily,Former daily current nonsmoker,N/A,4,Former daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,5,Former occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,6,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6N/A_Func::SMKDSTY_fun,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,Func::SMKDSTY_fun,N/A,N/A,N/A,N/A,N/A,N/A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,1,6,Daily,Daily smoker,N/A,N/A,Daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,2,6,Occasional (former daily),Former daily current occasional smoker,N/A,N/A,Occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,3,6,Always occasional,Never daily current occasional smoker,N/A,N/A,Always occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,4,6,Former daily,Former daily current nonsmoker,N/A,N/A,Former daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,N/A,Former occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,6,6,Never smoked,Never smoked,N/A,N/A,Never smoked,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",,N/A,NA::b,6,missing,missing,N/A,N/A,missing,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,1,6,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,2,6,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,3,6,Former daily,Former daily smoker (non-smoker now),N/A,3,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,4,6,Former occasional,Former occasional (non-smoker now),N/A,4,Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,5,6,Experimental,"Experimental smoker (at least 1 cig, non-smoker now)",N/A,5,Experimental,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)",, -SMKDSTY_B,SMKDSTY_B_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",,cat,NA::b,6,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,1,3,Current,Current smoker,N/A,"[1,3]",Daily (1); Occasional (2); Always occasional (3),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,2,3,Former,Former smoker,N/A,"[4,5]",Former daily(4); Former occasional (5),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",,cat,NA::b,3,missing,missing,N/A,else,else,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,1,3,Current,Current smoker,N/A,"[1,2]",Daily (1); Occasional (2),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,2,3,Former,Former smoker,N/A,"[3,5]",Former daily (3); Former occasional (4); Experimental (5),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",,cat,NA::b,3,missing,missing,N/A,else,else,Smoking status,"Type of smoker: current, former, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,2,5,Occasional,Current occasional smoker,N/A,"[2,3]",Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never","SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category",, -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,3,5,Former daily,Former daily smoker,N/A,4,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,4,5,Former occasional,Former occasional,N/A,5,Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]",,cat,NA::b,5,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,2,5,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,3,5,Former daily,Former daily smoker,N/A,3,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,4,5,Former occasional,Former occasional,N/A,"[4,5]",Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never","SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category",, -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2015_2016_i::SMKDVSTY, cchs2017_2018_i::SMKDVSTY",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",,, -SMKG01C_A,SMKG01C_A_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,3,10,15 To 19 Years,age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C",ICES altered,cat,NA::b,10,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,3,10,15 To 19 Years,age smoked first whole cigarette (18 to 19),years,"[15,20)",15 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette,,, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",ICES altered,cont,NA::b,10,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,11,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,"[15,18)",15 To 17 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,"[18,20)",18 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette,,, -SMKG01C_B,SMKG01C_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],,cat,NA::b,11,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,17,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,16,N/A,agec1,converted categorical age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,18.5,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",,cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,copy,N/A,agec1,agec1,years,"[5,80]",agec1,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette,,, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMK_01C]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette,,, -SMKG040,SMKG040_cat11_1,cat,,[SMKG040],,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_7,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_8,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_9,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_10,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_11,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,11,11,50 Years or more,age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigdfd,Age started to smoke daily - daily/former daily smoker,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,11,missing,missing,years,else,else,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,N/A,Func::SMKG040_fun,N/A,N/A,N/A,years,N/A,N/A,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,N/A,NA::b,N/A,missing,missing,years,N/A,N/A,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,8,N/A,agecigdfd,converted categorical age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,13,N/A,agecigdfd,converted categorical age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,16,N/A,agecigdfd,converted categorical age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,18.5,N/A,agecigdfd,converted categorical age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,22,N/A,agecigdfd,converted categorical age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,27,N/A,agecigdfd,converted categorical age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,32,N/A,agecigdfd,converted categorical age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,37,N/A,agecigdfd,converted categorical age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,42,N/A,agecigdfd,converted categorical age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,47,N/A,agecigdfd,converted categorical age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,55,N/A,agecigdfd,converted categorical age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigdfd,Age started to smoke daily - daily/former daily smoker,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,N/A,missing,missing,years,else,else,agecigdfd,Age started to smoke daily - daily/former daily smoker,,, -SMKG06C,SMKG06C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::b,3,missing,missing,years,else,else,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,NA::a,3,not applicable,not applicable,years,996,not applicable,stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],,cat,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),stpny,Years since stopped smoking daily - never daily,,, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",A,,cat,NA::b,3,missing,missing,years,else,else,stpny,Years since stopped smoking daily - never daily,,, -SMKG09C,SMKG09C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpdy,Years since stopped smoking daily - former daily,Don't know (7) and refusal (8) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",,cat,NA::b,3,missing,missing,years,else,else,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,NA::a,3,not applicable,not applicable,years,996,not applicable,stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),stpdy,Years since stopped smoking daily - former daily,,, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMK_09C]",ICES altered,cat,NA::b,3,missing,missing,years,else,else,stpdy,Years since stopped smoking daily - former daily,,, -SMKG203_A,SMKG203_A_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203",ICES altered,cat,NA::b,10,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,84]",50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",ICES altered,cont,NA::b,10,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,"[15,18)",15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,"[18,20)",18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,"[50,84]",50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],,cat,NA::b,11,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203 ",ICES altered,cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,Func::SMKG203_fun,N/A,N/A,N/A,N/A,N/A,N/A,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_i, cchs2017_2018_i","DerivedVar::[SMK_005, SMKG040, SMK_040]",,N/A,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,N/A,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,N/A,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,N/A,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,N/A,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,N/A,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,N/A,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,N/A,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,N/A,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,N/A,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,N/A,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,N/A,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",,N/A,NA::b,N/A,missing,missing,years,N/A,missing,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,copy,N/A,agecigd,agecigd,years,"[5,84]",agecigd,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i , cchs2015_2016_i, cchs2017_2018_i"," cchs2003_i::SMKC_203 , cchs2005_i::SMKE_203, cchs2015_2016_i::SMK_040, cchs2017_2018_i::SMK_040, [SMK_203]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G),,, -SMKG207_A,SMKG207_A_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2001_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207",ICES altered,cat,NA::b,10,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,80]",50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,10,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,3,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,4,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,5,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,6,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,7,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,8,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,9,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,10,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,11,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,"[5,12)",5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,"[12,15)",12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,"[15,18)",15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,"[18,20)",18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,"[20,25)",20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,"[25,30)",25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,"[30,35)",30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,"[35,40)",35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,"[40,45)",40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,"[45,50)",45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,"[50,80]",50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],,cat,NA::b,11,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,copy,N/A,agecigd,agecigd,years,"[5,80]",agecigfd,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,Func::SMKG207_fun,N/A,N/A,N/A,N/A,N/A,N/A,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,N/A,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,N/A,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,N/A,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,N/A,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,N/A,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,N/A,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,N/A,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,N/A,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,N/A,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,N/A,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,N/A,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,agecigfd,Age started to smoke daily - former daily smoker,,, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",,N/A,NA::b,N/A,missing,missing,years,N/A,missing,agecigfd,Age started to smoke daily - former daily smoker,,, -smoke_simple,smoke_simple_catN/A_Func::smoke_simple_fun,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,Func::smoke_simple_fun,N/A,N/A,N/A,N/A,N/A,N/A,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,0,4,Non-smoker (never smoked),Non-smoker (never smoked),N/A,N/A,Non-smoker (never smoked),Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,1,4,Current smoker (daily and occasional),Current smoker (daily and occasional),N/A,N/A,Current smoker (daily and occasional),Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,2,4,Former daily smoker quit less than 5 years or former occasional smoker ,Former daily smoker quit less than 5 years or former occasional smoker ,N/A,N/A,Former daily smoker quit less than 5 years or former occasional smoker ,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,3,4,Former daily smoker quit >5 years,Former daily smoker quit >5 years,N/A,N/A,Former daily smoker quit >5 years,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,NA::a,4,not applicable,not applicable,N/A,N/A,not applicable,Simple smoking status,Simple smoking status,,, -smoke_simple,smoke_simple_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,NA::b,4,missing,missing,N/A,N/A,missing,Simple smoking status,Simple smoking status,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,"For CCHS cycles 2015-2018, question was not asked in proxy interview",, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,,, -SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",,N/A,Func::SPS_5_fun,N/A,N/A,N/A,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall,,, -SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",,N/A,NA::b,N/A,missing,missing,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall,,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,copy,N/A,# friends and relatives,Number of friends and relatives,N/A,"[0,99]",Number of friends and relatives,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],,cont,NA::b,N/A,missing,missing,N/A,else,else,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,,, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",,N/A,Func::time_quit_smoking_fun,N/A,N/A,N/A,Years,N/A,N/A,Time since quit,Time since quit smoking,Variable derived from various harmonized smoking variables,, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",,N/A,NA::a,N/A,not applicable,not applicable,Years,N/A,N/A,Time since quit,Time since quit smoking,,, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",,N/A,NA::b,N/A,missing,missing,Years,N/A,N/A,Time since quit,Time since quit smoking,,, -WTS_M,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]",,N/A,copy,N/A,N/A,N/A,N/A,"[1.07,71809.93]",N/A,Weight,Weights,,, -WTS_S,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[WTS_S],,N/A,copy,N/A,N/A,N/A,N/A,"[2.94,65198.17]",N/A,Weight - Share,,,, diff --git a/worksheets/cchs-master/variables.csv b/worksheets/cchs-master/variables.csv deleted file mode 100644 index 9f48823..0000000 --- a/worksheets/cchs-master/variables.csv +++ /dev/null @@ -1,357 +0,0 @@ -variable,label,labelLong,section,subject,variableType,units,ICES confirmation,databaseStart,variableStart,description -active_transport,Daily active transportation,Time spent - active transportation daily,Health behaviour,Exercise,Continuous,mins,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont], DerivedVar::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], DerivedVar::[PAYDVTTR, PAADVTRV]", -ADL_01,Help preparing meals,Needs help - preparing meals,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, cchs2001_i::RACA_6A, cchs2003_i::RACC_6A, cchs2005_i::RACE_6A, [ADL_01]", -ADL_01_A,Help preparing meals,Needs help - preparing meals,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02,Help appointments/errands,Needs help - getting to appointments/errands,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_i::RACA_6B, cchs2003_i::RACC_6B1, cchs2005_i::RACE_6B1, cchs2007_2008_i::RAC_6B1, [ADL_02]", -ADL_02_A,Help appointments/errands,Needs help - getting to appointments/errands,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03,Help housework,Needs help - doing housework,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_i::RACA_6C, cchs2003_i::RACC_6C, cchs2005_i::RACE_6C, cchs2007_2008_i::RAC_6C,[ADL_03]", -ADL_03_A,Help housework,Needs help - doing housework,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015], -ADL_04,Help personal care,Needs help - personal care,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_i::RACA_6E, cchs2003_i::RACC_6E, cchs2005_i::RACE_6E, cchs2007_2008_i::RAC_6E,[ADL_04]", -ADL_04_A,Help personal care,Needs help - personal care,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020], -ADL_05,Help move inside house,Needs help - moving about inside house,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_i::RACA_6F, cchs2003_i::RACC_6F, cchs2005_i::RACE_6F, cchs2007_2008_i::RAC_6F,[ADL_05]", -ADL_05_A,Help move inside house,Needs help - moving about inside house,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025], -ADL_06,Help personal finances,Needs help - looking after finances,Health status,ADL,Categorical,N/A,Yes,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_i::RACC_6G, cchs2005_i::RACE_6G, cchs2007_2008_i::RAC_6G, [ADL_06]", -ADL_06_A,Help personal finances,Needs help - looking after finances,Health status,ADL,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030], -ADL_07,Help heavy household chores,Needs help - heavy household chores,Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D", -ADL_der,Derived help tasks,Derived needs help with tasks,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]", -ADL_score_5,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]", -ADL_score_6,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06) to represent the number of tasks that an individual needs help with.",Health status,ADL,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]", -ADLF6R,Help tasks,Needs help with at least one task - (F),Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]", -ADM_RNO,Sequential record number,Sequential record number,N/A,N/A,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]", -ALC_005,Alcohol in lifetime,"In lifetime, ever drank alcohol?",Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]", -ALC_1,Alcohol past year,"Past year, have you drank alcohol",Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]", -ALCDTTM,Drinker type (last 12 months),Type of drinker (12 months),Health behaviour,Alcohol,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]", -ALCDTYP,Drinker type,Type of drinker - (D),Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]", -ALCDTYP_A,Former drinker,Type of drinker,Health behaviour,Alcohol,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, 2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::ALCADTYP, cchs2003_i::ALCCDTYP, cchs2005_i::ALCEDTYP, cchs2015_2016_i::ALCDVTTM, cchs2017_2018_i::ALCDVTTM, [ALCDTTM]", -ALW_1,Any alcohol past week,"Past week, had any alcohol",Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]", -ALW_2A1,# of drinks - Sunday,Number of drinks on Sunday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2001_i::ALCA_5A1, cchs2003_i::ALCC_5A1, cchs2005_i::ALCE_5A1, cchs2015_2016_i::ALW_010, cchs2017_2018_i::ALW_010 , [ALW_2A1]", -ALW_2A2,# of drinks - Monday,Number of drinks on Monday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2001_i::ALCA_5A2, cchs2003_i::ALCC_5A2, cchs2005_i::ALCE_5A2, cchs2015_2016_i::ALW_015, cchs2017_2018_i::ALW_015, [ALW_2A2]", -ALW_2A3,# of drinks - Tuesday,Number of drinks on Tuesday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2001_i::ALCA_5A3, cchs2003_i::ALCC_5A3, cchs2005_i::ALCE_5A3, cchs2015_2016_i::ALW_020, cchs2017_2018_i::ALW_020, [ALW_2A3]", -ALW_2A4,# of drinks - Wednesday,Number of drinks on Wednesday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2001_i::ALCA_5A4, cchs2003_i::ALCC_5A4, cchs2005_i::ALCE_5A4, cchs2015_2016_i::ALW_025, cchs2017_2018_i::ALW_025, [ALW_2A4]", -ALW_2A5,# of drinks - Thursday,Number of drinks on Thursday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2001_i::ALCA_5A5, cchs2003_i::ALCC_5A5, cchs2005_i::ALCE_5A5, cchs2015_2016_i::ALW_030, cchs2017_2018_i::ALW_030, [ALW_2A5]", -ALW_2A6,# of drinks - Friday,Number of drinks on Friday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2001_i::ALCA_5A6, cchs2003_i::ALCC_5A6, cchs2005_i::ALCE_5A6, cchs2015_2016_i::ALW_035, cchs2017_2018_i::ALW_035, [ALW_2A6]", -ALW_2A7,# of drinks - Saturday,Number of drinks on Saturday,Health behaviour,Alcohol,Continuous,drinks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2001_i::ALCA_5A7, cchs2003_i::ALCC_5A7, cchs2005_i::ALCE_5A7, cchs2015_2016_i::ALW_040, cchs2017_2018_i::ALW_040, [ALW_2A7]", -ALWDDLY,Average daily consumption,Average daily alcohol consumption,Health behaviour,Alcohol,Continuous,drinks/day,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]", -ALWDVLTR_der,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . -ALWDVSTR_der,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . -ALWDWKY,Drinks last week,Weekly consumption of alcohol,Health behaviour,Alcohol,Continuous,drinks/week,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2001_i::ALCADWKY, cchs2003_i::ALCCDWKY, cchs2005_i:: ALCEDWKY, cchs2015_2016_i::ALWDVWKY, cchs2017_2018_i::ALWDVWKY, [ALWDWKY]", -binge_drinker,Binge Drinker,Binge Drinker,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]", -CCC_031,Asthma,Do you have asthma?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]", -CCC_035,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]", -CCC_036,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]", -CCC_041,Fibromyalgia,Do you have Fibromyalgia?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]", -CCC_051,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]", -CCC_061,Back problems,Do you have back problems?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]", -CCC_071,Hypertension,Do you have high blood pressure?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2001_i::CCCA_071, cchs2003_i::CCCC_071, cchs2005_i::CCCE_071, cchs2015_2016_i::CCC_065, cchs2017_2018_i::CCC_065,[CCC_071]", -CCC_072,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]", -CCC_073,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]", -CCC_073A,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,Health status,Chronic condition,Categorical,N/A,,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A], -CCC_073B,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",Health status,Chronic condition,Categorical,N/A,,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B], -CCC_075,Blood cholesterol,Do you have high blood cholesterol or lipids?,Health status,Chronic condition,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075], -CCC_081,Migraine Headache,Do you have migraine headaches?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]", -CCC_091,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2001_i::CCCA_91B, cchs2003_i::CCCC_91B, cchs2005_i::CCCE_91F, cchs2007_2008_i::CCC_91F, cchs2015_2016_i::CCC_030, cchs2017_2018_i::CCC_030, [CCC_091]", -CCC_101,Diabetes,Do you have diabetes?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2001_i::CCCA_101, cchs2003_i::CCCC_101, cchs2005_i::CCCE_101, cchs2015_2016_i::CCC_095, cchs2017_2018_i::CCC_095,[CCC_101]", -CCC_102_A,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Categorical,years,,"cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCCG102, [CCC_102]", -CCC_102_B,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Categorical,years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2009_s::CCC_102, cchs2010_s::CCC_102, cchs2012_s::CCC_102, [CCCG102]", -CCC_102_cont,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Continuous,years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCCG102, cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2009_s::CCC_102, cchs2010_s::CCC_102, cchs2012_s::CCC_102, [CCCG102]", -CCC_105,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]", -CCC_106,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]", -CCC_10A,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]", -CCC_10B,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]", -CCC_10C,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]", -CCC_111,Epilepsy,Do you have epilepsy?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_i::CCCA_111, cchs2003_i::CCCC_111, cchs2005_i::CCCE_111", -CCC_121,Heart Disease,Do you have heart disease?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2001_i::CCCA_121, cchs2003_i::CCCC_121, cchs2005_i::CCCE_121, cchs2015_2016_i::CCC_085, cchs2017_2018_i::CCC_085,[CCC_121]", -CCC_131,Active Cancer,Do you have cancer?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]", -CCC_141,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]", -CCC_151,Stroke,Do you suffer from effects of stroke?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, ccsh2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2001_i::CCCA_151, cchs2003_i::CCCC_151, cchs2005_i::CCCE_151, cchs2015_2016_i::CCC_090, cchs2017_2018_i::CCC_090,[CCC_151]", -CCC_161,Urinary incontinence,Do you suffer from urinary incontinence?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]", -CCC_171,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]", -CCC_17A,Type of bowel disorder,What kind of bowel disease do you have?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]", -CCC_181,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,Health status,Chronic condition,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181], -CCC_251,Chronic fatigue,Do you have chronic fatigue syndrome?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]", -CCC_261,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]", -CCC_280,Mood disorder,Do you have a mood disorder?,Health status,Chronic condition,Categorical,N/A,Yes,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2003_i::CCCC_280, cchs2005_i::CCCE_280, cchs2015_2016_i::CCC_195, cchs2017_2018_i::CCC_195, [CCC_280]", -CCC_290,Anxiety Disorder,Do you have an anxiety disorder?,Health status,Chronic condition,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]", -CCC_31A,Cancer diagnosis,Have you ever been diagnosed with cancer?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]", -CCC_91A,Bronchitis,Do you have chronic bronchitis?,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]", -CCC_91E,Emphysema,Do you have emphysema?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E", -CCC_91F,COPD,Do you have COPD?,Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F", -COPD_Emph_der,COPD/Emphysema,COPD/Emphysema,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F], DerivedVar::[DHHGAGE_cont, CCC_091]", -DEPDVSEV,Depression scale - severity of depression,Depression scale - severity of depression,Health status,Chronic condition,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015. -DHH_AGE,Age,Age,Demographics,Age,Continuous,Years,Yes,"cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_AGE, cchs2003_i::DHHC_AGE, cchs2005_i::DHHE_AGE, [DHH_AGE]",Continuous age variable for shared files and ICES -DHH_OWN,Home ownership,Dwelling - owned by a member of hsld,Sociodemographics,Home ownership,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]", -DHH_SEX,Sex,Sex,Demographics,Sex,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_i::DHHA_SEX, cchs2003_i::DHHC_SEX, cchs2005_i::DHHE, [DHH_SEX]", -DHHGAGE_5,Age,Age (20-year age groups),Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]","5 age groups: <20, 20 to 39, 40 to 59, 60 to 79, 80+ years" -DHHGAGE_A,Age,Age,Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]", -DHHGAGE_B,Age,Age,Demographics,Age,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]", -DHHGAGE_C,Age,Categorical age,Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],Derived categorical age variable using DHHGAGE_cont -DHHGAGE_cont,Age,Converted categorical age,Demographics,Age,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",Continuous age variable -DHHGAGE_D,Age,Age (10-year age groups),Demographics,Age,Categorical,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]","8 age groups: 12 to 19, 20 to 29, 30 to 39, 40 to 49, 50 to 59, 60 to 69, 70 to 79, 80+ years" -DHHGHSZ,Household size,Household size,Sociodemographics,Household Characteristics,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, cchs2009_s::DHHDHSZ, cchs2010_s::DHHDHSZ, cchs2012_s::DHHDHSZ, [DHHGHSZ]", -DHHGMS,Marital status,Marital status - (G),Sociodemographics,Marital Status,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, cchs2009_s::DHH_MS, cchs2010_s::DHH_MS, cchs2012_s::DHH_MS, [DHHGMS]", -DHH_MS,Marital status,Marital status,Sociodemographics,Marital Status,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",Categorical Marital Status -DHH_MS_A,Marital status,Marital status,Sociodemographics,Marital Status,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::DHHA_MS, cchs2003_i::DHHC_MS, cchs2005_i::DHHE_MS, [DHH_MS]",Categorical Marital Status with DemPoRt specific categories -diet_score,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]","A derived diet variable based on daily consumption of ""fruit, salad, potatoes, carrots, other vegetables, and juice"". Two baseline points plus summation of total points for diet attributes with penalty for high potato intake, no carrot intake and high juice consumption (negative overall scores are recoded to 0, resulting in a range from 0 to 10)." -diet_score_cat3,Categorical diet score,Categorical diet score,Health behaviour,Diet,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],Derived categorical diet score using diet_score -DIS_10G,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]", -DIS_10H,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",Health status,Chronic condition,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]", -DPS_02,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02], -DPS_03,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03], -DPS_04,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04], -DPS_05,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05], -DPS_06,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06], -DPS_07,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07], -DPS_08A,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A], -DPS_08B,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B], -DPS_09,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09], -DPS_10,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10], -DPS_11,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11], -DPS_12,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12], -DPS_13,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",Health status,Chronic condition,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13], -DPS_14,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,Health status,Chronic condition,Continuous,weeks,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14], -DPSDMT,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]", -DPSDPP,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,Health status,Chronic condition,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]", -DPSDSF,Depression Scale - Short Form Score,Depression Scale - Short Form Score,Health status,Chronic condition,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]", -DPSDWK,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),Health status,Chronic condition,Continuous,weeks,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]", -EDUDR03,Highest education,Highest level/education - 3 categories,Sociodemographics,Education,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3, [EDUDR04]", -EDUDR04,Highest education,Highest level/education - 4 categories,Sociodemographics,Education,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_i::EDUADR04, cchs2003_i::EDUCDR04, cchs2005_i::EDUEDR04, cchs2015_2016_i::EHG2DVR3, cchs2017_2018_i::EHG2DVR3, [EDUDR04]", -energy_exp,Daily energy expenditure,Daily energy expenditure,Health behaviour,Exercise,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE], DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVDYS]", -FINF1,Food insecurity 12M,Some food insecurity in past 12 months,Sociodemographics,Food security,Categorical,N/A,,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1", -FLU_160,Ever had a flu shot,Have you ever had a flu shot?,Health care use,Vaccination,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]", -FLU_162,Last time had flu shot,When did you have your last flu shot?,Health care use,Vaccination,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]", -food_insecurity_der,Food insecurity 12M,Derived food insecurity,Sociodemographics,Food security,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FINAF1, cchs2003_p::FINCF1, [FSCEDHFS], cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]", -FSCDHFS,Food security,Household food security status - (D),Sociodemographics,Food security,Categorical,N/A,,cchs2005_p,[FSCEDHFS], -FSCDHFS2,HC food security,Household food security status - (HC),Sociodemographics,Food security,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]", -FVC_1A,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A], -FVC_1B,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B], -FVC_1C,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C], -FVC_1D,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D], -FVC_1E,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E], -FVC_2A,Eats fruit unit,Eats fruit - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A], -FVC_2B,Eats fruit daily,Eats fruit - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B], -FVC_2C,Eats fruit weekly,Eats fruit - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C], -FVC_2D,Eats fruit monthly,Eats fruit - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D], -FVC_2E,Eats fruit yearly,Eats fruit - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E], -FVC_3A,Eats green salad unit,Eats green salad - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A], -FVC_3B,Eats green salad daily,Eats green salad - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B], -FVC_3C,Eats green salad weekly,Eats green salad - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C], -FVC_3D,Eats green salad monthly,Eats green salad - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D], -FVC_3E,Eats green salad yearly,Eats green salad - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E], -FVC_4A,Eats potatoes unit,Eats potatoes - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A], -FVC_4B,Eats potatoes daily,Eats potatoes - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B], -FVC_4C,Eats potatoes weekly,Eats potatoes - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C], -FVC_4D,Eats potatoes monthly,Eats potatoes - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D], -FVC_4E,Eats potatoes yearly,Eats potatoes - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E], -FVC_5A,Eats carrots unit,Eats carrots - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A], -FVC_5B,Eats carrots daily,Eats carrots - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B], -FVC_5C,Eats carrots weekly,Eats carrots - no. of times/week ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C], -FVC_5D,Eats carrots monthly,Eats carrots - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D], -FVC_5E,Eats carrots yearly,Eats carrots - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E], -FVC_6A,Eats other vegetables unit,Eats other vegetables - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A], -FVC_6B,Eats other vegetables daily,Eats other vegetables - servings/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B], -FVC_6C,Eats other vegetables weekly,Eats other vegetables - servings/week,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C], -FVC_6D,Eats other vegetables monthly,Eats other vegetables - servings/month,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D], -FVC_6E,Eats other vegetables yearly,Eats other vegetables - servings/year,Health behaviour,Fruits/vegetables,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E], -FVCDCAR,Carrot consumption,Daily consumption - carrots (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]", -FVCDFRU,Fruit consumption,Daily consumption - fruit - (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]", -FVCDJUI,Juice consumption,Daily consumption - fruit juice (D),Health behaviour,Diet,Continuous,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_i::FVCADJUI, cchs2003_i::FVCCDJUI, cchs2005_i::FVCEDJUI, cchs2015_2016_i::FVCDVJUI, [FVCDJUI]", -FVCDPOT,Potato consumption,Daily consumption - potatoes (D),Health behaviour,Diet,Continuous,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_i::FVCADPOT, cchs2003_i::FVCCDPOT, cchs2005_i::FVCEDPOT, cchs2015_2016_i::FVCDVPOT, [FVCDPOT]", -FVCDSAL,Salad consumption,Daily consumption - green salad - (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]", -FVCDTOT,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Health behaviour,Diet,Continuous,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs20013_2014_i, cchs2015_2016_i","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_i::FVCADTOT, cchs2003_i::FVCCDTOT, cchs2005_i::FVCEDTOT, cchs2015_2016_i::FVCDVTOT,[FVCDTOT]", -FVCDVEG,Other veg consumption,Daily consumption other vegetables - (D),Health behaviour,Diet,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]", -GEN_01,Self-perceived health,Self-perceived health,Health status,Self-perceived health,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2001_i::GENA_i, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_005, cchs2017_2018_i::GEN_005, [GEN_01]", -GEN_02A,Life satisfaction_cat,Satisfaction with life,Health status,Satisfaction with life,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]", -GEN_02A2,Life satisfaction_cont,Satisfaction with life in general,Health status,Satisfaction with life,Continuous,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]", -GEN_02B,Self-perceived mental health,Self-perceived mental health,Health status,Mental health,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]", -GEN_07,Self-perceived life stress,Self-perceived life stress,Health status,Mental health,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, cchs2001_i::GENA_07, cchs2003_i::GENC_07, cchs2005_i::GENE_07, cchs2015_2016_i::GEN_020, cchs2017_2018_i:: GEN_020, [GEN_07]", -GEN_09,Self-perceived work stress,Self-perceived work stress,Health status,Mental health,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]", -GEN_10,Sense of belonging,Sense of belonging in the community,Health status,Mental health,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2001_i::GENA_01, cchs2003_i::GENC_01, cchs2005_i::GENE_01, cchs2015_2016_i::GEN_030, cchs2017_2018_i::GEN_030, [GEN_10]", -GEODPMF,Health Region - (G),Health Region - (G),Demographics,Health region,Categorical,N/A,,"cchs2013_2014_p, cchs2014_p",[GEODPMF], -GEOGPRV,Province,Province of residence of respondent (G),Demographics,Province,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]", -HCU_1AA,Has regular medical doctor,Do you have a regular medical doctor?,Health care use,Medical care,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]", -HUIDCOG,HUI Cognition,Cognition prob. - function code - (D),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]", -HUIDEMO,HUI Emotion,Emotional problems - function code - (D),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]", -HUIDHSI,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat10,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat20,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat50,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIGDEX,HUI Dexterity,"Dexterity trouble - function code (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, cchs2009_s::HUIDDEX, cchs2010_s::HUIDDEX, cchs2012_s::HUIDDEX, [HUIGDEX]", -HUIGHER,HUI Hearing,"Hearing problems - function code (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, cchs2009_s::HUIDHER, cchs2010_s::HUIDHER, cchs2012_s::HUIDHER, [HUIGHER]", -HUIGMOB,HUI Mobility,"Mobility trouble - function code (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, cchs2009_s::HUIDMOB, cchs2010_s::HUIDMOB, cchs2012_s::HUIDMOB, [HUIGMOB]", -HUIGSPE,HUI Speech,"Speech trouble - function code - (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, cchs2009_s::HUIDSPE, cchs2010_s::HUIDSPE, cchs2012_s::HUIDSPE, [HUIGSPE]", -HUIGVIS,HUI Vision,"Vision trouble - function code - (D, G)",Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, cchs2009_s::HUIDVIS, cchs2010_s::HUIDVIS, cchs2012_s::HUIDVIS, [HUIGVIS]", -HUI06,HUI Hearing ability - in a group without a hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_06, cchs2003_i::HUAC_06, [HUI_06]", -HUI07,HUI Hearing ability - in a group with a hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_07, cchs2003_i::HUIC_07, [HUI_07]", -HUI07A,HUI Hearing ability -able to hear,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i, cchs_2017_2018_i","cchs2001_i::HUIA_07A, cchs2003_i::HUIC_07A, cchs2017_2018_i::WDM_101, [HUI_07A]", -HUI08,HUI Hearing ability - able to hear in a quiet room without hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]", -HUI09,HUI Hearing ability - able to hear in a quiet room with hearing aid,Hearing ability ,Health status,Health utility index,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs_2009_2010_i, cchs2013_2014_i","cchs2001_i::HUIA_08, cchs2003_i::HUIC_08, [HUI_08]", -HUPDPAD,HUI Pain,Act. prevent/pain - function code - (D),Health status,Health utility index,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]", -HWTGBMI,BMI,"BMI / self-report - (D,G)",Health status,BMI,Continuous,kg/m2,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, cchs2001_i::HWTAGBMI, [HWTGBMI]", -HWTGBMI_der,Derived BMI,Derived Body Mass Index,Health status,BMI,Continuous,kg/m2,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]", -HWTGBMI_der_cat4,Categorical BMI,Categorical body mass index,Health status,BMI,Categorical,kg/m2,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],Derived categorical variable using HWTGBMI -HWTDBMI,BMI,"BMI / self-report - (D,G)",Health status,BMI,Categorical,kg/m2,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADBMI, cchs2003_i::HWTCDBMI, cchs2005_i::HWTEDBMI, cchs2015_2016_i::HWTDVBMI, cchs2017_2018_i::HWTDVBMI, [HWTDBMI]", -HWTGCOR,Adjusted BMI,Adjusted BMI,Health status,BMI,Continuous,kg/m2,,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR], -HWTGCOR_der,Derived adjusted BMI,Derived adjusted BMI,Health status,BMI,Continuous,kg/m2,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]", -HWTGHTM,Height,"Height (metres)/self-reported - (D,G)",Health status,Height,Continuous,meters,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT, cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, [HWTGHTM]", -HWTDHTM,Height,Height (metres)/self-reported - (D),Health status,Height,Continuous,meters,Yes,"cchs_2001_i, cchs_2003_i, cchs_2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADHTM, cchs_2003_i::HWTCDHTM, cchs_2005_i::HWTEDHTM, 2015_2016_i::HWTDVHTM, cchs2017_2018_i::HTWDVHTM, [HWTDHTM]", -HWTGWTK,Weight,"Weight - kilograms (D, G)",Health status,Weight,Continuous,kg,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, [HWTGWTK]", -HWTDWTK,Weight,Weight - kilograms (D),Health status,Weight,Continuous,kg,Yes,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, ccsh2015_2016_i, cchs2017_2018_i","cchs2001_i::HWTADWTK, cchs2003_i::HWTCDWTK, cchs2005_i::HWTEDWTK, cchs2015_2016_i::HWTDVWTK, cchs2017_2018_i::HWTDVWTK, [HWTDWTK]", -immigration_der,Immigration category,Immigration category,Sociodemographics,Migration,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]", -INCDRCA,Household income distribution,Household income distribution - (D),Sociodemographics,Income,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]", -INCDRPR,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),Sociodemographics,Income,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]", -INCDRRS,Household income distribution health region level,Hhld inc. distribution- hr level - (D),Sociodemographics,Income,Categorical,N/A,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]", -INCGHH_A,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2001_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, [INCDHH]", -INCGHH_B,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, cchs2003_p::INCCGHH, cchs2005_p::INCEGHH, [INCDHH]", -INCGHH_C,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, cchs2009_s::INCDHH, cchs2010_s::INCDHH, cchs2012_s::INCDHH, [INCGHH]", -INCGHH_D,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDHH], -INCGHH_E,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDHH], -INCGHH_F,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,cchs2012_s,[INCDHH], -INCGHH_cont,Household income,Total household income from all sources - continuous,Sociodemographics,Income,Continuous,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, cchs2003_p::INCCGHH, cchs2005_p::INCEGHH, cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, cchs2009_s::INCDHH, cchs2010_s::INCDHH, cchs2012_s::INCDHH, [INCGHH]", -INCGPER_A,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER, [INCDPER]", -INCGPER_B,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, cchs2009_s::INCDPER, cchs2010_s::INCDPER, cchs2012_s::INCDPER, [INCGPER]", -INCGPER_C,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER], -INCGPER_D,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER], -INCGPER_cont,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Continuous,$/year,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER, cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, cchs2009_s::INCDPER, cchs2010_s::INCDPER, cchs2012_s::INCDPER, [INCGPER]", -LBFA_31A,Occupation group,Main job or business,Sociodemographics,Occupation,Categorical,N/A,,cchs2001_p,[LBFA_31A], -LBFA_31A_a,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,,"cchs2001_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::LBFA_31A, cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, cchs2009_s::LBSDOCG, cchs2010_s::LBSDOCG, cchs2012_s::LBSDOCG, [LBSGSOC]","See Norwrouzi-Kia, et al. (2019) Int J Crit Illn Inj Sci. 2019 Jan-Mar; 9(1): 29:35. doi: 10.4103/IJCIIS.IJCIIS_43_18 and Nowrouzi-Kia, B., et al. (2018). Heart Disease and Occupational Risk Factors in the Canadian Population: An Exploratory Study Using the Canadian Community Health Survey."" Safety and Health at Work 9(2): 144-148. https://doi.org/10.1016/j.shaw.2017.07.008""" -LBFA_31A_b,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,,"cchs2001_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::LBFA_31A, cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, cchs2009_s::LBSDOCG, cchs2010_s::LBSDOCG, cchs2012_s::LBSDOCG, [LBSGSOC]","The exact same recoding as LBFA_31A_a except that the ""Other"" category in cchs2001_p was recoded to a new category ""Other"" rather than missing" -LBFA_31A_c,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG], -low_drink_score,Low risk drinking score,Low risk drinking score,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]","Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY." -low_drink_score1,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,Health behaviour,Alcohol,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]","Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY, ALC_005, ALC_1." -MAM_037,Currently pregnant,Currently pregnant,Sociodemographics,Pregnancy,Categorical,N/A,,"cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_i::MAMA_37, cchs2003_i::MAMC_037, cchs2005_i::037, cchs2015_2016_i::MAC_025, cchs2017_2018_i::MAC_025, [MAM_037]", -MED_1P,Sleeping pills,"In the past month, did you take sleeping pills",Health behaviour,Sleep,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]", -number_conditions,Number of conditions,Number of chronic conditions,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051], DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]", -PAA_045,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),Health behaviour,Exercise,Continuous,hours/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045], -PAA_050,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050], -PAA_075,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),Health behaviour,Exercise,Continuous,hours/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075], -PAA_080,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080], -PAADVDYS,Active days (18+ years old),Number of active days (18+ years old),Health behaviour,Exercise,Continuous,days,,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS], -PAADVTRV,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV], -PAADVVIG,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG], -PAC_4A,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Categorical,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A", -PAC_4A_cont,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Continuous,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A", -PAC_4B,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Categorical,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B", -PAC_4B_cont,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Continuous,hours/week,,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B", -PAC_7,Walk to work/school,Walked to work or school / last 3 mo.,Health behaviour,Exercise,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7], -PAC_7A,Number times walk work/school,No. of times/3 mo./walking work/school,Health behaviour,Exercise,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A], -PAC_7B,Time walk work/school,Time spent - walking to go work/school,Health behaviour,Exercise,Categorical,mins,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B], -PAC_8,Bike to work/school,Bicycled to work or school / last 3 mo.,Health behaviour,Exercise,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8], -PAC_8A,Number times bike work/school,No. of times/3 mo./bicycl. work/school,Health behaviour,Exercise,Continuous,times/3 mos.,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A], -PAC_8B,Time bike work/school,Time spent - biking to go work/school,Health behaviour,Exercise,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B], -PACDEE,Physical activity,Daily energy expenditure - (D),Health behaviour,Exercise,Continuous,METS,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]", -PACDEE_cat3,Categorical physical activity,Categorical daily energy expenditure,Health behaviour,Exercise,Categorical,METS,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]", -pack_years_cat,Categorical PackYears,Categorical smoking pack-years,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],Derived categorical variable using pack_years_der -pack_years_der,PackYears,Smoking pack-years,Health behaviour,Smoking,Continuous,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]", -PACFLEI,Leisure physical activites,Leisure physical activity,Health behaviour,Exercise,Categorical,N/A,Yes,"cchs2001_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_i::PACAFLEI, cchs2005_i::PACEFLEI, [PACFLEI]", -PAYDVADL,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL], -PAYDVDYS,Active days (12-17 years old),Number of active days (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS], -PAYDVTOA,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA], -PAYDVTTR,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR], -PAYDVVIG,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG], -pct_time_der,Percent time in Canada,Percentage of time in Canada,Sociodemographics,Migration,Continuous,%,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]", -pct_time_der_cat10,Categorical percent time in Canada,Categorical percentage of time in Canada,Sociodemographics,Migration,Categorical,%,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der], -RAC_1,Difficulty activities,Has difficulty with activities,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]", -RAC_2A,Reduction activities at home,Reduction - activities at home,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]", -RAC_2B,Reduction activities at school or work,Long-term cond. reduces act. - school or work,Health status,ADL,Categorical,N/A,,cchs2001_p,cchs2001_p::RACA_2B, -RAC_2B1,Reduction activities at school,Long-term cond. reduces act. - school,Health status,ADL,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]", -RAC_2B2,Reduction activities at work,Reduction kind/amount act. - at work,Health status,ADL,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]", -RAC_2C,Reduction other activities,Reduction - other activities,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]", -RACAG5,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,,cchs2001_p,cchs2001_p::RACAG5, -RACDIMP,Impact health problem,Impact of health problems,Health status,Health problems,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]", -RACDPAL,Particpation/activity limitation,Participation and activity limitation,Health status,ADL,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::[DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]], cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]", -RACG5,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCG5, cchs2005_p::RACEG5, cchs2009_s::RAC_5, cchs2010_s::RAC_5, cchs2012_s::RAC_5, [RACG5]", -RACG5_A,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5], -RAC_6D,Needs help - heavy housework,Needs help - heavy housework,Health status,Health status,Categorical,N/A,Yes,"cchs2001_i, cchs2003_i, cchs2005_i","cchs2001_i::RACA_6D, cchs2003_i::RACC_6D, cchs2005_i::RACE_6D", -resp_condition_der,Respiratory condition,Respiratory condition,Health status,Chronic condition,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031], DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031], DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]", -SDC_5A_1,Knowledge of official languages,Knowledge of official languages,Sociodemographics,Language,Categorical,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]", -SDCDFOLS,First official language spoken,First official language spoken,Sociodemographics,Language,Categorical,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]", -SDCFIMM,Immigrant status,Immigrant Status (D),Sociodemographics,Migration,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_i::SDCAFIMM, cchs2003_i::SDCCFIMM, cchs2005_i::SDCEFIMM, cchs2015_2016::SDCDVIMM, cchs2017_2018_i::SDCDVIMM, [SDCFIMM]", -SDCGCBG,Country of birth,Country of birth - (G),Sociodemographics,Migration,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, cchs2009_s::SDCGCB, cchs2010_s::SDCGCB, cchs2012_s::SDCGCB10, [SDCGCBG]", -SDCGCBG_A,Country of birth,Country of birth - (G),Sociodemographics,Migration,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]", -SDCGCGT,Ethnicity,"Cultural or racial origin - (D, G)",Sociodemographics,Ethnicity,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_i, cchs2005_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2001_i::SDCAGRAC, cchs2003_i::SDCCDRAC, cchs_2005_i:: SDCEGCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCGCGT]", -SDCGCGT_A,Ethnicity,"Cultural or racial origin - (D, G)",Sociodemographics,Ethnicity,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT], -SDCDGT_A,Ethnicity,Cultural or racial origin - (D),Sociodemographics,Ethnicity,Categorical,N/A,Yes,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i ","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ", -SDCDGT_B,Ethnicity,Cultural origin,Sociodemographics,Ethnicity,Categorical,N/A,Yes,"cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_i::SDCCDRAC, cchs2005_i::SDCEDCGT, cchs2015_2016_i::SDCDVCGT, cchs2017_2018_i::SDCDVCGT, [SDCDCGT] ", -SDCGLHM,Language(s) spoken at home,Language(s) spoken at home,Sociodemographics,Language,Categorical,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, cchs2009_s::SDCDLHM, cchs2010_s::SDCDLHM, cchs2012_s::SDCDLHM, [SDCGLHM]", -SDCGLHM_A,Language(s) spoken at home,Language(s) spoken at home,Sociodemographics,Language,Categorical,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM], -SDCGLNG,Languages - can converse in,Languages - can converse in,Sociodemographics,Language,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2009_s, cchs2010_s","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, cchs2009_s::SDCDLNG, cchs2010_s::SDCDLNG, [SDCGLNG]", -SDCGLNG_A,Languages - can converse in,Languages - can converse in,Sociodemographics,Language,Categorical,N/A,,"cchs2009_s, cchs2010_s",[SDCDLNG], -SDCGRES,Time in Canada,"Length/time in Canada since imm. (D, G)",Sociodemographics,Migration,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, cchs2009_s::SDCDRES, cchs2010_s::SDCDRES, cchs2012_s::SDCDRES, [SDCGRES]", -SDCGRES_A,Time in Canada,"Length/time in Canada since imm. (D, G)",Sociodemographics,Migration,Continuous,Years,,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES], -SLP_02,Trouble sleeping,Freq. - trouble sleeping,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2015_2016_i::SLP_010, [SLP_02]", -SLP_02_A,Trouble sleeping,Freq. - trouble sleeping,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2001_p, cchs2001_i",[GENA_04], -SLP_03,Sleep refreshing,Freq. - find sleep refreshing,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2015_2016_i::SLP_015, [SLP_03]", -SLP_03_A,Sleep refreshing,Freq. - find sleep refreshing,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2001_p, cchs2001_i",[GENA_05], -SLP_04,Difficulty awake,Freq. - diffficult to stay awake,Health behaviour,Sleep,Categorical,N/A,,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]", -SLP_04_A,Difficulty awake,Freq. - diffficult to stay awake,Health behaviour,Sleep,Categorical,N/A,,cchs2001_p,[GENA_06], -SLPG01,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]", -SLPG01_A,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01", -SLPG01_B,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2011_2012_i, cchs2013_2014_i",[SLPG01], -SLPG01_C,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,Yes,"cchs2001_i, cchs2015_2016_i","cchs2001_i::GENA_03, cchs2015_2016_i::SLP_009", -SLPG01_cont,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Continuous,N/A,,"cchs2001_p, cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01, cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]", -SMK_005,Type of smoker presently,Type of smoker presently,Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005], -SMK_01A,s100,"In lifetime, smoked 100 or more cigarettes",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]", -SMK_030,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030], -SMK_05B,cigdayo,# of cigarettes smoked daily - occasional smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]", -SMK_05C,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",Health behaviour,Smoking,Continuous,days,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]", -SMK_05D,evd,Ever smoked cigarettes daily - occasional smoker,Health behaviour,Smoking,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]", -SMK_06A_A,stpn,When did you stop smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,,cchs2001_p,cchs2001_p::SMKA_06A, -SMK_06A_B,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]", -SMK_06A_cont,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_06A, cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]", -SMK_09A_A,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,,cchs2001_p,cchs2001_p::SMKA_09A, -SMK_09A_B,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]", -SMK_09A_cont,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_09A, cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2001_i::SMKA_09A, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]", -SMK_204,cigdayd,# of cigarettes smoked daily - daily smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]", -SMK_208,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]", -SMKDSTY_A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)" -SMKDSTY_B,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY", -SMKDSTY_cat3,Smoking status,"Type of smoker: current, former, never",Health behaviour,Smoking,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]",Re-categorization of SMKDSTY to be used for smoking imputation -SMKDSTY_cat5,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2015_2016_p, cchs2017_2018, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]","Re-categorization of SMKDSTY to be used for smoking imputation. SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category" -SMKG01C_A,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C, cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]", -SMKG01C_B,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, [SMKG01C]", -SMKG01C_cont,agec1,Age smoked first cigarette,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMKG01C]", -SMKG040,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Categorical,Years,,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040], -SMKG040_cont,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKG203_cont, SMKG207_cont], [SMKG040]", -SMKG06C,stpny,Years since stopped smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, cchs2009_s::SMK_06C, cchs2010_s::SMK_06C, cchs2012_s::SMK_06C, [SMKG06C]", -SMKG09C,stpdy,Years since stopped smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2009_s::SMK_09C, cchs2010_s::SMK_09C, cchs2012_s::SMK_09C, cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMKG09C]", -SMKG203_A,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203, cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]", -SMKG203_B,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, [SMKG203]", -SMKG203_cont,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, cchs2001_i::SMKAG203, [SMKG203], DerivedVar::[SMK_005, SMKG040]", -SMKG207_A,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207, cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]", -SMKG207_B,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, [SMKG207]", -SMKG207_cont,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMKG207], DerivedVar::[SMK_030, SMKG040]", -smoke_simple,Simple smoking status,Simple smoking status,Health behaviour,Smoking,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]", -SPS_01,SPS-5 - people to depend on for help,Five-item social provision scale - people to depend on for help,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]", -SPS_02,SPS-5 - people who enjoy same social activities,Five-item social provision scale - people who enjoy same social activities,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]", -SPS_03,SPS-5 - close relationships,Five-item social provision scale - close relationships,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]", -SPS_04,SPS-5 - important decision discussion,Five-item social provision scale - important decision discussion,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]", -SPS_05,SPS-5 - competence and skill are recognized,Five-item social provision scale - competence and skill are recognized,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]", -SPS_06,SPS-5 - trustworthy person for advice,Five-item social provision scale - trustworthy person for advice,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]", -SPS_07,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - group with shared attitudes and beliefs,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]", -SPS_08,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - strong emotional bond with a least one person,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]", -SPS_09,SPS-5 - admired talents and abilities,Five-item social provision scale - admired talents and abilities,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]", -SPS_10,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]", -SPS5_der,SPS-5 - overall,Five-item social provision scale - overall,Health status,Chronic condition,Continuous,N/A,,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]", -SSA_01,MOS - # close friend and relatives,Medical Outcome Study - Social Support Survey - number of close friends and relatives,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01], -SSA_02,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - has someone to give help if confined to bed,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02], -SSA_03,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - has someone to listen,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03], -SSA_04,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - has someone to listen,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04], -SSA_05,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - has someone to take to doctor,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05], -SSA_06,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - has someone who shows love and affection,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06], -SSA_07,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - has someone to have a good time with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07], -SSA_08,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - has someone to give info to help understand a situation,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08], -SSA_09,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - has someone to confide in,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09], -SSA_10,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - has someone who gives hugs,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10], -SSA_11,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - has someone to get together with for relaxation,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11], -SSA_12,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - has someone to prepare meals,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12], -SSA_13,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - has someone to give advice,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13], -SSA_14,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - has someone to do things to get mind off things,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14], -SSA_15,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - has someone to help with daily chores if sick,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15], -SSA_16,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - has someone to share most private worries and fears with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16], -SSA_17,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - has someone to share most private worries and fears with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17], -SSA_18,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - has someone to do something enjoyable with,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18], -SSA_19,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - has someone who understands problems,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19], -SSA_20,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - has someone who loves and makes feel wanted,Health status,Chronic condition,Continuous,N/A,,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20], -time_quit_smoking,Time since quit,Time since quit smoking,Health behaviour,Smoking,Continuous,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMK_09A_B, SMKG09C]", -WTS_M,Weight,Weights,N/A,N/A,Continuous,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]", -WTS_S,Weight - Share,Weights - Share,N/A,N/A,Continuous,N/A,,"cchs2009_s, cchs2010_s, cchs2012_s",[WTS_S], \ No newline at end of file diff --git a/worksheets/cchsflow-original/variable_details.RData b/worksheets/cchsflow-original/variable_details.RData deleted file mode 100644 index d0d4115..0000000 Binary files a/worksheets/cchsflow-original/variable_details.RData and /dev/null differ diff --git a/worksheets/cchsflow-original/variable_details.csv b/worksheets/cchsflow-original/variable_details.csv deleted file mode 100644 index 5e2e963..0000000 --- a/worksheets/cchsflow-original/variable_details.csv +++ /dev/null @@ -1,3267 +0,0 @@ -variable,dummyVariable,typeEnd,databaseStart,variableStart,typeStart,recEnd,numValidCat,catLabel,catLabelLong,units,recStart,catStartLabel,variableStartShortLabel,variableStartLabel,notes -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","DerivedVar::[PAC_4A_cont, PAC_4B_cont]",N/A,Func::active_transport1_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily, -active_transport,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont]",N/A,Func::active_transport2_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily, -active_transport,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[PAYDVTTR, PAADVTRV]",N/A,Func::active_transport3_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont, PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont, PAYDVTTR, PAADVTRV]",N/A,NA::a,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily, -active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont, PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont, PAYDVTTR, PAADVTRV]",N/A,NA::b,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily, -ADL_01,ADL_01_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005,[ADL_01]",cat,1,2,Yes,Yes,N/A,1,Yes,Help preparing meals,Needs help - preparing meals, -ADL_01,ADL_01_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,2,2,No,No,N/A,2,No,Help preparing meals,Needs help - preparing meals, -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals, -ADL_01,ADL_01_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_01,ADL_01_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,2,2,No,No,N/A,"[1,2]",No,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals, -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals, -ADL_01_A,ADL_01_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_01_A,ADL_01_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help preparing meals,Needs help - preparing meals, -ADL_01_A,ADL_01_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help preparing meals,Needs help - preparing meals, -ADL_01_A,ADL_01_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help preparing meals,Needs help - preparing meals, -ADL_01_A,ADL_01_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals, -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals, -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,NA::b,4,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals, -ADL_02,ADL_02_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,1,2,Yes,Yes,N/A,1,Yes,Help appointments/errands,Needs help - getting to appointments/errands,"In the 2001 CCHS, respondents were asked, ""Because of any condition or health problem, do you need the help of another person in shopping for groceries or other necessities?""" -ADL_02,ADL_02_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,2,2,No,No,N/A,2,No,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02,ADL_02_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02,ADL_02_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,2,2,No,No,N/A,"[1,2]",No,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02_A,ADL_02_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02_A,ADL_02_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02_A,ADL_02_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02_A,ADL_02_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02_A,ADL_02_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands, -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,NA::b,4,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands, -ADL_03,ADL_03_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,1,2,Yes,Yes,N/A,1,Yes,Help housework,Needs help - doing housework, -ADL_03,ADL_03_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,2,2,No,No,N/A,2,No,Help housework,Needs help - doing housework, -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework, -ADL_03,ADL_03_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03,ADL_03_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,2,2,No,No,N/A,"[1,2]",No,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework, -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework, -ADL_03_A,ADL_03_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help housework,Needs help - doing housework,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03_A,ADL_03_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help housework,Needs help - doing housework, -ADL_03_A,ADL_03_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help housework,Needs help - doing housework, -ADL_03_A,ADL_03_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help housework,Needs help - doing housework, -ADL_03_A,ADL_03_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework, -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework, -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,NA::b,4,missing,missing,N/A,else,else,Help housework,Needs help - doing housework, -ADL_04,ADL_04_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,1,2,Yes,Yes,N/A,1,Yes,Help personal care,Needs help - personal care, -ADL_04,ADL_04_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,2,2,No,No,N/A,2,No,Help personal care,Needs help - personal care, -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care, -ADL_04,ADL_04_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_04,ADL_04_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,2,2,No,No,N/A,"[1,2]",No,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care, -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care, -ADL_04_A,ADL_04_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal care,Needs help - personal care,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_04_A,ADL_04_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal care,Needs help - personal care, -ADL_04_A,ADL_04_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal care,Needs help - personal care, -ADL_04_A,ADL_04_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal care,Needs help - personal care, -ADL_04_A,ADL_04_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care, -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care, -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,NA::b,4,missing,missing,N/A,else,else,Help personal care,Needs help - personal care, -ADL_05,ADL_05_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,1,2,Yes,Yes,N/A,1,Yes,Help move inside house,Needs help - moving about inside house, -ADL_05,ADL_05_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,2,2,No,No,N/A,2,No,Help move inside house,Needs help - moving about inside house, -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house, -ADL_05,ADL_05_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_05,ADL_05_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,2,2,No,No,N/A,"[1,2]",No,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house, -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house, -ADL_05_A,ADL_05_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_05_A,ADL_05_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help move inside house,Needs help - moving about inside house, -ADL_05_A,ADL_05_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help move inside house,Needs help - moving about inside house, -ADL_05_A,ADL_05_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help move inside house,Needs help - moving about inside house, -ADL_05_A,ADL_05_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house, -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house, -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,NA::b,4,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house, -ADL_06,ADL_06_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,1,2,Yes,Yes,N/A,1,Yes,Help personal finances,Needs help - looking after finances, -ADL_06,ADL_06_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,2,2,No,No,N/A,2,No,Help personal finances,Needs help - looking after finances, -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances, -ADL_06,ADL_06_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_06,ADL_06_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,2,2,No,No,N/A,"[1,2]",No,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances, -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances, -ADL_06_A,ADL_06_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal finances,Needs help - looking after finances,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_06_A,ADL_06_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal finances,Needs help - looking after finances, -ADL_06_A,ADL_06_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal finances,Needs help - looking after finances, -ADL_06_A,ADL_06_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal finances,Needs help - looking after finances, -ADL_06_A,ADL_06_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances, -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances, -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,NA::b,4,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances, -ADL_07,ADL_07_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,1,2,Yes,Yes,N/A,1,Yes,Help heavy household chores,Needs help - heavy household chores, -ADL_07,ADL_07_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,2,2,No,No,N/A,2,No,Help heavy household chores,Needs help - heavy household chores, -ADL_07,ADL_07_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help heavy household chores,Needs help - heavy household chores, -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help heavy household chores,Needs help - heavy household chores, -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,NA::b,2,missing,missing,N/A,else,else,Help heavy household chores,Needs help - heavy household chores, -ADL_der,ADL_der_catN/A_Func::adl_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,Func::adl_fun,N/A,N/A,N/A,N/A,N/A,N/A,Derived help tasks,Derived needs help with tasks,"Derived variable based on ADL_01, ADL_02, ADL_03, ADL_04, ADL_05" -ADL_der,ADL_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,1,2,Needs help with tasks,Needs help with tasks,N/A,N/A,Needs help with tasks,Derived help tasks,Derived needs help with tasks, -ADL_der,ADL_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,2,2,Does not need help with tasks,Does need help with tasks,N/A,N/A,Does need help with tasks,Derived help tasks,Derived needs help with tasks, -ADL_der,ADL_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,NA::b,2,missing,missing,N/A,N/A,Does need help with tasks,Derived help tasks,Derived needs help with tasks, -ADL_score_5,ADL_score_5_catN/A_Func::adl_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,Func::adl_score_5_fun,N/A,N/A,N/A,N/A,N/A,N/A,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,0,6,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,Needs help with 0 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,1,6,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,Needs help with at least 1 task,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,2,6,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,Needs help with at least 2 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,3,6,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,Needs help with at least 3 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,4,6,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,Needs help with at least 4 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,5,6,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,Needs help with at least 5 tasks,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADL_score_5,ADL_score_5_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,NA::b,6,missing,missing,N/A,N/A,missing,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.", -ADLF6R,ADLF6R_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,1,2,Yes,Yes,N/A,1,Yes,Help tasks,Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,2,2,No,No,N/A,2,No,Help tasks,Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help tasks,Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help tasks,Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,NA::b,2,missing,missing,N/A,else,else,Help tasks,Needs help with at least one task - (F), -ADM_RNO,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]",cont,copy,N/A,Sequential record number,Sequential record number,N/A,"[1,999998]",Sequential record number,Sequential record number,Sequential record number, -ALC_005,ALC_005_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,1,2,yes,alcohol in the lifetime,N/A,1,"In lifetime, ever had a drink?",Alcohol in lifetime,"In lifetime, ever drank alcohol?", -ALC_005,ALC_005_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,2,2,no,no alcohol in lifetime,N/A,2,"In lifetime, ever had a drink?",Alcohol in lifetime,"In lifetime, ever drank alcohol?", -ALC_005,ALC_005_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Alcohol in lifetime,"In lifetime, ever drank alcohol?", -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol in lifetime,"In lifetime, ever drank alcohol?", -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,NA::b,2,missing,missing,N/A,else,else,Alcohol in lifetime,"In lifetime, ever drank alcohol?", -ALC_1,ALC_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,1,2,yes,alcohol in the past year,N/A,1,"Past year, have you drank alcohol",Alcohol past year,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,2,2,no,no alcohol in past year,N/A,2,"Past year, have you drank alcohol",Alcohol past year,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Alcohol past year,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol past year,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,NA::b,2,missing,missing,N/A,else,else,Alcohol past year,"Past year, have you drank alcohol", -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,1,3,Regular,Regular Drinker,N/A,1,Regular Drinker,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,No drink in the last 12 months,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,1,3,Regular,Regular Drinker,N/A,1,Regular drinker,Drinker type (last 12 months),Type of drinker (12 months),"In CCHS cycles 2001, 2003, and 2005, ALCDTTM was derived from ALCDTYP in which former and never drinkers were combined into ""No drink in the last 12 months""" -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,Former drinker,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,4,Never drank,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (12 months), -ALCDTYP,ALCDTYP_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,1,4,Regular,Regular drinker,N/A,1,Regular drinker,Drinker type,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,2,4,Occasional,Occasional drinker,N/A,2,Occasional drinker,Drinker type,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,3,4,Former,Former drinker,N/A,3,Former drinker,Drinker type,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,4,4,Never drank,Never drank,N/A,4,Never drank,Drinker type,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,NA::a,4,Not applicable,not applicable,N/A,6,not applicable,Drinker type,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type,Type of drinker - (D),Don't know (7) and refusal (8) not included in 2001 CCHS -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,NA::b,4,missing,missing,N/A,else,else,Drinker type,Type of drinker - (D), -ALW_1,ALW_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,1,2,yes,alcohol in the past week,N/A,1,"Past week, had any alcohol",Any alcohol past week,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,2,2,no,no alcohol in past week,N/A,2,"Past week, had any alcohol",Any alcohol past week,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,Any alcohol past week,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Any alcohol past week,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,NA::b,2,missing,missing,N/A,else,else,Any alcohol past week,"Past week, had any alcohol", -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,copy,N/A,# of drinks - Sunday,Number of drinks on Sunday,drinks,"[0,50]",Number of drinks on Sunday,# of drinks - Sunday,Number of drinks on Sunday, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Sunday,Number of drinks on Sunday, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Sunday,Number of drinks on Sunday, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Sunday,Number of drinks on Sunday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,copy,N/A,# of drinks - Monday,Number of drinks on Monday,drinks,"[0,50]",Number of drinks on Monday,# of drinks - Monday,Number of drinks on Monday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Monday,Number of drinks on Monday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Monday,Number of drinks on Monday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Monday,Number of drinks on Monday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,copy,N/A,# of drinks - Tuesday,Number of drinks on Tuesday,drinks,"[0,50]",Number of drinks on Tuesday,# of drinks - Tuesday,Number of drinks on Tuesday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Tuesday,Number of drinks on Tuesday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Tuesday,Number of drinks on Tuesday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Tuesday,Number of drinks on Tuesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,copy,N/A,# of drinks - Wednesday,Number of drinks on Wednesday,drinks,"[0,90]",Number of drinks on Wednesday,# of drinks - Wednesday,Number of drinks on Wednesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Wednesday,Number of drinks on Wednesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Wednesday,Number of drinks on Wednesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Wednesday,Number of drinks on Wednesday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,copy,N/A,# of drinks - Thursday,Number of drinks on Thursday,drinks,"[0,90]",Number of drinks on Thursday,# of drinks - Thursday,Number of drinks on Thursday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Thursday,Number of drinks on Thursday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Thursday,Number of drinks on Thursday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Thursday,Number of drinks on Thursday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,copy,N/A,# of drinks - Friday,Number of drinks on Friday,drinks,"[0,60]",Number of drinks on Friday,# of drinks - Friday,Number of drinks on Friday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Friday,Number of drinks on Friday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Friday,Number of drinks on Friday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Friday,Number of drinks on Friday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,copy,N/A,# of drinks - Saturday,Number of drinks on Saturday,drinks,"[0,50]",Number of drinks on Saturday,# of drinks - Saturday,Number of drinks on Saturday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Saturday,Number of drinks on Saturday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Saturday,Number of drinks on Saturday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Saturday,Number of drinks on Saturday, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,copy,N/A,drinks/day,drinks/day,drinks/day,"[0,40]",drinks per day,Average daily consumption,Average daily alcohol consumption,"2007-08, 09-10, 2010, 2012 cycles are categorical" -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,NA::a,N/A,not applicable,not applicable,drinks/day,996,Not applicable,Average daily consumption,Average daily alcohol consumption, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,NA::b,N/A,missing,missing,drinks/day,"[997,999]",don't know (997); refusal (998); not stated (9),Average daily consumption,Average daily alcohol consumption, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,NA::b,N/A,missing,missing,drinks/day,else,else,Average daily consumption,Average daily alcohol consumption, -ALWDVLTR_der,ALWDVLTR_der_catN/A_Func::low_drink_long_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,Func::low_drink_long_fun,N/A,N/A,N/A,N/A,N/A,N/A,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking, -ALWDVLTR_der,ALWDVLTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,1,2,Increased long term health risk,Increased long term health risk due to drinking,N/A,1,Increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7." -ALWDVLTR_der,ALWDVLTR_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,2,2,No increased long term health risk,No increased long term health risk due to drinking,N/A,2,No increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking, -ALWDVLTR_der,ALWDVLTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::b,2,missing,missing,N/A,N/A,missing,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking, -ALWDVSTR_der,ALWDVSTR_der_catN/A_Func::low_drink_short_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,Func::low_drink_short_fun,N/A,N/A,N/A,N/A,N/A,N/A,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7." -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,1,2,Increased short term health risk,Increased short term health risk due to drinking,N/A,1,Increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking, -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,2,2,No increased short term health risk,No increased short term health risk due to drinking,N/A,2,No increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking, -ALWDVSTR_der,ALWDVSTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::b,2,missing,missing,N/A,N/A,missing,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,copy,N/A,drinks/week,drinks/week,drinks/week,"[0,449]",drinks per week,Drinks last week,Weekly consumption of alcohol,shown as categorical variable in CCHS 2014 cycle -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,NA::a,N/A,not applicable,not applicable,drinks/week,996,not applicable (996),Drinks last week,Weekly consumption of alcohol, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,NA::b,N/A,missing,missing,drinks/week,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks last week,Weekly consumption of alcohol, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,NA::b,N/A,missing,missing,drinks/week,else,else,Drinks last week,Weekly consumption of alcohol, -binge_drinker,binge_drinker_catN/A_Func::binge_drinker_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,Func::binge_drinker_fun,N/A,N/A,N/A,N/A,N/A,N/A,Binge Drinker,Binge Drinker,"Derived from DHH_SEX, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7" -binge_drinker,binge_drinker_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,1,2,Binge drinker,Binge drinker,N/A,N/A,Binge drinker,Binge Drinker,Binge Drinker, -binge_drinker,binge_drinker_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,2,2,Regular drinker,Regular drinker,N/A,N/A,Regular drinker,Binge Drinker,Binge Drinker, -binge_drinker,binge_drinker_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::a,2,Not applicable,Not applicable,N/A,N/A,Not applicable,Binge Drinker,Binge Drinker, -binge_drinker,binge_drinker_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::b,2,missing,missing,N/A,N/A,missing,Binge Drinker,Binge Drinker, -CCC_031,CCC_031_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,1,2,Asthma,Asthma,N/A,1,Yes (Do you have asthma?),Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,2,2,No asthma,No asthma,N/A,2,No (Do you have asthma?),Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,NA::b,2,missing,missing,N/A,else,else,Asthma,Do you have asthma?, -CCC_035,CCC_035_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",cat,1,2,Asthma symptoms,Asthma symptoms,N/A,1,Yes,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?, -CCC_035,CCC_035_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",cat,2,2,No asthma symptoms/attacks,No asthma symptoms/attacks,N/A,2,No,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?, -CCC_035,CCC_035_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable ,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?, -CCC_035,CCC_035_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?, -CCC_035,CCC_035_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]",cat,NA::b,2,else,else,N/A,else,else,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?, -CCC_036,CCC_036_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",cat,1,2,Yes asthma medication,Yes asthma medication,N/A,1,Yes,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?", -CCC_036,CCC_036_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",cat,2,2,No asthma medication,No asthma medication,N/A,2,No,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?", -CCC_036,CCC_036_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?", -CCC_036,CCC_036_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?", -CCC_036,CCC_036_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]",cat,NA::b,2,else,else,N/A,else,else,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?", -CCC_041,CCC_041_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,1,2,Fibromyalgia,Fibromyalgia,N/A,1,Yes (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/14 -CCC_041,CCC_041_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,2,2,No Fibromyalgia,Fibromyalgia,N/A,2,No (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/15 -CCC_041,CCC_041_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/16 -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/17 -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,NA::b,2,missing,missing,N/A,else,else,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/18 -CCC_051,CCC_051_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,1,2,Arthritis/Rheumatism,Arthritis/Rheumatism,N/A,1,Yes (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,2,2,No Arthritis/Rheumatism,No Arthritis/Rheumatism,N/A,2,No (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,NA::b,2,missing,missing,N/A,else,else,Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_061,CCC_061_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,1,2,Back Problems,Back Problems,N/A,1,Yes (Do you have back problems?),Back problems,Do you have back problems?, -CCC_061,CCC_061_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,2,2,No Back Problems,No Back Problems,N/A,2,No (Do you have back problems?),Back problems,Do you have back problems?, -CCC_061,CCC_061_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Back problems,Do you have back problems?, -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Back problems,Do you have back problems?, -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,NA::b,2,missing,missing,N/A,else,else,Back problems,Do you have back problems?, -CCC_071,CCC_071_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,1,2,Hypertension,Hypertension,N/A,1,Yes (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,2,2,No Hypertension,No Hypertension,N/A,2,No (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,NA::b,2,missing,missing,N/A,else,else,Hypertension,Do you have high blood pressure?, -CCC_072,CCC_072_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",cat,1,2,Hypertension diagnosis,Hypertension diagnosis,N/A,1,Yes (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",cat,2,2,No hypertension diagnosis,No hypertension diagnosis,N/A,2,No (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]",cat,NA::b,2,missing,missing,N/A,else,else,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_073,CCC_073_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,1,2,Hypertension medication,Hypertension medication,N/A,1,Yes (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,2,2,No hypertension medication,No hypertension medication,N/A,2,No (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,NA::b,2,missing,missing,N/A,else,else,Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073A,CCC_073A_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],cat,1,2,Pregnant when diagnosed with high blood pressure,Pregnant when diagnosed with high blood pressure,N/A,1,Yes,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?, -CCC_073A,CCC_073A_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],cat,2,2,Not pregnant when diagnosed with high blood pressure,Not pregnant when diagnosed with high blood pressure,N/A,2,No,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?, -CCC_073A,CCC_073A_cat2_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?, -CCC_073A,CCC_073A_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?, -CCC_073A,CCC_073A_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A],cat,NA::b,2,else,else,N/A,else,else,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?, -CCC_073B,CCC_073B_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],cat,1,2,Yes high blood pressure other than during pregnancy,Yes high blood pressure other than during pregnancy,N/A,1,Yes,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?", -CCC_073B,CCC_073B_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],cat,2,2,No high blood pressure other than during pregnancy,No high blood pressure other than during pregnancy,N/A,2,No,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?", -CCC_073B,CCC_073B_cat2_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?", -CCC_073B,CCC_073B_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],cat,NA::b,2,else,else,N/A,else,else,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?", -CCC_073B,CCC_073B_cat2_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?", -CCC_075,CCC_075_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,1,2,High blood cholesterol,High blood cholesterol,N/A,1,High blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,Respondent are 18+ years old to answer this question in CCHS 2015-2018 -CCC_075,CCC_075_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,2,2,No high blood cholesterol,No high blood cholesterol,N/A,2,No high blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?, -CCC_075,CCC_075_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Blood cholesterol,Do you have high blood cholesterol or lipids?, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Blood cholesterol,Do you have high blood cholesterol or lipids?, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,NA::b,2,missing,missing,N/A,else,else,Blood cholesterol,Do you have high blood cholesterol or lipids?, -CCC_081,CCC_081_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,1,2,Migraine Headache,Migraine Headache,N/A,1,Yes (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?,"2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""" -CCC_081,CCC_081_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,2,2,No Migraine Headache,No Migraine Headache,N/A,2,No (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?, -CCC_081,CCC_081_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Migraine Headache,Do you have migraine headaches?, -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Migraine Headache,Do you have migraine headaches?, -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,NA::b,2,missing,missing,N/A,else,else,Migraine Headache,Do you have migraine headaches?, -CCC_091,CCC_091_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,1,2,COPD/emphysema/bronchitis,COPD/emphysema/bronchitis,N/A,1,"Yes (Do you have COPD(eg bronchitis,emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?", -CCC_091,CCC_091_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,2,2,No COPD/emphysema/bronchitis,No COPD/emphysema/bronchitis,N/A,2,"No (Do you have COPD(eg bronchitis,emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?", -CCC_091,CCC_091_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?", -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?", -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,NA::b,2,missing,missing,N/A,else,else,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?", -CCC_101,CCC_101_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,1,2,Diabetes,Diabetes,N/A,1,Yes (Do you have diabetes?),Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,2,2,No Diabetes,No Diabetes,N/A,2,No (Do you have diabetes?),Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,NA::b,2,missing,missing,N/A,else,else,Diabetes,Do you have diabetes?, -CCC_102_A,CCC_102_A_cat16_1,cat,cchs2003_p,[CCCCG102],cat,1,16,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_2,cat,cchs2003_p,[CCCCG102],cat,2,16,12 To 14 Years,12 To 14 Years,years,2,12 To 14 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_3,cat,cchs2003_p,[CCCCG102],cat,3,16,15 To 19 Years,15 To 19 Years,years,3,15 To 19 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_4,cat,cchs2003_p,[CCCCG102],cat,4,16,20 To 24 Years,20 To 24 Years,years,4,20 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_5,cat,cchs2003_p,[CCCCG102],cat,5,16,25 To 29 Years,25 To 29 Years,years,5,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_6,cat,cchs2003_p,[CCCCG102],cat,6,16,30 To 34 Years,30 To 34 Years,years,6,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_7,cat,cchs2003_p,[CCCCG102],cat,7,16,35 To 39 Years,35 To 39 Years,years,7,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_8,cat,cchs2003_p,[CCCCG102],cat,8,16,40 To 44 Years,40 To 44 Years,years,8,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_9,cat,cchs2003_p,[CCCCG102],cat,9,16,45 To 49 Years,45 To 49 Years,years,9,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_10,cat,cchs2003_p,[CCCCG102],cat,10,16,50 To 54 Years,50 To 54 Years,years,10,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_11,cat,cchs2003_p,[CCCCG102],cat,11,16,55 To 59 Years,55 To 59 Years,years,11,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_12,cat,cchs2003_p,[CCCCG102],cat,12,16,60 To 64 Years,60 To 64 Years,years,12,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_13,cat,cchs2003_p,[CCCCG102],cat,13,16,65 To 69 Years,65 To 69 Years,years,13,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_14,cat,cchs2003_p,[CCCCG102],cat,14,16,70 To 74 Years,70 To 74 Years,years,14,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_15,cat,cchs2003_p,[CCCCG102],cat,15,16,75 To 79 Years,75 To 79 Years,years,15,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_16,cat,cchs2003_p,[CCCCG102],cat,16,16,80 Years And Older,80 Years And Older,years,16,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_NA::a,cat,cchs2003_p,[CCCCG102],cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,cchs2003_p,[CCCCG102],cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,cchs2003_p,[CCCCG102],cat,NA::b,16,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,1,16,0 To 11 Years,0 To 11 Years,years,"[0,12)",0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,2,16,12 To 14 Years,12 To 14 Years,years,"[12,15)",12 To 14 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,3,16,15 To 19 Years,15 To 19 Years,years,"[15,20)",15 To 19 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,4,16,20 To 24 Years,20 To 24 Years,years,"[20,25)",20 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,5,16,25 To 29 Years,25 To 29 Years,years,"[25,30)",25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,6,16,30 To 34 Years,30 To 34 Years,years,"[30,35)",30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,7,16,35 To 39 Years,35 To 39 Years,years,"[35,40)",35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,8,16,40 To 44 Years,40 To 44 Years,years,"[40,45)",40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,9,16,45 To 49 Years,45 To 49 Years,years,"[45,50)",45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,10,16,50 To 54 Years,50 To 54 Years,years,"[50,55)",50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,11,16,55 To 59 Years,55 To 59 Years,years,"[55,60)",55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,12,16,60 To 64 Years,60 To 64 Years,years,"[60,65)",60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,13,16,65 To 69 Years,65 To 69 Years,years,"[65,70)",65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,14,16,70 To 74 Years,70 To 74 Years,years,"[70,75)",70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,15,16,75 To 79 Years,75 To 79 Years,years,"[75,80)",75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_16,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,16,16,80 Years And Older,80 Years And Older,years,"[80,96)",80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::a,16,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::b,16,missing,missing,years,"[997,999]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_A,CCC_102_A_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::b,16,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,1,15,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,2,15,12 To 17 Years,12 To 17 Years,years,2,12 To 17 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,3,15,18 To 24 Years,18 To 24 Years,years,3,18 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,4,15,25 To 29 Years,25 To 29 Years,years,4,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,5,15,30 To 34 Years,30 To 34 Years,years,5,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,6,15,35 To 39 Years,35 To 39 Years,years,6,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,7,15,40 To 44 Years,40 To 44 Years,years,7,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,8,15,45 To 49 Years,45 To 49 Years,years,8,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,9,15,50 To 54 Years,50 To 54 Years,years,9,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,10,15,55 To 59 Years,55 To 59 Years,years,10,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,11,15,60 To 64 Years,60 To 64 Years,years,11,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,12,15,65 To 69 Years,65 To 69 Years,years,12,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,13,15,70 To 74 Years,70 To 74 Years,years,13,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,14,15,75 To 79 Years,75 To 79 Years,years,14,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,15,15,80 Years And Older,80 Years And Older,years,15,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,NA::b,15,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,1,15,0 To 11 Years,0 To 11 Years,years,"[0,12)",0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,2,15,12 To 17 Years,12 To 17 Years,years,"[12,18)",12 To 17 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,3,15,18 To 24 Years,18 To 24 Years,years,"[18,25)",18 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,4,15,25 To 29 Years,25 To 29 Years,years,"[25,30)",25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,5,15,30 To 34 Years,30 To 34 Years,years,"[30,35)",30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,6,15,35 To 39 Years,35 To 39 Years,years,"[35,40)",35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,7,15,40 To 44 Years,40 To 44 Years,years,"[40,45)",40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,8,15,45 To 49 Years,45 To 49 Years,years,"[45,50)",45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,9,15,50 To 54 Years,50 To 54 Years,years,"[50,55)",50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,10,15,55 To 59 Years,55 To 59 Years,years,"[55,60)",55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,11,15,60 To 64 Years,60 To 64 Years,years,"[60,65)",60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,12,15,65 To 69 Years,65 To 69 Years,years,"[65,70)",65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,13,15,70 To 74 Years,70 To 74 Years,years,"[70,75)",70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,14,15,75 To 79 Years,75 To 79 Years,years,"[75,80)",75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,15,15,80 Years And Older,80 Years And Older,years,"[80,96)",80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::a,15,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::b,15,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_B,CCC_102_B_cat16_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::b,15,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,13,N/A,Age,converted categorical age (12 to 14),years,2,12 To 14 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,17.5,N/A,Age,converted categorical age (15 to 19),years,3,15 To 19 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,82,N/A,Age,converted categorical age (80 plus),years,16,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,cchs2003_p,[CCCCG102],cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,14.5,N/A,Age,converted categorical age (12 to 17),years,2,12 To 17 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,21,N/A,Age,converted categorical age (18 to 24),years,3,18 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,82,N/A,Age,converted categorical age (80 plus),years,15,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,copy,N/A,Age of diabetes diagnosis,Age of diabetes diagnosis,years,"[0,96]",Age of diabetes diagnosis,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_102_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_102],cont,NA::b,N/A,else,else,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?, -CCC_105,CCC_105_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",cat,1,2,Yes diabetes and currently taking insulin,Yes diabetes and currently taking insulin,N/A,1,Yes,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?, -CCC_105,CCC_105_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",cat,2,2,No diabetes and currently taking insulin,No diabetes and currently taking insulin,N/A,2,No,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?, -CCC_105,CCC_105_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?, -CCC_105,CCC_105_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?, -CCC_105,CCC_105_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]",cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?, -CCC_106,CCC_106_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",cat,1,2,Yes diabetes pills to control blood sugar,Yes diabetes pills to control blood sugar,N/A,1,Yes,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?", -CCC_106,CCC_106_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",cat,2,2,No diabetes pills to control blood sugar,No diabetes pills to control blood sugar,N/A,2,No,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?", -CCC_106,CCC_105_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?", -CCC_106,CCC_105_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?", -CCC_106,CCC_105_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]",cat,NA::b,2,else,else,N/A,else,else,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?", -CCC_10A,CCC_10A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",cat,1,2,Yes diabetes diagnosed when pregnant,Yes diabetes diagnosed when pregnant,N/A,1,Yes,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? , -CCC_10A,CCC_10A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",cat,2,2,No diabetes diagnosed when pregnant,No diabetes diagnosed when pregnant,N/A,2,No,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? , -CCC_10A,CCC_10A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? , -CCC_10A,CCC_10A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? , -CCC_10A,CCC_10A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]",cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? , -CCC_10B,CCC_10B_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",cat,1,2,Yes diabetes diagnosed other than pregnant,Yes diabetes diagnosed other than pregnant,N/A,1,Yes,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ", -CCC_10B,CCC_10B_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",cat,2,2,No diabetes diagnosed other than pregnant,No diabetes diagnosed other than pregnant,N/A,2,No,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ", -CCC_10B,CCC_10B_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ", -CCC_10B,CCC_10B_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ", -CCC_10B,CCC_10B_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]",cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ", -CCC_10C,CCC_10C_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,1,6,< 1 month,< 1 month,N/A,1,< 1 month,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,2,6,1 to <2 months,1 to <2 months,N/A,2,1 to <2 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,3,6,2 to <6 months,2 to <6 months,N/A,3,2 to <6 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,4,6,6 months - < 1 year,6 months - < 1 year,N/A,4,6 months - < 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,5,6,>= 1 year,>= 1 year,N/A,5,>= 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,6,6,never,never,N/A,6,never,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_10C,CCC_10C_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]",cat,NA::b,6,else,else,N/A,else,else,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?", -CCC_111,CCC_111_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,1,2,Epilepsy,Epilepsy,N/A,1,Yes (Do you have epilepsy?),Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,2,2,No Epilepsy,No Epilepsy,N/A,2,No (Do you have epilepsy?),Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,NA::b,2,missing,missing,N/A,else,else,Epilepsy,Do you have epilepsy?, -CCC_121,CCC_121_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,1,2,Heart Disease,Heart Disease,N/A,1,Yes (Do you have heart disease?),Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,2,2,No Heart Disease,No Heart Disease,N/A,2,No (Do you have heart disease?),Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,NA::b,2,missing,missing,N/A,else,else,Heart Disease,Do you have heart disease?, -CCC_131,CCC_131_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,1,2,Cancer,Cancer,N/A,1,Yes (Do you have cancer?),Active Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,2,2,No Cancer,No Cancer,N/A,2,No (Do you have cancer?),Active Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Active Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Active Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,NA::b,2,missing,missing,N/A,else,else,Active Cancer,Do you have cancer?, -CCC_141,CCC_141_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",cat,2,2,No stomach or intestinal ulcers,No stomach or intestinal ulcers,N/A,2,No,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?, -CCC_141,CCC_141_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",cat,1,2,Yes stomach or intestinal ulcers,Yes stomach or intestinal ulcers,N/A,1,Yes,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?, -CCC_141,CCC_141_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?, -CCC_141,CCC_141_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?, -CCC_141,CCC_141_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]",cat,NA::b,2,else,else,N/A,else,else,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?, -CCC_151,CCC_151_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,1,2,Stroke,Stroke,N/A,1,Yes (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,2,2,No Stroke,No Stroke,N/A,2,No (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,NA::b,2,missing,missing,N/A,else,else,Stroke,Do you suffer from effects of stroke?, -CCC_161,CCC_161_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",cat,1,2,Yes urinary incontinence,Yes urinary incontinence,N/A,1,Yes,Urinary incontinence,Do you suffer from urinary incontinence?, -CCC_161,CCC_161_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",cat,2,2,No urinary incontinence,No urinary incontinence,N/A,2,No,Urinary incontinence,Do you suffer from urinary incontinence?, -CCC_161,CCC_161_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Urinary incontinence,Do you suffer from urinary incontinence?, -CCC_161,CCC_161_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Urinary incontinence,Do you suffer from urinary incontinence?, -CCC_161,CCC_161_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]",cat,NA::b,2,else,else,N/A,else,else,Urinary incontinence,Do you suffer from urinary incontinence?, -CCC_171,CCC_171_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,1,2,Bowel disorder,Bowel disorder,N/A,1,Yes (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?, -CCC_171,CCC_171_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,2,2,No bowel disorder,No bowel disorder,N/A,2,No (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?, -CCC_171,CCC_171_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,NA::b,2,missing,missing,N/A,else,else,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?, -CCC_17A,CCC_17A_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,2,5,Ulcer colitis,Ulcer colitis,N/A,2,Ulcer colitis,Type of bowel disorder,What kind of bowel disease do you have?, -CCC_17A,CCC_17A_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,3,5,Irritable bowel,Irritable bowel,N/A,3,Irritable bowel,Type of bowel disorder,What kind of bowel disease do you have?, -CCC_17A,CCC_17A_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,4,5,Incontinence,Incontinence,N/A,4,Incontinence,Type of bowel disorder,What kind of bowel disease do you have?, -CCC_17A,CCC_17A_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,5,5,Other,Other,N/A,5,Other,Type of bowel disorder,What kind of bowel disease do you have?, -CCC_17A,CCC_17A_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Type of bowel disorder,What kind of bowel disease do you have?, -CCC_17A,CCC_17A_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Type of bowel disorder,What kind of bowel disease do you have?, -CCC_17A,CCC_17A_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,NA::b,5,else,else,N/A,else,else,Type of bowel disorder,What kind of bowel disease do you have?, -CCC_17A,CCC_17A_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]",cat,1,5,Crohn's disease,Crohn's disease,N/A,1,Crohn's disease,Type of bowel disorder,What kind of bowel disease do you have?, -CCC_181,CCC_181_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],cat,1,2,Yes alzheimer's disease or other dementia,Yes alzheimer's disease or other dementia,N/A,1,Yes,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?, -CCC_181,CCC_181_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],cat,2,2,No alzheimer's disease or other dementia,No alzheimer's disease or other dementia,N/A,2,No,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?, -CCC_181,CCC_181_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?, -CCC_181,CCC_181_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?, -CCC_181,CCC_181_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181],cat,NA::b,2,else,else,N/A,else,else,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?, -CCC_251,CCC_251_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,1,2,Chronic fatigue,Chronic fatigue,N/A,1,Yes (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,2,2,No chronic fatigue,No chronic fatigue,N/A,2,No (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Chronic fatigue,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Chronic fatigue,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,NA::b,2,missing,missing,N/A,else,else,Chronic fatigue,Do you have chronic fatigue syndrome?, -CCC_261,CCC_261_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",cat,1,2,Yes chemical sensitivities,Yes chemical sensitivities,N/A,1,Yes,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?, -CCC_261,CCC_261_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",cat,2,2,No chemical sensitivities,No chemical sensitivities,N/A,2,No,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?, -CCC_261,CCC_261_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?, -CCC_261,CCC_261_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?, -CCC_261,CCC_261_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]",cat,NA::b,2,else,else,N/A,else,else,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?, -CCC_280,CCC_280_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,1,2,Has a mood disorder,Has a mood disorder,N/A,1,Yes (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,2,2,Does not have a mood disorder,Does not have a mood disorder,N/A,2,No (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,NA::b,2,missing,missing,N/A,else,else,Mood disorder,Do you have a mood disorder?, -CCC_290,CCC_290_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,1,2,Has an anxiety disorder,Has an anxiety disorder,N/A,1,Yes (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,2,2,Does not have an anxiety disorder,Does not have an anxiety disorder,N/A,2,No (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,NA::b,2,missing,missing,N/A,else,else,Anxiety Disorder,Do you have an anxiety disorder?, -CCC_31A,CCC_31A_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,1,2,Cancer diagnosis,Cancer diagnosis,N/A,1,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,2,2,No cancer diagnosis,No cancer diagnosis,N/A,2,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,NA::a,2,not applicable,not applicable,N/A,6,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,NA::b,2,missing,missing,N/A,"[7,9]",Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,NA::b,2,missing,missing,N/A,else,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?, -CCC_91A,CCC_91A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,1,2,Bronchitis,Chronic bronchitis,N/A,1,Yes (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,2,2,No bronchitis,No chronic bronchitis,N/A,2,No (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,NA::b,2,missing,missing,N/A,else,else,Bronchitis,Do you have chronic bronchitis?, -CCC_91E,CCC_91E_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,1,2,Emphysema,Emphysema,N/A,1,Yes (Do you have emphysema?),Emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,2,2,No emphysema,No emphysema,N/A,2,No (Do you have emphysema?),Emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,NA::b,2,missing,missing,N/A,else,else,Emphysema,Do you have emphysema?, -CCC_91F,CCC_91F_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,1,2,COPD,COPD,N/A,1,Yes (Do you have COPD?),COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,2,2,No COPD,No COPD,N/A,2,No (Do you have COPD?),COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,NA::b,2,missing,missing,N/A,else,else,COPD,Do you have COPD?, -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun1,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F]",N/A,Func::COPD_Emph_der_fun1,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091]",N/A,Func::COPD_Emph_der_fun2,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables -COPD_Emph_der,COPD_Emph_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091]",N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema, -COPD_Emph_der,COPD_Emph_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema, -COPD_Emph_der,COPD_Emph_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema, -COPD_Emph_der,COPD_Emph_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema, -DEPDVSEV,DEPDVSEV_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,1,6,No depression,No depression,N/A,0,No depression,Depression scale - severity of depression,Depression scale - severity of depression,This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015. -DEPDVSEV,DEPDVSEV_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,2,6,Minimal depression,Minimal depression,N/A,1,Minimal depression,Depression scale - severity of depression,Depression scale - severity of depression, -DEPDVSEV,DEPDVSEV_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,3,6,Mild depression,Mild depression,N/A,2,Mild depression,Depression scale - severity of depression,Depression scale - severity of depression, -DEPDVSEV,DEPDVSEV_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,4,6,Moderate depression,Moderate depression,N/A,3,Moderate depression,Depression scale - severity of depression,Depression scale - severity of depression, -DEPDVSEV,DEPDVSEV_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,5,6,Moderately severe depression,Moderately severe depression,N/A,4,Moderately severe depression,Depression scale - severity of depression,Depression scale - severity of depression, -DEPDVSEV,DEPDVSEV_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,6,6,Severe depression,Severe depression,N/A,5,Severe depression,Depression scale - severity of depression,Depression scale - severity of depression, -DEPDVSEV,DEPDVSEV_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Depression scale - severity of depression,Depression scale - severity of depression, -DEPDVSEV,DEPDVSEV_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,NA::b,6,missing,missing,N/A,"[7,9]",not stated,Depression scale - severity of depression,Depression scale - severity of depression, -DEPDVSEV,DEPDVSEV_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,NA::b,6,missing,missing,N/A,else,else,Depression scale - severity of depression,Depression scale - severity of depression, -DHH_OWN,DHH_OWN_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,1,2,Yes,Yes,N/A,1,Yes,Home ownership,Dwelling - owned by a member of hsld,"Prior to 2009, CCHS restricted this variable to participants who were not living in an institution. In 2011, CCHS changed wording of responses to (1) owner and (2) renter" -DHH_OWN,DHH_OWN_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,2,2,No,No,N/A,2,No,Home ownership,Dwelling - owned by a member of hsld, -DHH_OWN,DHH_OWN_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Home ownership,Dwelling - owned by a member of hsld, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Home ownership,Dwelling - owned by a member of hsld, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,NA::b,2,missing,missing,N/A,else,else,Home ownership,Dwelling - owned by a member of hsld, -DHH_SEX,DHH_SEX_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,1,2,Male,Male,N/A,1,Male,Sex,Sex, -DHH_SEX,DHH_SEX_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,2,2,Female,Female,N/A,2,Female,Sex,Sex, -DHH_SEX,DHH_SEX_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sex,Sex, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sex,Sex, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,NA::b,2,missing,missing,N/A,else,else,Sex,Sex, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,1,5,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,2,5,age (20 to 39),age (20 to 39),years,"[4,7]",20 To 24 Years (4); 25 To 29 Years (5); 30 To 34 Years (6); 35 To 39 Years (7),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,3,5,age (40 to 59),age (40 to 59),years,"[8,11]",40 To 44 Years (8); 45 To 49 Years (9); 50 To 54 Years (10); 55 To 59 Years (11),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,4,5,age (60 to 79),age (60 to 79),years,"[12,15]",60 To 64 Years (12); 65 To 69 Years (13); 70 To 74 Years (14); 75 To 79 Years (15),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,5,5,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,1,5,age (12 to 19),age (12 to 19),years,"[12,20)",12 To 14 Years (1); 15 To 19 Years (2),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,2,5,age (20 to 39),age (20 to 39),years,"[20,",20 To 24 Years (3); 25 To 29 Years (4); 30 To 34 Years (5); 35 To 39 Years (6),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,3,5,age (40 to 59),age (40 to 59),years,"[7,10]",40 To 44 Years (7); 45 To 49 Years (8); 50 To 54 Years (9); 55 To 59 Years (10),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,4,5,age (60 to 79),age (60 to 79),years,"[11,14]",60 To 64 Years (11); 65 To 69 Years (12); 70 To 74 Years (13); 75 To 79 Years (14),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,5,5,age (80 plus),age (80 plus),years,15,80 Years or more (15),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,1,5,age (12 to 19),age (12 to 19),years,"[12,20)",12 to 19 years,Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,2,5,age (20 to 39),age (20 to 39),years,"[20,40)",20 to 39 years,Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,3,5,age (40 to 59),age (40 to 59),years,"[40,60)",40 to 59 years,Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,4,5,age (60 to 79),age (60 to 79),years,"[60,80)",60 to 79 years,Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,5,5,age (80 plus),age (80 plus),years,"[80, 102]",80 years or older,Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat8_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::a,5,not applicable,not applicable,years,96,not applicable,Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::b,5,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (20-year age groups), -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::b,5,else,else,years,else,else,Age,Age (20-year age groups), -DHHGAGE_A,DHHGAGE_A_cat15_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,1,15,age (12 to 14),age (12 to 14),years,1,12 to 14 years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,2,15,age (15 to 19),age (15 to 19),years,2,15 to 19 years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,3,15,age (20 to 24),age (20 to 24),years,3,20 To 24 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,4,15,age (25 to 29),age (25 to 29),years,4,25 To 29 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,5,15,age (30 to 34),age (30 to 34),years,5,30 To 34 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,6,15,age (35 to 39),age (35 to 39),years,6,35 To 39 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,7,15,age (40 to 44),age (40 to 44),years,7,40 To 44 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,8,15,age (45 to 49),age (45 to 49),years,8,45 To 49 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,9,15,age (50 to 54),age (50 to 54),years,9,50 To 54 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,10,15,age (55 to 59),age (55 to 59),years,10,55 To 59 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_11,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,11,15,age (60 to 64),age (60 to 64),years,11,60 To 64 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_12,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,12,15,age (65 to 69),age (65 to 69),years,12,65 To 69 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_13,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,13,15,age (70 to 74),age (70 to 74),years,13,70 To 74 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_14,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,14,15,age (75 to 79),age (75 to 79),years,14,75 To 79 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_15,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,15,15,age (80 plus),age (80 plus),years,15,80 Years or more,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,1,15,age (12 to 14),age (12 to 14),years,"[12,15)",12 to 14 years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,2,15,age (15 to 19),age (15 to 19),years,"[15,20)",15 to 19 years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,3,15,age (20 to 24),age (20 to 24),years,"[20,25)",20 To 24 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,4,15,age (25 to 29),age (25 to 29),years,"[25,30)",25 To 29 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,5,15,age (30 to 34),age (30 to 34),years,"[30,35)",30 To 34 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,6,15,age (35 to 39),age (35 to 39),years,"[35,40)",35 To 39 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,7,15,age (40 to 44),age (40 to 44),years,"[40,45)",40 To 44 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,8,15,age (45 to 49),age (45 to 49),years,"[45,50)",45 To 49 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,9,15,age (50 to 54),age (50 to 54),years,"[50,55)",50 To 54 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,10,15,age (55 to 59),age (55 to 59),years,"[55,60)",55 To 59 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,11,15,age (60 to 64),age (60 to 64),years,"[60,65)",60 To 64 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,12,15,age (65 to 69),age (65 to 69),years,"[65,70)",65 To 69 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,13,15,age (70 to 74),age (70 to 74),years,"[70,75)",70 To 74 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,14,15,age (75 to 79),age (75 to 79),years,"[75,80)",75 To 79 Years,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,15,15,age (80 plus),age (80 plus),years,"[80,102]",80 Years or more,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age,Age, -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,"Not applicable, don't know, refusal, not stated (96-99) were options only in CCHS 2003, but had zero responses" -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]",cat,NA::b,15,missing,missing,years,else,else,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,1,16,age (12 to 14),age (12 to 14),years,1,12 To 14 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,2,16,age (15 to 17),age (15 to 17),years,2,15 To 17 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,3,16,age (18 to 19),age (18 to 19),years,3,18 To 19 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,4,16,age (20 to 24),age (20 to 24),years,4,20 To 24 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,5,16,age (25 to 29),age (25 to 29),years,5,25 To 29 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,6,16,age (30 to 34),age (30 to 34),years,6,30 To 34 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,7,16,age (35 to 39),age (35 to 39),years,7,35 To 39 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,8,16,age (40 to 44),age (40 to 44),years,8,40 To 44 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,9,16,age (45 to 49),age (45 to 49),years,9,45 To 49 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,10,16,age (50 to 54),age (50 to 54),years,10,50 To 54 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,11,16,age (55 to 59),age (55 to 59),years,11,55 To 59 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,12,16,age (60 to 64),age (60 to 64),years,12,60 To 64 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,13,16,age (65 to 69),age (65 to 69),years,13,65 To 69 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,14,16,age (70 to 74),age (70 to 74),years,14,70 To 74 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,15,16,age (75 to 79),age (75 to 79),years,15,75 To 79 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_16,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,16,16,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,1,16,age (12 to 14),age (12 to 14),years,"[12,15)",12 To 14 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,2,16,age (15 to 17),age (15 to 17),years,"[15,18)",15 To 17 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,3,16,age (18 to 19),age (18 to 19),years,"[18,20)",18 To 19 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,4,16,age (20 to 24),age (20 to 24),years,"[20,25)",20 To 24 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,5,16,age (25 to 29),age (25 to 29),years,"[25,30)",25 To 29 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,6,16,age (30 to 34),age (30 to 34),years,"[30,35)",30 To 34 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,7,16,age (35 to 39),age (35 to 39),years,"[35,40)",35 To 39 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,8,16,age (40 to 44),age (40 to 44),years,"[40,45)",40 To 44 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,9,16,age (45 to 49),age (45 to 49),years,"[45,50)",45 To 49 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,10,16,age (50 to 54),age (50 to 54),years,"[50,55)",50 To 54 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,11,16,age (55 to 59),age (55 to 59),years,"[55,60)",55 To 59 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,12,16,age (60 to 64),age (60 to 64),years,"[60,65)",60 To 64 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,13,16,age (65 to 69),age (65 to 69),years,"[65,70)",65 To 69 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,14,16,age (70 to 74),age (70 to 74),years,"[70,75)",70 To 74 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_15,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,15,16,age (75 to 79),age (75 to 79),years,"[75,80)",75 To 79 Years,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_16,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,16,16,age (80 plus),age (80 plus),years,"[80,102]",80 Years or more,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age, -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::b,16,missing,missing,years,else,else,Age,Age, -DHHGAGE_C,DHHGAGE_C_catN/A_Func::age_cat_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,Func::age_cat_fun,N/A,N/A,N/A,years,N/A,N/A,Age,Categorical age,This variable is derived from DHHGAGE_cont -DHHGAGE_C,DHHGAGE_C_cat16_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,1,16,age (12 to 14),age (12 to 14),years,N/A,12 To 14 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,2,16,age (15 to 17),age (15 to 17),years,N/A,15 To 17 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,3,16,age (18 to 19),age (18 to 19),years,N/A,18 To 19 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,4,16,age (20 to 24),age (20 to 24),years,N/A,20 To 24 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,5,16,age (25 to 29),age (25 to 29),years,N/A,25 To 29 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,6,16,age (30 to 34),age (30 to 34),years,N/A,30 To 34 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,7,16,age (35 to 39),age (35 to 39),years,N/A,35 To 39 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,8,16,age (40 to 44),age (40 to 44),years,N/A,40 To 44 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,9,16,age (45 to 49),age (45 to 49),years,N/A,45 To 49 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,10,16,age (50 to 54),age (50 to 54),years,N/A,50 To 54 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,11,16,age (55 to 59),age (55 to 59),years,N/A,55 To 59 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,12,16,age (60 to 64),age (60 to 64),years,N/A,60 To 64 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,13,16,age (65 to 69),age (65 to 69),years,N/A,65 To 69 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,14,16,age (70 to 74),age (70 to 74),years,N/A,70 To 74 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,15,16,age (75 to 79),age (75 to 79),years,N/A,75 To 79 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,16,16,age (80 plus),age (80 plus),years,N/A,80 Years or more,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,NA::a,16,not applicable,not applicable,years,N/A,not applicable,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],N/A,NA::b,16,missing,missing,years,N/A,missing,Age,Categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 to 14 years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,17,N/A,Age,converted categorical age (15 to 19),years,2,15 to 19 years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,22,N/A,Age,converted categorical age (20 to 24),years,3,20 To 24 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,85,N/A,Age,converted categorical age (80 plus),years,15,80 Years or more,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 To 14 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,16,N/A,Age,converted categorical age (15 to 17),years,2,15 To 17 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,18.5,N/A,Age,converted categorical age (18 to 19),years,3,18 To 19 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,85,N/A,Age,converted categorical age (80 plus),years,16,80 Years or more,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,copy,N/A,Age,continuous age,years,"[12,102]",Age,Age,Converted categorical age,Share files have continuous age. -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Converted categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cont,NA::b,N/A,missing,missing,years,else,else,Age,Converted categorical age, -DHH_AGE,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,copy,N/A,Age,continuous age,years,"[12,102]",Age,Age,Continuous age,Share files have continuous age. -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Continuous age, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Continuous age, -DHH_AGE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cont,NA::b,N/A,missing,missing,years,else,else,Age,Continuous age, -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,1,8,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,2,8,age (20 to 29),age (20 to 29),years,"[4,5]",20 to 24 Years (4); 25 To 29 Years (5),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,3,8,age (30 to 39),age (30 to 39),years,"[6,7]",30 To 34 Years (6); 35 To 39 Years (7),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,4,8,age (40 to 49),age (40 to 49),years,"[8,9]",40 To 44 Years (8); 45 To 49 Years (9),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,5,8,age (50 to 59),age (50 to 59),years,"[10,11]",50 To 54 Years (10); 55 To 59 Years (11),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,6,8,age (60 to 69),age (60 to 69),years,"[12,13]",60 To 64 Years (12); 65 To 69 Years (13),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,7,8,age (70 to 79),age (70 to 79),years,"[14,15]",70 To 74 Years (14); 75 To 79 Years (15),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,8,8,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,1,8,age (12 to 19),age (12 to 19),years,"[1,2]",12 To 14 Years (1); 15 To 19 Years (2),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,2,8,age (20 to 29),age (20 to 29),years,"[3,4]",20 to 24 Years (3); 25 To 29 Years (4),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,3,8,age (30 to 39),age (30 to 39),years,"[5,6]",30 To 34 Years (5); 35 To 39 Years (6),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,4,8,age (40 to 49),age (40 to 49),years,"[7,8]",40 To 44 Years (7); 45 To 49 Years (8),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,5,8,age (50 to 59),age (50 to 59),years,"[9,10]",50 To 54 Years (9); 55 To 59 Years (10),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,6,8,age (60 to 69),age (60 to 69),years,"[11,12]",60 To 64 Years (11); 65 To 69 Years (12),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,7,8,age (70 to 79),age (70 to 79),years,"[13,14]",70 To 74 Years (13); 75 To 79 Years (14),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,8,8,age (80 plus),age (80 plus),years,15,80 plus Years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,1,8,age (12 to 19),age (12 to 19),years,"[12,20)",12 to 19 years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,2,8,age (20 to 29),age (20 to 29),years,"[20,30)",20 to 29 years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,3,8,age (30 to 39),age (30 to 39),years,"[30,40)",30 to 39 years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,4,8,age (40 to 49),age (40 to 49),years,"[40,50)",40 to 49 years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,5,8,age (50 to 59),age (50 to 59),years,"[50,60)",50 to 59 years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,6,8,age (60 to 69),age (60 to 69),years,"[60,70)",60 to 69 years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,7,8,age (70 to 79),age (70 to 79),years,"[70,80)",70 to 79 years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],cat,8,8,age (80 plus),age (80 plus),years,"[80,102]",80 plus years,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (10-year age groups), -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",cat,NA::b,8,else,else,years,else,else,Age,Age (10-year age groups), -DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,5,5,5+ persons,5 or more persons,N/A,5,5 or more persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,5,5,5+ persons,5 or more persons,N/A,"[5,16]",5 or more persons,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household size,Household size, -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHHDHSZ],cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size, -DHHGMS,DHHGMS_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,1,4,Married,Married,N/A,1,Married,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,3,Widow/separated/divorced,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,4,4,Single/Never mar.,Single,N/A,4,Single/never married,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,NA::b,4,missing,missing,N/A,else,else,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],cat,1,4,Married,Married,N/A,1,Married,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,"[3,5]",Widow (3)/separated (4)/divorced (5),Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],cat,4,4,Single/Never mar.,Single,N/A,6,Single/never married (6),Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_MS],cat,NA::b,4,missing,missing,N/A,else,else,Marital status,Marital status - (G), -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",N/A,Func::diet_score_fun,N/A,N/A,N/A,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice", -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",N/A,NA::b,N/A,missing,missing,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice", -diet_score_cat3,diet_score_cat3N/A_Func::diet_score_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],N/A,Func::diet_score_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],N/A,1,3,Poor diet,Poor diet,N/A,1,Poor diet,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],N/A,2,3,Fair diet,Fair diet,N/A,2,Fair diet,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],N/A,3,3,Adequate diet,Adequate diet,N/A,3,Adequate diet,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],N/A,NA::a,3,not applicable,not applicable,N/A,NA::a,not applicable,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],N/A,NA::b,3,missing,missing,N/A,NA::b,missing,Categorical diet score,Categorical diet score, -DIS_10G,DIS_10G_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10H,DIS_10H_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DPS_02,DPS_02_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],cat,1,2,Yes,Yes,N/A,1,Yes,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],cat,2,2,No,No,N/A,2,No,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02],cat,NA::b,2,missing,missing,N/A,else,else,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_03,DPS_03_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],cat,1,4,All day long,All day long,N/A,1,All day long,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],cat,2,4,Most of the day,Most of the day,N/A,2,Most of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],cat,3,4,About half of the day,About half of the day,N/A,3,About half of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],cat,4,4,Less than half of a day,Less than half of a day,N/A,4,Less than half of a day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03],cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_04,DPS_04_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],cat,1,3,Every day,Every day,N/A,1,Every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],cat,2,3,Almost every day,Almost every day,N/A,2,Almost every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04],cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_05,DPS_05_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],cat,2,2,No,No,N/A,2,No,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_06,DPS_06_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],cat,2,2,No,No,N/A,2,No,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_07,DPS_07_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],cat,1,4,Gained weight,Gained weight,N/A,1,Gained weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],cat,2,4,Lost weight,Lost weight,N/A,2,Lost weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],cat,3,4,Stayed about the same,Stayed about the same,N/A,3,Stayed about the same,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],cat,4,4,Was on a diet,Was on a diet,N/A,4,Was on a diet,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07],cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],cont,copy,N/A,Weight,Weight,N/A,"[1,90]",Weight,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (999.7); refusal (999.8); not stated (999.9),Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A],cont,NA::b,N/A,missing,missing,N/A,else,else,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08B,DPS_08B_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],cat,1,2,Pounds,Pounds,N/A,1,Pounds,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],cat,2,2,Kilograms,Kilograms,N/A,2,Kilograms,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],cat,NA::b,2,missing,missing,N/A,9,not stated,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_09,DPS_09_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_10,DPS_10_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],cat,1,3,Every night,Every night,N/A,1,Every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],cat,2,3,Nearly every night,Nearly every night,N/A,2,Nearly every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10],cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_11,DPS_11_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_12,DPS_12_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],cat,2,2,No,No,N/A,2,No,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_13,DPS_13_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],cat,2,2,No,No,N/A,2,No,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of week feel this way,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],cont,NA::b,N/A,missing,missing,weeks,"[97,99]",don't know (97); refusal (98); not stated (99),Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14],cont,NA::b,N/A,missing,missing,weeks,else,else,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPSDMT,DPSDMT_cat12_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,1,12,January,January,N/A,1,January,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,2,12,February,February,N/A,2,February,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,3,12,March,March,N/A,3,March,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,4,12,April,April,N/A,4,April,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,5,12,May,May,N/A,5,May,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,6,12,June,June,N/A,6,June,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,7,12,July,July,N/A,7,July,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,8,12,August,August,N/A,8,August,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,9,12,September,September,N/A,9,September,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,10,12,October,October,N/A,10,October,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,11,12,November,November,N/A,11,November,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,12,12,December,December,N/A,12,December,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,NA::a,12,not applicable,not applicable,N/A,96,not applicable,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,NA::b,12,missing,missing,N/A,99,not stated,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,NA::b,12,missing,missing,N/A,else,else,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,copy,N/A,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,N/A,"[0,0.90]",Predicted Probability,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,"Variable was documented as a categorical variable with categories 0, 0.05, 0.25, 0.50, 0.80, 0.90 across all cycles. See documentation for DPSDPP() for more details, or type ?DPSDPP in the console." -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,NA::a,N/A,not applicable,not applicable,N/A,9.96,not applicable,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,NA::b,N/A,missing,missing,N/A,9.99,not stated,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,copy,N/A,Depression Scale - Short Form Score,Depression Scale - Short Form Score,N/A,"[0,8]",Short Form Score,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,NA::b,N/A,missing,missing,N/A,99,not stated,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of weeks felt depressed,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,NA::b,N/A,missing,missing,weeks,99,not stated,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,NA::b,N/A,missing,missing,weeks,else,else,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -EDUDR03,EDUDR03_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,"[3,4]",Post-sec. grad,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,3,Post-sec. grad,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories, -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories,CCHS 2015-2018 does not have don't know (7) or refusal (8) -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[EHG2DVR3],cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories, -EDUDR04,EDUDR04_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,1,4,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 4 categories,Slight change in wording of categories from CCHS 2011 onwards -EDUDR04,EDUDR04_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,2,4,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 4 categories, -EDUDR04,EDUDR04_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,3,4,Some post-secondary education,Some post-secondary education,N/A,3,Other post-sec.,Highest education,Highest level/education - 4 categories, -EDUDR04,EDUDR04_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,4,4,Post-secondary graduate,Post-secondary graduate,N/A,4,Post-sec. grad,Highest education,Highest level/education - 4 categories, -EDUDR04,EDUDR04_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 4 categories, -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 4 categories,CCHS 2001 does not have don't know (7) or refusal (8) -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,4,missing,missing,N/A,else,else,Highest education,Highest level/education - 4 categories, -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",N/A,Func::energy_exp_fun,N/A,N/A,N/A,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,Used for all cycles. Derived from various physical activity measure for 18+ and 12-17 years old. -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",N/A,NA::b,N/A,missing,missing,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,copy,N/A,Daily energry expenditure,Daily energry expenditure,N/A,"[0,43.5]",Daily energy expenditure - (D),Daily energy expenditure,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::a,N/A,not applicable,not applicable,N/A,99.6,Not applicable,Daily energy expenditure,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,N/A,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Daily energy expenditure,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily energy expenditure,Daily energy expenditure, -FINF1,FINF1_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,1,2,Yes,Yes,N/A,1,Yes,Food insecurity 12M,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,2,2,No,No,N/A,2,No,Food insecurity 12M,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Some food insecurity in past 12 months, -FLU_160,FLU_160_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,1,2,Yes,Yes,N/A,1,Yes,Ever had a flu shot,Have you ever had a flu shot?,"In 2007, question was reworded to ""Have you ever had a seasonal flu shot?"" In 2015-2018, question was reworded to ""Have you ever had a seasonal flu shot, excluding the H1N1 flu shot?""" -FLU_160,FLU_160_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,2,2,No,No,N/A,2,No,Ever had a flu shot,Have you ever had a flu shot?, -FLU_160,FLU_160_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever had a flu shot,Have you ever had a flu shot?, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever had a flu shot,Have you ever had a flu shot?, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,NA::b,2,missing,missing,N/A,else,else,Ever had a flu shot,Have you ever had a flu shot?, -FLU_162,FLU_162_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,1,3,<1 year ago,<1 year ago,N/A,1,<1 year ago,Last time had flu shot,When did you have your last flu shot?,"In 2015-2018, question was reworded to ""When did you have your last seasonal flu shot?""" -FLU_162,FLU_162_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,2,3,1-<2 years ago,1-<2 years ago,N/A,2,1-<2 years ago,Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,3,3,2 years ago or more,2 years ago or more,N/A,3,2 years ago or more,Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,NA::b,3,missing,missing,N/A,else,else,Last time had flu shot,When did you have your last flu shot?, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,2,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,"This variable is derived from FINF1, FSCDHFS, FSCDHFS2 by dichotomizing food insecurity into 2 categories. See ?food_insecurity_der for more details" -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_1,cat,cchs2005_p,[FSCEDHFS],cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,3,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,cchs2005_p,[FSCEDHFS],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity, -FSCDHFS,FSCDHFS_cat4_0,cat,cchs2005_p,[FSCEDHFS],cat,0,4,Secure,Secure,N/A,0,Secure,Food security,Household food security status - (D),CCHS 2005 has different categories from other CCHS cycles so new variable created -FSCDHFS,FSCDHFS_cat4_1,cat,cchs2005_p,[FSCEDHFS],cat,1,4,Without hunger,Without hunger,N/A,1,Without hunger,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_2,cat,cchs2005_p,[FSCEDHFS],cat,2,4,W/mod. hunger,With moderate hunger,N/A,2,With moderate hunger,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_3,cat,cchs2005_p,[FSCEDHFS],cat,3,4,W/severe hunger,With severe hunger,N/A,3,With severe hunger,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_NA::a,cat,cchs2005_p,[FSCEDHFS],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,4,missing,missing,N/A,else,else,Food security,Household food security status - (D), -FSCDHFS2,FSCDHFS2_cat3_0,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,0,3,Food secure,Food secure,N/A,0,Food secure,HC food security,Household food security status - (HC), -FSCDHFS2,FSCDHFS2_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,1,3,Mod. food insec.,Mod. food insec.,N/A,1,Moderate food insecurity,HC food security,Household food security status - (HC), -FSCDHFS2,FSCDHFS2_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,2,3,Sev. food insec.,Sev. food insec.,N/A,2,Severe food insecurity,HC food security,Household food security status - (HC), -FSCDHFS2,FSCDHFS2_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HC food security,Household food security status - (HC), -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HC food security,Household food security status - (HC), -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,3,missing,missing,N/A,else,else,HC food security,Household food security status - (HC), -FVC_1A,FVC_1A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,1,5,Per day,Per day,N/A,1,Per day,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,"How often do you usually drink fruit juices such as orange, grapefruit or tomato? (For example, once a day, three times a week, or twice a month) " -FVC_1A,FVC_1A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,2,5,Per week,Per week,N/A,2,Per week,Drinks fruit juice unit,Drinks fruit juices - reporting unit , -FVC_1A,FVC_1A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,3,5,Per month,Per month,N/A,3,Per month,Drinks fruit juice unit,Drinks fruit juices - reporting unit , -FVC_1A,FVC_1A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,4,5,Per year,Per year,N/A,4,Per year,Drinks fruit juice unit,Drinks fruit juices - reporting unit , -FVC_1A,FVC_1A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,5,5,Never,Never,N/A,5,Never,Drinks fruit juice unit,Drinks fruit juices - reporting unit , -FVC_1A,FVC_1A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Drinks fruit juice unit,Drinks fruit juices - reporting unit , -FVC_1A,FVC_1A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinks fruit juice unit,Drinks fruit juices - reporting unit , -FVC_1A,FVC_1A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A],cat,NA::b,5,missing,missing,N/A,else,else,Drinks fruit juice unit,Drinks fruit juices - reporting unit , -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],cont,copy,N/A,Drinks fruit juices daily,Drinks fruit juices daily,N/A,"[1,20]",Drinks fruit juices - no. of times/day ,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,Unit of measure of value in FVC_1A. -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Drinks fruit juices daily,Drinks fruit juices - no. of times/day , -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices daily,Drinks fruit juices - no. of times/day , -FVC_1B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B],cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices daily,Drinks fruit juices - no. of times/day , -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],cont,copy,N/A,Drinks fruit juices weekly,Drinks fruit juices weekly,N/A,"[1,50]",Drinks fruit juices - no. of times/week,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,Unit of measure of value in FVC_1A. -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices weekly,Drinks fruit juices - no. of times/week, -FVC_1C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C],cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],cont,copy,N/A,Drinks fruit juices monthly,Drinks fruit juices monthly,N/A,"[1,75]",Drinks fruit juices - no. of times/month,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,Unit of measure of value in FVC_1A. -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices monthly,Drinks fruit juices - no. of times/month, -FVC_1D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D],cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],cont,copy,N/A,Drinks fruit juices yearly,Drinks fruit juices yearly,N/A,"[1,250]",Drinks fruit juices - no. of times/year,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,Unit of measure of value in FVC_1A. -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices yearly,Drinks fruit juices - no. of times/year, -FVC_1E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E],cont,NA::b,N/A,missing,missing,N/A,else,else,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year, -FVC_2A,FVC_2A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,1,5,Per day,Per day,N/A,1,Per day,Eats fruit unit,Eats fruit - reporting unit ,"Not counting juice, how often do you usually eat fruit? " -FVC_2A,FVC_2A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,2,5,Per week,Per week,N/A,2,Per week,Eats fruit unit,Eats fruit - reporting unit , -FVC_2A,FVC_2A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,3,5,Per month,Per month,N/A,3,Per month,Eats fruit unit,Eats fruit - reporting unit , -FVC_2A,FVC_2A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,4,5,Per year,Per year,N/A,4,Per year,Eats fruit unit,Eats fruit - reporting unit , -FVC_2A,FVC_2A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,5,5,Never,Never,N/A,5,Never,Eats fruit unit,Eats fruit - reporting unit , -FVC_2A,FVC_2A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats fruit unit,Eats fruit - reporting unit , -FVC_2A,FVC_2A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats fruit unit,Eats fruit - reporting unit , -FVC_2A,FVC_2A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A],cat,NA::b,5,missing,missing,N/A,else,else,Eats fruit unit,Eats fruit - reporting unit , -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],cont,copy,N/A,Eats fruit daily,Eats fruit daily,N/A,"[1,20]",Eats fruit - no. of times/day ,Eats fruit daily,Eats fruit - no. of times/day ,Unit of measure of value in FVC_2A. -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats fruit daily,Eats fruit - no. of times/day , -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit daily,Eats fruit - no. of times/day , -FVC_2B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit daily,Eats fruit - no. of times/day , -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],cont,copy,N/A,Eats fruit weekly,Eats fruit weekly,N/A,"[1,54]",Eats fruit - no. of times/week,Eats fruit weekly,Eats fruit - no. of times/week,Unit of measure of value in FVC_2A. -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats fruit weekly,Eats fruit - no. of times/week, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit weekly,Eats fruit - no. of times/week, -FVC_2C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit weekly,Eats fruit - no. of times/week, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],cont,copy,N/A,Eats fruit monthly,Eats fruit monthly,N/A,"[1,105]",Eats fruit - no. of times/month,Eats fruit monthly,Eats fruit - no. of times/month,Unit of measure of value in FVC_2A. -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats fruit monthly,Eats fruit - no. of times/month, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit monthly,Eats fruit - no. of times/month, -FVC_2D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit monthly,Eats fruit - no. of times/month, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],cont,copy,N/A,Eats fruit yearly,Eats fruit yearly,N/A,"[1,350]",Eats fruit - no. of times/year,Eats fruit yearly,Eats fruit - no. of times/year,Unit of measure of value in FVC_2A. -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats fruit yearly,Eats fruit - no. of times/year, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit yearly,Eats fruit - no. of times/year, -FVC_2E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats fruit yearly,Eats fruit - no. of times/year, -FVC_3A,FVC_3A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,1,5,Per day,Per day,N/A,1,Per day,Eats green salad unit,Eats green salad - reporting unit ,How often do you (usually) eat green salad? -FVC_3A,FVC_3A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,2,5,Per week,Per week,N/A,2,Per week,Eats green salad unit,Eats green salad - reporting unit , -FVC_3A,FVC_3A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,3,5,Per month,Per month,N/A,3,Per month,Eats green salad unit,Eats green salad - reporting unit , -FVC_3A,FVC_3A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,4,5,Per year,Per year,N/A,4,Per year,Eats green salad unit,Eats green salad - reporting unit , -FVC_3A,FVC_3A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,5,5,Never,Never,N/A,5,Never,Eats green salad unit,Eats green salad - reporting unit , -FVC_3A,FVC_3A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats green salad unit,Eats green salad - reporting unit , -FVC_3A,FVC_3A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats green salad unit,Eats green salad - reporting unit , -FVC_3A,FVC_3A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A],cat,NA::b,5,missing,missing,N/A,else,else,Eats green salad unit,Eats green salad - reporting unit , -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],cont,copy,N/A,Eats green salad daily,Eats green salad daily,N/A,"[1,14]",Eats green salad - no. of times/day ,Eats green salad daily,Eats green salad - no. of times/day ,Unit of measure of value in FVC_3A. -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats green salad daily,Eats green salad - no. of times/day , -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad daily,Eats green salad - no. of times/day , -FVC_3B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad daily,Eats green salad - no. of times/day , -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],cont,copy,N/A,Eats green salad weekly,Eats green salad weekly,N/A,"[1,67]",Eats green salad - no. of times/week,Eats green salad weekly,Eats green salad - no. of times/week,Unit of measure of value in FVC_3A. -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats green salad weekly,Eats green salad - no. of times/week, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad weekly,Eats green salad - no. of times/week, -FVC_3C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad weekly,Eats green salad - no. of times/week, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],cont,copy,N/A,Eats green salad monthly,Eats green salad monthly,N/A,"[1,47]",Eats green salad - no. of times/month,Eats green salad monthly,Eats green salad - no. of times/month,Unit of measure of value in FVC_3A. -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats green salad monthly,Eats green salad - no. of times/month, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad monthly,Eats green salad - no. of times/month, -FVC_3D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad monthly,Eats green salad - no. of times/month, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],cont,copy,N/A,Eats green salad yearly,Eats green salad yearly,N/A,"[1,330]",Eats green salad - no. of times/year,Eats green salad yearly,Eats green salad - no. of times/year,Unit of measure of value in FVC_3A. -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats green salad yearly,Eats green salad - no. of times/year, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad yearly,Eats green salad - no. of times/year, -FVC_3E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats green salad yearly,Eats green salad - no. of times/year, -FVC_4A,FVC_4A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,1,5,Per day,Per day,N/A,1,Per day,Eats potatoes unit,Eats potatoes - reporting unit ,"How often do you usually eat potatoes, not including french fries, fried potatoes, or potato chips? " -FVC_4A,FVC_4A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,2,5,Per week,Per week,N/A,2,Per week,Eats potatoes unit,Eats potatoes - reporting unit , -FVC_4A,FVC_4A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,3,5,Per month,Per month,N/A,3,Per month,Eats potatoes unit,Eats potatoes - reporting unit , -FVC_4A,FVC_4A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,4,5,Per year,Per year,N/A,4,Per year,Eats potatoes unit,Eats potatoes - reporting unit , -FVC_4A,FVC_4A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,5,5,Never,Never,N/A,5,Never,Eats potatoes unit,Eats potatoes - reporting unit , -FVC_4A,FVC_4A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats potatoes unit,Eats potatoes - reporting unit , -FVC_4A,FVC_4A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats potatoes unit,Eats potatoes - reporting unit , -FVC_4A,FVC_4A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A],cat,NA::b,5,missing,missing,N/A,else,else,Eats potatoes unit,Eats potatoes - reporting unit , -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],cont,copy,N/A,Eats potatoes daily,Eats potatoes daily,N/A,"[1,17]",Eats potatoes - no. of times/day ,Eats potatoes daily,Eats potatoes - no. of times/day ,Unit of measure of value in FVC_4A. -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats potatoes daily,Eats potatoes - no. of times/day , -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes daily,Eats potatoes - no. of times/day , -FVC_4B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes daily,Eats potatoes - no. of times/day , -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],cont,copy,N/A,Eats potatoes weekly,Eats potatoes weekly,N/A,"[1,69]",Eats potatoes - no. of times/week,Eats potatoes weekly,Eats potatoes - no. of times/week,Unit of measure of value in FVC_4A. -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats potatoes weekly,Eats potatoes - no. of times/week, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes weekly,Eats potatoes - no. of times/week, -FVC_4C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes weekly,Eats potatoes - no. of times/week, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],cont,copy,N/A,Eats potatoes monthly,Eats potatoes monthly,N/A,"[1,111]",Eats potatoes - no. of times/month,Eats potatoes monthly,Eats potatoes - no. of times/month,Unit of measure of value in FVC_4A. -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats potatoes monthly,Eats potatoes - no. of times/month, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes monthly,Eats potatoes - no. of times/month, -FVC_4D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes monthly,Eats potatoes - no. of times/month, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],cont,copy,N/A,Eats potatoes yearly,Eats potatoes yearly,N/A,"[1,365]",Eats potatoes - no. of times/year,Eats potatoes yearly,Eats potatoes - no. of times/year,Unit of measure of value in FVC_4A. -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats potatoes yearly,Eats potatoes - no. of times/year, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes yearly,Eats potatoes - no. of times/year, -FVC_4E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats potatoes yearly,Eats potatoes - no. of times/year, -FVC_5A,FVC_5A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,1,5,Per day,Per day,N/A,1,Per day,Eats carrots unit,Eats carrots - reporting unit ,How often do you (usually) eat carrots? -FVC_5A,FVC_5A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,2,5,Per week,Per week,N/A,2,Per week,Eats carrots unit,Eats carrots - reporting unit , -FVC_5A,FVC_5A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,3,5,Per month,Per month,N/A,3,Per month,Eats carrots unit,Eats carrots - reporting unit , -FVC_5A,FVC_5A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,4,5,Per year,Per year,N/A,4,Per year,Eats carrots unit,Eats carrots - reporting unit , -FVC_5A,FVC_5A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,5,5,Never,Never,N/A,5,Never,Eats carrots unit,Eats carrots - reporting unit , -FVC_5A,FVC_5A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats carrots unit,Eats carrots - reporting unit , -FVC_5A,FVC_5A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats carrots unit,Eats carrots - reporting unit , -FVC_5A,FVC_5A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A],cat,NA::b,5,missing,missing,N/A,else,else,Eats carrots unit,Eats carrots - reporting unit , -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],cont,copy,N/A,Eats carrots daily,Eats carrots daily,N/A,"[1,15]",Eats carrots - no. of times/day ,Eats carrots daily,Eats carrots - no. of times/day ,Unit of measure of value in FVC_5A. -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats carrots daily,Eats carrots - no. of times/day , -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots daily,Eats carrots - no. of times/day , -FVC_5B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots daily,Eats carrots - no. of times/day , -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],cont,copy,N/A,Eats carrots weekly,Eats carrots weekly,N/A,"[1,75]",Eats carrots - no. of times/week ,Eats carrots weekly,Eats carrots - no. of times/week ,Unit of measure of value in FVC_5A. -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats carrots weekly,Eats carrots - no. of times/week , -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots weekly,Eats carrots - no. of times/week , -FVC_5C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots weekly,Eats carrots - no. of times/week , -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],cont,copy,N/A,Eats carrots monthly,Eats carrots monthly,N/A,"[1,115]",Eats carrots - no. of times/month,Eats carrots monthly,Eats carrots - no. of times/month,Unit of measure of value in FVC_5A. -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats carrots monthly,Eats carrots - no. of times/month, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots monthly,Eats carrots - no. of times/month, -FVC_5D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots monthly,Eats carrots - no. of times/month, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],cont,copy,N/A,Eats carrots yearly,Eats carrots yearly,N/A,"[1,270]",Eats carrots - no. of times/year,Eats carrots yearly,Eats carrots - no. of times/year,Unit of measure of value in FVC_5A. -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats carrots yearly,Eats carrots - no. of times/year, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots yearly,Eats carrots - no. of times/year, -FVC_5E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats carrots yearly,Eats carrots - no. of times/year, -FVC_6A,FVC_6A_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,1,5,Per day,Per day,N/A,1,Per day,Eats other vegetables unit,Eats other vegetables - reporting unit ,"Not counting carrots, potatoes, or salad, how many servings of other vegetables do you usually eat? " -FVC_6A,FVC_6A_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,2,5,Per week,Per week,N/A,2,Per week,Eats other vegetables unit,Eats other vegetables - reporting unit , -FVC_6A,FVC_6A_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,3,5,Per month,Per month,N/A,3,Per month,Eats other vegetables unit,Eats other vegetables - reporting unit , -FVC_6A,FVC_6A_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,4,5,Per year,Per year,N/A,4,Per year,Eats other vegetables unit,Eats other vegetables - reporting unit , -FVC_6A,FVC_6A_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,5,5,Never,Never,N/A,5,Never,Eats other vegetables unit,Eats other vegetables - reporting unit , -FVC_6A,FVC_6A_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats other vegetables unit,Eats other vegetables - reporting unit , -FVC_6A,FVC_6A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats other vegetables unit,Eats other vegetables - reporting unit , -FVC_6A,FVC_6A_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A],cat,NA::b,5,missing,missing,N/A,else,else,Eats other vegetables unit,Eats other vegetables - reporting unit , -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],cont,copy,N/A,Eats other vegetables daily,Eats other vegetables daily,N/A,"[1,20]",Eats other vegetables - servings/day ,Eats other vegetables daily,Eats other vegetables - servings/day ,Unit of measure of value in FVC_6A. -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats other vegetables daily,Eats other vegetables - servings/day , -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables daily,Eats other vegetables - servings/day , -FVC_6B,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables daily,Eats other vegetables - servings/day , -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],cont,copy,N/A,Eats other vegetables weekly,Eats other vegetables weekly,N/A,"[1,83]",Eats other vegetables - servings/week,Eats other vegetables weekly,Eats other vegetables - servings/week,Unit of measure of value in FVC_6A. -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],cont,NA::a,N/A,not applicable,not applicable,N/A,96,Not applicable,Eats other vegetables weekly,Eats other vegetables - servings/week, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],cont,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables weekly,Eats other vegetables - servings/week, -FVC_6C,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables weekly,Eats other vegetables - servings/week, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],cont,NA::a,N/A,Eats other vegetables - servings/month,not applicable,N/A,"[1,120]",Eats other vegetables - servings/month,Eats other vegetables monthly,Eats other vegetables - servings/month, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],cont,copy,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats other vegetables monthly,Eats other vegetables - servings/month,Unit of measure of value in FVC_6A. -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables monthly,Eats other vegetables - servings/month, -FVC_6D,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables monthly,Eats other vegetables - servings/month, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],cont,copy,N/A,Eats other vegetables yearly,Eats other vegetables yearly,N/A,"[1,300]",Eats other vegetables - servings/year,Eats other vegetables yearly,Eats other vegetables - servings/year,Unit of measure of value in FVC_6A. -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],cont,NA::a,N/A,not applicable,not applicable,N/A,996,Not applicable,Eats other vegetables yearly,Eats other vegetables - servings/year, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables yearly,Eats other vegetables - servings/year, -FVC_6E,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E],cont,NA::b,N/A,missing,missing,N/A,else,else,Eats other vegetables yearly,Eats other vegetables - servings/year, -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,copy,N/A,Daily carrots,Daily carrots,N/A,"[0,30]",Daily consumption - carrots - (D),Carrot consumption,Daily consumption - carrots (D),2015 onward changed question to look at all orange-coloured vegetables -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Carrot consumption,Daily consumption - carrots (D), -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Carrot consumption,Daily consumption - carrots (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS" -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,NA::b,N/A,missing,missing,N/A,else,else,Carrot consumption,Daily consumption - carrots (D), -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,copy,N/A,Daily fruit,Daily fruit,N/A,"[0,73]",Daily consumption - fruit - (D),Fruit consumption,Daily consumption - fruit - (D), -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Fruit consumption,Daily consumption - fruit - (D), -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Fruit consumption,Daily consumption - fruit - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,NA::b,N/A,missing,missing,N/A,else,else,Fruit consumption,Daily consumption - fruit - (D), -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,copy,N/A,Daily juice,Daily juice,N/A,"[0,47]",Daily consumption - fruit juice - (D),Juice consumption,Daily consumption - fruit juice (D), -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Juice consumption,Daily consumption - fruit juice (D), -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Juice consumption,Daily consumption - fruit juice (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,NA::b,N/A,missing,missing,N/A,else,else,Juice consumption,Daily consumption - fruit juice (D), -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,copy,N/A,Daily potatoes,Daily potatoes,N/A,"[0,30]",Daily consumption - potatoes - (D),Potato consumption,Daily consumption - potatoes (D), -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Potato consumption,Daily consumption - potatoes (D), -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Potato consumption,Daily consumption - potatoes (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,NA::b,N/A,missing,missing,N/A,else,else,Potato consumption,Daily consumption - potatoes (D), -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,copy,N/A,Daily salad,Daily salad,N/A,"[0,60]",Daily consumption - green salad - (D),Salad consumption,Daily consumption - green salad - (D),2015 onwards changed question to look at dark green vegetables -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Salad consumption,Daily consumption - green salad - (D), -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Salad consumption,Daily consumption - green salad - (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS" -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,NA::b,N/A,missing,missing,N/A,else,else,Salad consumption,Daily consumption - green salad - (D), -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,copy,N/A,Daily total fruits and vegetables,Daily total fruits and vegetables,N/A,"[0,70]",Daily consumption - total fruits and veg. - (D),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D), -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, [FVCDTOT]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D), -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, [FVCDTOT]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,NA::b,N/A,missing,missing,N/A,else,else,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D), -FVCDTOT,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,NA::a,N/A,not applicable,not applicable,N/A,9999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Not applicable (9999.6) not included in 2015-2016 CCHS -FVCDTOT,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,NA::b,N/A,missing,missing,N/A,9999.9,don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D), -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,copy,N/A,Daily other vegetables,Daily other vegetables,N/A,"[0,30]",Daily consumption other vegetables - (D),Other veg consumption,Daily consumption other vegetables - (D), -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Other veg consumption,Daily consumption other vegetables - (D), -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Other veg consumption,Daily consumption other vegetables - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,NA::b,N/A,missing,missing,N/A,else,else,Other veg consumption,Daily consumption other vegetables - (D), -GEN_01,GEN_01_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived health,Self-perceived health, -GEN_01,GEN_01_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived health,Self-perceived health, -GEN_01,GEN_01_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,3,5,Good,Good,N/A,3,Good,Self-perceived health,Self-perceived health, -GEN_01,GEN_01_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived health,Self-perceived health, -GEN_01,GEN_01_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived health,Self-perceived health, -GEN_01,GEN_01_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived health,Self-perceived health, -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived health,Self-perceived health, -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived health,Self-perceived health, -GEN_02A,GEN_02A_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,1,5,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cat,Satisfaction with life, -GEN_02A,GEN_02A_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,2,5,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cat,Satisfaction with life, -GEN_02A,GEN_02A_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,3,5,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cat,Satisfaction with life, -GEN_02A,GEN_02A_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,4,5,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cat,Satisfaction with life, -GEN_02A,GEN_02A_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,5,5,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cat,Satisfaction with life, -GEN_02A,GEN_02A_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cat,Satisfaction with life, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cat,Satisfaction with life, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,NA::b,5,missing,missing,N/A,else,else,Life satisfaction_cat,Satisfaction with life, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,10,N/A,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cont,Satisfaction with life in general,"For CCHS cycles 2003-2007, GEN_02A2 was derived from GEN_02A where the values were rescaled to match GEN_02A2" -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,7,N/A,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,5,N/A,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,2,N/A,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,NA::a,N/A,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,NA::b,N/A,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,0,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,1,N/A,1,1,N/A,1,1,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,2,N/A,2,2,N/A,2,2,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,3,N/A,3,3,N/A,3,3,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,4,N/A,4,4,N/A,4,4,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,5,N/A,5,5,N/A,5,5,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,6,N/A,6,6,N/A,6,6,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,7,N/A,7,7,N/A,7,7,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,8,N/A,8,8,N/A,8,8,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,9,N/A,9,9,N/A,9,9,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,10,N/A,Very satisfied,Very satisfied,N/A,10,Very satisfied,Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Life satisfaction_cont,Satisfaction with life in general,CCHS 2015-2018 does not have not applicable (96) -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Life satisfaction_cont,Satisfaction with life in general, -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general, -GEN_02B,GEN_02B_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived mental health,Self-perceived mental health, -GEN_02B,GEN_02B_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived mental health,Self-perceived mental health, -GEN_02B,GEN_02B_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,3,5,Good,Good,N/A,3,Good,Self-perceived mental health,Self-perceived mental health, -GEN_02B,GEN_02B_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived mental health,Self-perceived mental health, -GEN_02B,GEN_02B_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived mental health,Self-perceived mental health, -GEN_02B,GEN_02B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived mental health,Self-perceived mental health, -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived mental health,Self-perceived mental health, -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived mental health,Self-perceived mental health, -GEN_07,GEN_07_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived life stress,Self-perceived life stress, -GEN_07,GEN_07_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived life stress,Self-perceived life stress, -GEN_07,GEN_07_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived life stress,Self-perceived life stress, -GEN_07,GEN_07_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived life stress,Self-perceived life stress, -GEN_07,GEN_07_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived life stress,Self-perceived life stress, -GEN_07,GEN_07_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived life stress,Self-perceived life stress,CCHS 2015-2018 does not have not applicable (6) -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived life stress,Self-perceived life stress, -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived life stress,Self-perceived life stress, -GEN_09,GEN_09_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived work stress,Self-perceived work stress, -GEN_09,GEN_09_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived work stress,Self-perceived work stress, -GEN_09,GEN_09_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived work stress,Self-perceived work stress, -GEN_09,GEN_09_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived work stress,Self-perceived work stress, -GEN_09,GEN_09_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived work stress,Self-perceived work stress, -GEN_09,GEN_09_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived work stress,Self-perceived work stress, -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived work stress,Self-perceived work stress, -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived work stress,Self-perceived work stress, -GEN_10,GEN_10_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,1,4,Very strong,Very strong,N/A,1,Very strong,Sense of belonging,Sense of belonging in the community, -GEN_10,GEN_10_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,2,4,Somewhat strong,Somewhat strong,N/A,2,Somewhat strong,Sense of belonging,Sense of belonging in the community, -GEN_10,GEN_10_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,3,4,Somewhat weak,Somewhat weak,N/A,3,Somewhat weak,Sense of belonging,Sense of belonging in the community, -GEN_10,GEN_10_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,4,4,Very weak,Very weak,N/A,4,Very weak,Sense of belonging,Sense of belonging in the community, -GEN_10,GEN_10_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sense of belonging,Sense of belonging in the community, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sense of belonging,Sense of belonging in the community, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,NA::b,4,missing,missing,N/A,else,else,Sense of belonging,Sense of belonging in the community, -GEODPMF,GEODPMF_cat97_1,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,10911,97,EASTERN REGIONAL INTEGRATED HA,EASTERN REGIONAL INTEGRATED HA,N/A,10911,EASTERN REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_2,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,10912,97,CENTRAL REGIONAL INTEGRATED HA,CENTRAL REGIONAL INTEGRATED HA,N/A,10912,CENTRAL REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_3,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,10913,97,WESTERN/LABRADOR-GRENFELL REGIONAL HA,WESTERN/LABRADOR-GRENFELL REGIONAL HA,N/A,10913,WESTERN/LABRADOR-GRENFELL REGIONAL HA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_4,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,11901,97,PRINCE EDWARD ISLAND,PRINCE EDWARD ISLAND,N/A,11901,PRINCE EDWARD ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_5,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12910,97,SOUTH SHORE-SOUTH WEST NOVA,SOUTH SHORE-SOUTH WEST NOVA,N/A,12910,SOUTH SHORE-SOUTH WEST NOVA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_6,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12923,97,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,N/A,12923,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_7,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12930,97,COLCHESTER EAST HANTS-CUMBERLAND,COLCHESTER EAST HANTS-CUMBERLAND,N/A,12930,COLCHESTER EAST HANTS-CUMBERLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_8,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12940,97,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,N/A,12940,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_9,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12958,97,CAPE BRETON DISTRICT HEALTH AUTHORITY,CAPE BRETON DISTRICT HEALTH AUTHORITY,N/A,12958,CAPE BRETON DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_10,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12969,97,CAPITAL DISTRICT HEALTH AUTHORITY,CAPITAL DISTRICT HEALTH AUTHORITY,N/A,12969,CAPITAL DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_11,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13901,97,ZONE 1,ZONE 1,N/A,13901,ZONE 1,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_12,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13902,97,ZONE 2,ZONE 2,N/A,13902,ZONE 2,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_13,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13903,97,ZONE 3,ZONE 3,N/A,13903,ZONE 3,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_14,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13904,97,ZONES 4 AND 5,ZONES 4 AND 5,N/A,13904,ZONES 4 AND 5,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_15,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13906,97,ZONES 6 AND 7,ZONES 6 AND 7,N/A,13906,ZONES 6 AND 7,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_16,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24901,97,REGION DU BAS-SAINT-LAURENT,REGION DU BAS-SAINT-LAURENT,N/A,24901,REGION DU BAS-SAINT-LAURENT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_17,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24902,97,REGION DU SAGUENAY - LAC-SAINT-JEAN,REGION DU SAGUENAY - LAC-SAINT-JEAN,N/A,24902,REGION DU SAGUENAY - LAC-SAINT-JEAN,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_18,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24903,97,REGION DE LA CAPITALE-NATIONALE,REGION DE LA CAPITALE-NATIONALE,N/A,24903,REGION DE LA CAPITALE-NATIONALE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_19,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24904,97,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,N/A,24904,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_20,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24905,97,REGION DE L'ESTRIE,REGION DE L'ESTRIE,N/A,24905,REGION DE L'ESTRIE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_21,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24906,97,REGION DE MONTREAL,REGION DE MONTREAL,N/A,24906,REGION DE MONTREAL,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_22,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24907,97,REGION DE L'OUTAOUAIS,REGION DE L'OUTAOUAIS,N/A,24907,REGION DE L'OUTAOUAIS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_23,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24908,97,REGION DE L'ABITIBI-TEMISCAMINGUE,REGION DE L'ABITIBI-TEMISCAMINGUE,N/A,24908,REGION DE L'ABITIBI-TEMISCAMINGUE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_24,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24909,97,REGION DE LA COTE-NORD,REGION DE LA COTE-NORD,N/A,24909,REGION DE LA COTE-NORD,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_25,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24911,97,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,N/A,24911,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_26,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24912,97,REGION DE LA CHAUDIERE-APPALACHES,REGION DE LA CHAUDIERE-APPALACHES,N/A,24912,REGION DE LA CHAUDIERE-APPALACHES,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_27,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24913,97,REGION DE LAVAL,REGION DE LAVAL,N/A,24913,REGION DE LAVAL,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_28,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24914,97,REGION DE LANAUDIERE,REGION DE LANAUDIERE,N/A,24914,REGION DE LANAUDIERE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_29,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24915,97,REGION DES LAURENTIDES,REGION DES LAURENTIDES,N/A,24915,REGION DES LAURENTIDES,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_30,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24916,97,REGION DE LA MONTEREGIE,REGION DE LA MONTEREGIE,N/A,24916,REGION DE LA MONTEREGIE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_31,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35926,97,DISTRICT OF ALGOMA HEALTH UNIT,DISTRICT OF ALGOMA HEALTH UNIT,N/A,35926,DISTRICT OF ALGOMA HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_32,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35927,97,BRANT COUNTY HEALTH UNIT,BRANT COUNTY HEALTH UNIT,N/A,35927,BRANT COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_33,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35930,97,DURHAM REGIONAL HEALTH UNIT,DURHAM REGIONAL HEALTH UNIT,N/A,35930,DURHAM REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_34,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35931,97,ELGIN-ST THOMAS HEALTH UNIT,ELGIN-ST THOMAS HEALTH UNIT,N/A,35931,ELGIN-ST THOMAS HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_35,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35933,97,GREY BRUCE HEALTH UNIT,GREY BRUCE HEALTH UNIT,N/A,35933,GREY BRUCE HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_36,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35934,97,HALDIMAND-NORFOLK HEALTH UNIT,HALDIMAND-NORFOLK HEALTH UNIT,N/A,35934,HALDIMAND-NORFOLK HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_37,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35935,97,HALIBURTON-KAWARTHA-PINE RIDGE DHU,HALIBURTON-KAWARTHA-PINE RIDGE DHU,N/A,35935,HALIBURTON-KAWARTHA-PINE RIDGE DHU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_38,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35936,97,HALTON REGIONAL HEALTH UNIT,HALTON REGIONAL HEALTH UNIT,N/A,35936,HALTON REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_39,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35937,97,CITY OF HAMILTON HEALTH UNIT,CITY OF HAMILTON HEALTH UNIT,N/A,35937,CITY OF HAMILTON HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_40,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35938,97,HASTINGS AND PRINCE EDWARD COUNTIES HU,HASTINGS AND PRINCE EDWARD COUNTIES HU,N/A,35938,HASTINGS AND PRINCE EDWARD COUNTIES HU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_41,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35939,97,HURON AND PERTH HEALTH UNITS,HURON AND PERTH HEALTH UNITS,N/A,35939,HURON AND PERTH HEALTH UNITS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_42,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35940,97,CHATHAM-KENT HEALTH UNIT,CHATHAM-KENT HEALTH UNIT,N/A,35940,CHATHAM-KENT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_43,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35941,97,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,N/A,35941,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_44,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35942,97,LAMBTON HEALTH UNIT,LAMBTON HEALTH UNIT,N/A,35942,LAMBTON HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_45,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35943,97,LEEDS-GRENVILLE-LANARK DHU,LEEDS-GRENVILLE-LANARK DHU,N/A,35943,LEEDS-GRENVILLE-LANARK DHU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_46,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35944,97,MIDDLESEX-LONDON HEALTH UNIT,MIDDLESEX-LONDON HEALTH UNIT,N/A,35944,MIDDLESEX-LONDON HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_47,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35946,97,NIAGARA REGIONAL AREA HEALTH UNIT,NIAGARA REGIONAL AREA HEALTH UNIT,N/A,35946,NIAGARA REGIONAL AREA HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_48,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35947,97,NORTH BAY AND TIMISKAMING HEALTH UNITS,NORTH BAY AND TIMISKAMING HEALTH UNITS,N/A,35947,NORTH BAY AND TIMISKAMING HEALTH UNITS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_49,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35949,97,NORTHWESTERN HEALTH UNIT,NORTHWESTERN HEALTH UNIT,N/A,35949,NORTHWESTERN HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_50,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35951,97,CITY OF OTTAWA HEALTH UNIT,CITY OF OTTAWA HEALTH UNIT,N/A,35951,CITY OF OTTAWA HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_51,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35952,97,OXFORD COUNTY HEALTH UNIT,OXFORD COUNTY HEALTH UNIT,N/A,35952,OXFORD COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_52,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35953,97,PEEL REGIONAL HEALTH UNIT,PEEL REGIONAL HEALTH UNIT,N/A,35953,PEEL REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_53,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35955,97,PETERBOROUGH COUNTY-CITY HEALTH UNIT,PETERBOROUGH COUNTY-CITY HEALTH UNIT,N/A,35955,PETERBOROUGH COUNTY-CITY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_54,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35956,97,PORCUPINE HEALTH UNIT,PORCUPINE HEALTH UNIT,N/A,35956,PORCUPINE HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_55,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35957,97,RENFREW COUNTY AND DISTRICT HEALTH UNIT,RENFREW COUNTY AND DISTRICT HEALTH UNIT,N/A,35957,RENFREW COUNTY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_56,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35958,97,EASTERN ONTARIO HEALTH UNIT,EASTERN ONTARIO HEALTH UNIT,N/A,35958,EASTERN ONTARIO HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_57,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35960,97,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,N/A,35960,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_58,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35961,97,SUDBURY AND DISTRICT HEALTH UNIT,SUDBURY AND DISTRICT HEALTH UNIT,N/A,35961,SUDBURY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_59,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35962,97,THUNDER BAY DISTRICT HEALTH UNIT,THUNDER BAY DISTRICT HEALTH UNIT,N/A,35962,THUNDER BAY DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_60,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35965,97,WATERLOO HEALTH UNIT,WATERLOO HEALTH UNIT,N/A,35965,WATERLOO HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_61,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35966,97,WELLINGTON-DUFFERIN-GUELPH HU,WELLINGTON-DUFFERIN-GUELPH HU,N/A,35966,WELLINGTON-DUFFERIN-GUELPH HU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_62,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35968,97,WINDSOR-ESSEX COUNTY HEALTH UNIT,WINDSOR-ESSEX COUNTY HEALTH UNIT,N/A,35968,WINDSOR-ESSEX COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_63,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35970,97,YORK REGIONAL HEALTH UNIT,YORK REGIONAL HEALTH UNIT,N/A,35970,YORK REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_64,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35995,97,CITY OF TORONTO HEALTH UNIT,CITY OF TORONTO HEALTH UNIT,N/A,35995,CITY OF TORONTO HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_65,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46901,97,WINNIPEG RHA,WINNIPEG RHA,N/A,46901,WINNIPEG RHA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_66,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46902,97,PRAIRIE M. HEALTH,PRAIRIE M. HEALTH,N/A,46902,PRAIRIE M. HEALTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_67,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46903,97,INTERLAKE-EASTERN RHA,INTERLAKE-EASTERN RHA,N/A,46903,INTERLAKE-EASTERN RHA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_68,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46904,97,NORTHEN RHA,NORTHEN RHA,N/A,46904,NORTHEN RHA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_69,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46905,97,SOUTHEN HEALTH,SOUTHEN HEALTH,N/A,46905,SOUTHEN HEALTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_70,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47901,97,SUN COUNTRY/FIVE HILLS/CYPRESS,SUN COUNTRY/FIVE HILLS/CYPRESS,N/A,47901,SUN COUNTRY/FIVE HILLS/CYPRESS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_71,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47904,97,REGINA QU'APPELLE,REGINA QU'APPELLE,N/A,47904,REGINA QU'APPELLE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_72,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47905,97,SUNRISE/KELSEY TRAIL,SUNRISE/KELSEY TRAIL,N/A,47905,SUNRISE/KELSEY TRAIL,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_73,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47906,97,SASKATOON,SASKATOON,N/A,47906,SASKATOON,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_74,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47907,97,HEARTLAND/PRAIRIE NORTH,HEARTLAND/PRAIRIE NORTH,N/A,47907,HEARTLAND/PRAIRIE NORTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_75,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47909,97,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,N/A,47909,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_76,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48931,97,SOUTH ZONE,SOUTH ZONE,N/A,48931,SOUTH ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_77,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48932,97,CALGARY ZONE,CALGARY ZONE,N/A,48932,CALGARY ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_78,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48933,97,CENTRAL ZONE,CENTRAL ZONE,N/A,48933,CENTRAL ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_79,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48934,97,EDMONTON ZONE,EDMONTON ZONE,N/A,48934,EDMONTON ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_80,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48935,97,NORTH ZONE,NORTH ZONE,N/A,48935,NORTH ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_81,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59911,97,EAST KOOTENAY,EAST KOOTENAY,N/A,59911,EAST KOOTENAY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_82,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59912,97,KOOTENAY-BOUNDARY,KOOTENAY-BOUNDARY,N/A,59912,KOOTENAY-BOUNDARY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_83,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59913,97,OKANAGAN,OKANAGAN,N/A,59913,OKANAGAN,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_84,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59914,97,THOMPSON/CARIBOO,THOMPSON/CARIBOO,N/A,59914,THOMPSON/CARIBOO,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_85,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59921,97,FRASER EAST,FRASER EAST,N/A,59921,FRASER EAST,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_86,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59922,97,FRASER NORTH,FRASER NORTH,N/A,59922,FRASER NORTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_87,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59923,97,FRASER SOUTH,FRASER SOUTH,N/A,59923,FRASER SOUTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_88,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59931,97,RICHMOND,RICHMOND,N/A,59931,RICHMOND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_89,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59932,97,VANCOUVER,VANCOUVER,N/A,59932,VANCOUVER,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_90,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59933,97,NORTH SHORE/COAST GARIBALDI,NORTH SHORE/COAST GARIBALDI,N/A,59933,NORTH SHORE/COAST GARIBALDI,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_91,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59941,97,SOUTH VANCOUVER ISLAND,SOUTH VANCOUVER ISLAND,N/A,59941,SOUTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_92,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59942,97,CENTRAL VANCOUVER ISLAND,CENTRAL VANCOUVER ISLAND,N/A,59942,CENTRAL VANCOUVER ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_93,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59943,97,NORTH VANCOUVER ISLAND,NORTH VANCOUVER ISLAND,N/A,59943,NORTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_94,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59951,97,NORTHWEST,NORTHWEST,N/A,59951,NORTHWEST,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_95,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59952,97,NORTHERN INTERIOR,NORTHERN INTERIOR,N/A,59952,NORTHERN INTERIOR,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_96,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59953,97,NORTHEAST,NORTHEAST,N/A,59953,NORTHEAST,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_97,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,60901,97,YUKON/NORTHWEST TERRITORIES/NUNAVUT,YUKON/NORTHWEST TERRITORIES/NUNAVUT,N/A,60901,YUKON/NORTHWEST TERRITORIES/NUNAVUT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_NA::b,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,NA::b,97,missing,missing,N/A,else,else,Health Region - (G),Health Region - (G), -GEOGPRV,GEOGPRV_cat11_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,10,11,NL,Nfld. & Labrador,N/A,10,Nfld. & Labrador,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,11,11,PEI,Prince Edward Island,N/A,11,Prince Edward Island,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,12,11,NS,Nova Scotia,N/A,12,Nova Scotia,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,13,11,NB,New Brunswick,N/A,13,New Brunswick,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,24,11,QC,Quebec,N/A,24,Quebec,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,35,11,ON,Ontario,N/A,35,Ontario,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,46,11,MB,Manitoba,N/A,46,Manitoba,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,47,11,SK,Saskatchewan,N/A,47,Saskatchewan,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,48,11,AB,Alberta,N/A,48,Alberta,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,59,11,BC,British Columbia,N/A,59,British Columbia,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,60,11,YT/NT/NU,Yukon/NWT/Nunavut,N/A,"[60,62]",Yukon/NWT/Nunavut,Province,Province of residence of respondent (G),"CCHS2015_2016 and CCHS2017_2018 divides category into Yukon (60), NWT (61), and Nunavut (62)" -GEOGPRV,GEOGPRV_cat11_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,NA::b,11,missing,missing,N/A,"[97,99]","don't know (97), refusal (98), not stated (99)",Province,Province of residence of respondent (G), -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",cat,NA::b,11,missing,missing,N/A,else,else,Province,Province of residence of respondent (G), -HCU_1AA,HCU_1AA_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,1,2,Yes,Yes (Has regular medical doctor),N/A,1,Yes (Has regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?,"In 2015-2018, question was reworded to ""Do you have a regular health care provider?""" -HCU_1AA,HCU_1AA_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,2,2,No,No (Does not have regular medical doctor),N/A,2,No (Does not have regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?, -HCU_1AA,HCU_1AA_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Has regular medical doctor,Do you have a regular medical doctor?, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Has regular medical doctor,Do you have a regular medical doctor?, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,NA::b,2,missing,missing,N/A,else,else,Has regular medical doctor,Do you have a regular medical doctor?, -HUIDCOG,HUIDCOG_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,1,6,No cognit prob,No cognition problems,N/A,1,No cognit prob,HUI Cognition,Cognition prob. - function code - (D),CCHS 2007 onwards uses cognition levels which coincide with HUI Mark 3 -HUIDCOG,HUIDCOG_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,2,6,Little difficult,Little difficulty,N/A,2,Little difficulty,HUI Cognition,Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,3,6,Some forgetful,Some forgetful,N/A,3,Some forgetful,HUI Cognition,Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,4,6,Forget/dif think,Forgetful/difficulty thinking,N/A,4,Forget/dif think,HUI Cognition,Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,5,6,Very forgetful,Very forgetful,N/A,5,Very forgetful,HUI Cognition,Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,6,6,Can't remember,Can't remember,N/A,6,Can't remember,HUI Cognition,Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,HUI Cognition,Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Cognition,Cognition prob. - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (97) or refusal (98)" -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,NA::b,6,missing,missing,N/A,else,else,HUI Cognition,Cognition prob. - function code - (D), -HUIDEMO,HUIDEMO_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,1,5,Happy in life,Happy in life,N/A,1,Happy in life,HUI Emotion,Emotional problems - function code - (D),CCHS 2007 onwards uses emotional levels which coincide with HUI Mark 3 -HUIDEMO,HUIDEMO_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,2,5,Somewhat happy,Somewhat happy,N/A,2,Somewhat happy,HUI Emotion,Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,3,5,Somewhat unhappy,Somewhat unhappy,N/A,3,Somewhat unhappy,HUI Emotion,Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,4,5,Very unhappy,Very unhappy,N/A,4,Very unhappy,HUI Emotion,Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,5,5,Life not worth,Life not worth,N/A,5,Life not worth,HUI Emotion,Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Emotion,Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Emotion,Emotional problems - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (7) or refusal (8)" -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,NA::b,5,missing,missing,N/A,else,else,HUI Emotion,Emotional problems - function code - (D), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,copy,N/A,HUI score,Health Utility Index (HUI3) - (D),N/A,"[-0.359,1]",Health Utility Index (HUI3) - (D),Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,N/A,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,N/A,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,N/A,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,1,10,Decile 1,Decile 1,N/A,"[-0.359,-0.2231)",Decile 1,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,2,10,Decile 2,Decile 2,N/A,"[-0.2231,-0.0872)",Decile 2,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,3,10,Decile 3,Decile 3,N/A,"[-0.0872,0.0487)",Decile 3,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,4,10,Decile 4,Decile 4,N/A,"[0.0487,0.1846)",Decile 4,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,5,10,Decile 5,Decile 5,N/A,"[0.1846,0.3205)",Decile 5,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,6,10,Decile 6,Decile 6,N/A,"[0.3205,0.4564)",Decile 6,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,7,10,Decile 7,Decile 7,N/A,"[0.4564,0.5923)",Decile 7,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,8,10,Decile 8,Decile 8,N/A,"[0.5923,0.7282)",Decile 8,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,9,10,Decile 9,Decile 9,N/A,"[0.7282,0.8641)",Decile 9,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,10,10,Decile 10,Decile 10,N/A,"[0.8641,1]",Decile 10,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,10,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,10,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,10,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,1,20,Group 1,Group 1,N/A,"[-0.359,-0.29105)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,2,20,Group 2,Group 2,N/A,"[-0.29105,-0.2231)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,3,20,Group 3,Group 3,N/A,"[-0.2231,-0.15515)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,4,20,Group 4,Group 4,N/A,"[-0.15515,-0.0872)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,5,20,Group 5,Group 5,N/A,"[-0.0872,-0.01925)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,6,20,Group 6,Group 6,N/A,"[-0.01925,0.0487)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,7,20,Group 7,Group 7,N/A,"[0.0487,0.11665)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,8,20,Group 8,Group 8,N/A,"[0.11665,0.1846)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,9,20,Group 9,Group 9,N/A,"[0.1846,0.25255)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,10,20,Group 10,Group 10,N/A,"[0.25255,0.3205)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,11,20,Group 11,Group 11,N/A,"[0.3205,0.38845)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,12,20,Group 12,Group 12,N/A,"[0.38845,0.4564)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,13,20,Group 13,Group 13,N/A,"[0.4564,0.52435)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,14,20,Group 14,Group 14,N/A,"[0.52435,0.5923)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,15,20,Group 15,Group 15,N/A,"[0.5923,0.66025)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,16,20,Group 16,Group 16,N/A,"[0.66025,0.7282)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,17,20,Group 17,Group 17,N/A,"[0.7282,0.79615)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,18,20,Group 18,Group 18,N/A,"[0.79615,0.8641)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,19,20,Group 19,Group 19,N/A,"[0.8641,0.93205)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,20,20,Group 20,Group 20,N/A,"[0.93205,1]",Group 20,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,20,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,20,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,20,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,1,50,Group 1,Group 1,N/A,"[-0.359,-0.33182)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,2,50,Group 2,Group 2,N/A,"[-0.33182,-0.30464)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,3,50,Group 3,Group 3,N/A,"[-0.30464,-0.27746)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,4,50,Group 4,Group 4,N/A,"[-0.27746,-0.25028)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,5,50,Group 5,Group 5,N/A,"[-0.25028,-0.2231)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,6,50,Group 6,Group 6,N/A,"[-0.2231,-0.19592)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,7,50,Group 7,Group 7,N/A,"[-0.19592,-0.16874)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,8,50,Group 8,Group 8,N/A,"[-0.16874,-0.14156)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,9,50,Group 9,Group 9,N/A,"[-0.14156,-0.11438)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,10,50,Group 10,Group 10,N/A,"[-0.11438,-0.0872)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,11,50,Group 11,Group 11,N/A,"[-0.0872,-0.06002)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,12,50,Group 12,Group 12,N/A,"[-0.06002,-0.03284)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,13,50,Group 13,Group 13,N/A,"[-0.03284,-0.00566000000000004)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,14,50,Group 14,Group 14,N/A,"[-0.00566000000000004,0.02152)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,15,50,Group 15,Group 15,N/A,"[0.02152,0.0487)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,16,50,Group 16,Group 16,N/A,"[0.0487,0.07588)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,17,50,Group 17,Group 17,N/A,"[0.07588,0.10306)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,18,50,Group 18,Group 18,N/A,"[0.10306,0.13024)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,19,50,Group 19,Group 19,N/A,"[0.13024,0.15742)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,20,50,Group 20,Group 20,N/A,"[0.15742,0.1846)",Group 20,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_21,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,21,50,Group 21,Group 21,N/A,"[0.1846,0.21178)",Group 21,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_22,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,22,50,Group 22,Group 22,N/A,"[0.21178,0.23896)",Group 22,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_23,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,23,50,Group 23,Group 23,N/A,"[0.23896,0.26614)",Group 23,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_24,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,24,50,Group 24,Group 24,N/A,"[0.26614,0.29332)",Group 24,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_25,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,25,50,Group 25,Group 25,N/A,"[0.29332,0.3205)",Group 25,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_26,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,26,50,Group 26,Group 26,N/A,"[0.3205,0.34768)",Group 26,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_27,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,27,50,Group 27,Group 27,N/A,"[0.34768,0.37486)",Group 27,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_28,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,28,50,Group 28,Group 28,N/A,"[0.37486,0.40204)",Group 28,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_29,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,29,50,Group 29,Group 29,N/A,"[0.40204,0.42922)",Group 29,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_30,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,30,50,Group 30,Group 30,N/A,"[0.42922,0.4564)",Group 30,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_31,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,31,50,Group 31,Group 31,N/A,"[0.4564,0.48358)",Group 31,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_32,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,32,50,Group 32,Group 32,N/A,"[0.48358,0.51076)",Group 32,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_33,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,33,50,Group 33,Group 33,N/A,"[0.51076,0.53794)",Group 33,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_34,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,34,50,Group 34,Group 34,N/A,"[0.53794,0.56512)",Group 34,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_35,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,35,50,Group 35,Group 35,N/A,"[0.56512,0.5923)",Group 35,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_36,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,36,50,Group 36,Group 36,N/A,"[0.5923,0.61948)",Group 36,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_37,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,37,50,Group 37,Group 37,N/A,"[0.61948,0.64666)",Group 37,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_38,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,38,50,Group 38,Group 38,N/A,"[0.64666,0.67384)",Group 38,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_39,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,39,50,Group 39,Group 39,N/A,"[0.67384,0.70102)",Group 39,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_40,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,40,50,Group 40,Group 40,N/A,"[0.70102,0.7282)",Group 40,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_41,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,41,50,Group 41,Group 41,N/A,"[0.7282,0.75538)",Group 41,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_42,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,42,50,Group 42,Group 42,N/A,"[0.75538,0.78256)",Group 42,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_43,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,43,50,Group 43,Group 43,N/A,"[0.78256,0.80974)",Group 43,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_44,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,44,50,Group 44,Group 44,N/A,"[0.80974,0.83692)",Group 44,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_45,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,45,50,Group 45,Group 45,N/A,"[0.83692,0.8641)",Group 45,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_46,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,46,50,Group 46,Group 46,N/A,"[0.8641,0.89128)",Group 46,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_47,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,47,50,Group 47,Group 47,N/A,"[0.89128,0.91846)",Group 47,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_48,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,48,50,Group 48,Group 48,N/A,"[0.91846,0.94564)",Group 48,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_49,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,49,50,Group 49,Group 49,N/A,"[0.94564,0.97282)",Group 49,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_50,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,50,50,Group 50,Group 50,N/A,"[0.97282,1]",Group 50,Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,50,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,50,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Overall HUI,Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,50,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3), -HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,3,3,Dext/need help,Needs help,N/A,3,Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Dexterity,"Dexterity trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)",Shared files use dexterity health status with more detailed categories. See derived variable documentation. -HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],cat,3,3,Dext/need help,Needs help,N/A,"[3,6]",Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDDEX],cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)", -HUIGHER,HUIGHER_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,2,3,Hear corrected,Hearing corrected,N/A,2,Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,3,Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,"Hearing problems - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)",Shared files use hearing health status with more detailed categories. See derived variable documentation. -HUIGHER,HUIGHER_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],cat,2,3,Hear corrected,Hearing corrected,N/A,"[2,3]",Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,"[4,6]",Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Hearing,"Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDHER],cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,3,4,Need mech supp.,Need mech supp.,N/A,3,Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,4,4,Can't walk,Can't walk,N/A,4,Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Mobility,"Mobility trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)",Shared files use amputation health status with more detailed categories. See derived variable documentation. -HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],cat,3,4,Need mech supp.,Need mech supp.,N/A,"[3,4]",Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],cat,4,4,Can't walk,Can't walk,N/A,"[5,6]",Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDMOB],cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)", -HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,2,2,Part/not underst,Part/not underst,N/A,2,Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Speech,"Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Speech,"Speech trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)",Shared files use speech health status with more detailed categories. See derived variable documentation. -HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],cat,2,2,Part/not underst,Part/not underst,N/A,"[2,5]",Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,HUI Speech,"Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Speech,"Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDSPE],cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,5,Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Vision,"Vision trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)",Shared files use vision health status with more detailed categories. See derived variable documentation. -HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,"[5,6]",Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Vision,"Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[HUIDVIS],cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)", -HUPDPAD,HUPDPAD_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,1,5,No pain/discomf,No pain/discomf,N/A,1,No pain/discomf,HUI Pain,Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,2,5,Doesn't prev act,Doesn't prev act,N/A,2,Doesn't prev act,HUI Pain,Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,3,5,Prevents few act,Prevents few act,N/A,3,Prevents few act,HUI Pain,Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,4,5,Prev. some act,Prev. some act,N/A,4,Prev. some act,HUI Pain,Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,5,5,Prev. most act,Prev. most act,N/A,5,Prev. most act,HUI Pain,Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Pain,Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Pain,Act. prevent/pain - function code - (D),CCHS 2001 does not include don't know (7) or refusal (8) -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,NA::b,5,missing,missing,N/A,else,else,HUI Pain,Act. prevent/pain - function code - (D), -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, [HWTGBMI]",cont,copy,N/A,BMI,Body Mass Index,kg/m2,"[8.07,137.46]","BMI / self-report - (D,G)",BMI,"BMI / self-report - (D,G)","CCHS 2001 restricts BMI to ages 20-64. CCHS 2015-2016 uses adjusted BMI. Consider using using HWTGBMI_der for the most concistent BMI variable across all CCHS cycles. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console." -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI",cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.6,Not applicable,BMI,"BMI / self-report - (D,G)","CCHS 2001 and 2003 codes not applicable and missing variables as 999.6 and 999.7-999.9 respectively, while CCHS 2005 onwards codes not applicable and missing variables as 999.96 and 999.7-999.99 respectively" -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI",cont,NA::b,N/A,missing,missing,kg/m2,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,"BMI / self-report - (D,G)",Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -HWTGBMI,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, [HWTGBMI]",cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,BMI,"BMI / self-report - (D,G)", -HWTGBMI,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, [HWTGBMI]",cont,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,"BMI / self-report - (D,G)", -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2009_s::HWTDBMI, cchs2010_s::HWTDBMI, cchs2012_s::HWTDBMI, [HWTGBMI]",cont,NA::b,N/A,missing,missing,kg/m2,else,else,BMI,"BMI / self-report - (D,G)", -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]",N/A,Func::bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,"BMI variable derived from the harmonized height and weight variables. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console." -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]",N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4N/A_Func::bmi_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],N/A,Func::bmi_fun_cat,N/A,N/A,N/A,kg/m2,N/A,N/A,Categorical BMI,Categorical body mass index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],N/A,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI,Categorical body mass index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],N/A,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI,Categorical body mass index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],N/A,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI,Categorical body mass index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],N/A,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI,Categorical body mass index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],N/A,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI,Categorical body mass index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],N/A,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI,Categorical body mass index, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,copy,N/A,Adjusted BMI,Adjusted body mass index,kg/m2,"[14.23,56.72]",Adjusted BMI,Adjusted BMI,Adjusted BMI, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,Adjusted BMI,Adjusted BMI, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Adjusted BMI,Adjusted BMI, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,NA::b,N/A,missing,missing,kg/m2,else,else,Adjusted BMI,Adjusted BMI, -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]",N/A,Func::adjusted_bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,"Adjusted BMI variable derived from the harmonized sex, height and weight variables. See documentation for adjusted_bmi_fun() in derived variables for more details, or type ?adjusted_bmi_fun in the console." -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX,HWTGHTM, HWTGWTK]",N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.118,N/A,Height,converted height (3'8 IN - 44 inches),meters,1,3'8 IN - 44 inches,Height,"Height (metres)/self-reported - (D,G)","2001 and 2003 CCHS use inches, values converted to meters to 3 decimal points" -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.143,N/A,Height,converted height (3'9 IN - 45 inches),meters,2,3'9 IN - 45 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.168,N/A,Height,converted height (3'10 IN - 46 inches),meters,3,3'10 IN - 46 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.194,N/A,Height,converted height (3'11 IN - 47 inches),meters,4,3'11 IN - 47 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.219,N/A,Height,converted height (4'0 IN - 48 inches),meters,5,4'0 IN - 48 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.245,N/A,Height,converted height (4'1 IN - 49 inches),meters,6,4'1 IN - 49 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.27,N/A,Height,converted height (4'2 IN - 50 inches),meters,7,4'2 IN - 50 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.295,N/A,Height,converted height (4'3 IN - 51 inches),meters,8,4'3 IN - 51 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.321,N/A,Height,converted height (4'4 IN - 52 inches),meters,9,4'4 IN - 52 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.346,N/A,Height,converted height (4'5 IN - 53 inches),meters,10,4'5 IN - 53 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.372,N/A,Height,converted height (4'6 IN - 54 inches),meters,11,4'6 IN - 54 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.397,N/A,Height,converted height (4'7 IN - 55 inches),meters,12,4'7 IN - 55 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.422,N/A,Height,converted height (4'8 IN - 56 inches),meters,13,4'8 IN - 56 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.448,N/A,Height,converted height (4'9 IN - 57 inches),meters,14,4'9 IN - 57 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.473,N/A,Height,converted height (4'10 IN - 58 inches),meters,15,4'10 IN - 58 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.499,N/A,Height,converted height (4'11 in - 59 inches),meters,16,4'11 in - 59 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.524,N/A,Height,converted height (5'0 IN - 60 inches),meters,17,5'0 IN - 60 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.549,N/A,Height,converted height (5'1 IN - 61 inches),meters,18,5'1 IN - 61 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.575,N/A,Height,converted height (5'2 IN - 62 inches),meters,19,5'2 IN - 62 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.6,N/A,Height,converted height (5'3 IN - 63 inches),meters,20,5'3 IN - 63 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.626,N/A,Height,converted height (5'4 IN - 64 inches),meters,21,5'4 IN - 64 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.651,N/A,Height,converted height (5'5 IN - 65 inches),meters,22,5'5 IN - 65 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.676,N/A,Height,converted height (5'6 IN - 66 inches),meters,23,5'6 IN - 66 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.702,N/A,Height,converted height (5'7 IN - 67 inches),meters,24,5'7 IN - 67 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.727,N/A,Height,converted height (5'8 IN - 68 inches),meters,25,5'8 IN - 68 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.753,N/A,Height,converted height (5'9 IN - 69 inches),meters,26,5'9 IN - 69 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.778,N/A,Height,converted height (5'10 IN - 70 inches),meters,27,5'10 IN - 70 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.803,N/A,Height,converted height (5'11 IN - 71 inches),meters,28,5'11 IN - 71 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.829,N/A,Height,converted height (6'0 IN - 72 inches),meters,29,6'0 IN - 72 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.854,N/A,Height,converted height (6'1 IN - 73 inches),meters,30,6'1 IN - 73 inches,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.93,N/A,Height,converted height (6'2 IN+ - 74+ inches),meters,31,6'2 IN+ - 74+ inches,Height,"Height (metres)/self-reported - (D,G)",74+ inches converted to 76 inches -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,NA::a,N/A,not applicable,not applicable,meters,96,not applicable,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,NA::b,N/A,missing,missing,meters,99,not stated (99),Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",cont,copy,N/A,Height,Height,meters,"[0.914,2.134]",Height,Height,"Height (metres)/self-reported - (D,G)",Height is a reported in meters from 2005 CCHS onwards -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",cont,NA::b,N/A,missing,missing,meters,"[9.997,9.999]","don't know (9.997), refusal (9.998), not stated (9.999)",Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2009_s::HWTDHTM, cchs2010_s::HWTDHTM, cchs2012_s::HWTDHTM, [HWTGHTM]",cont,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",cont,copy,N/A,Weight,Weight - kilograms,kg,"[27.0,135.0]","Weight - kilograms (D, G)",Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",cont,NA::b,N/A,missing,missing,kg,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,cont,NA::a,N/A,not applicable,not applicable,kg,996,not applicable,Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,cont,NA::b,N/A,missing,missing,kg,"[997,999]",don't know (997); refusal (998); not stated (999),Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2009_s::HWTDWTK, cchs2010_s::HWTDWTK, cchs2012_s::HWTDWTK, [HWTGWTK]",cont,NA::b,N/A,missing,missing,kg,else,else,Weight,"Weight - kilograms (D, G)", -immigration_der,immigration_derN/A_Func::immigration_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,Func::immigration_fun,N/A,N/A,N/A,N/A,N/A,N/A,Immigration category,Immigration category,"Derived from SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES" -immigration_der,immigration_der_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,1,6,White Canada-born,White Canada-born,N/A,1,White Canada-born,Immigration category,Immigration category, -immigration_der,immigration_der_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,2,6,Non-white Canadian born,Non-white Canadian born,N/A,2,Non-white Canadian born,Immigration category,Immigration category, -immigration_der,immigration_der_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,3,6,White immigrant born outside of Canada (0-9 years in Canada),White immigrant born outside of Canada (0-9 years in Canada),N/A,3,White immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,4,6,Non-white immigrant born outside of Canada (0-9 years in Canada),Non-white immigrant born outside of Canada (0-9 years in Canada),N/A,4,Non-white immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,5,6,White immigrant born outside of Canada (10+ years in Canada),White immigrant born outside of Canada (10+ years in Canada),N/A,5,White immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,6,6,Non-white immigrant born outside of Canada (10+ years in Canada),Non-white immigrant born outside of Canada (10+ years in Canada),N/A,6,Non-white immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,NA::a,6,not applicable,not applicable,N/A,NA::a,not applicable,Immigration category,Immigration category, -immigration_der,immigration_der_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,NA::b,6,missing,missing,N/A,NA::b,missing,Immigration category,Immigration category, -INCDRCA,INCDRCA_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution,Household income distribution - (D), -INCDRPR,INCDRPR_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D), -INCDRRS,INCDRRS_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution health region level,Hhld inc. distribution- hr level - (D), -INCGHH_A,INCGHH_A_cat6_1,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories" -INCGHH_A,INCGHH_A_cat6_2,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_3,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_4,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_5,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_6,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::a,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_1,cat,cchs2012_s,[INCDHH],cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_2,cat,cchs2012_s,[INCDHH],cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_3,cat,cchs2012_s,[INCDHH],cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_4,cat,cchs2012_s,[INCDHH],cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_5,cat,cchs2012_s,[INCDHH],cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_6,cat,cchs2012_s,[INCDHH],cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::a,cat,cchs2012_s,[INCDHH],cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_1,cat,cchs2001_p,[INCAGHH],cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,2]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories" -INCGHH_B,INCGHH_B_cat5_2,cat,cchs2001_p,[INCAGHH],cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_3,cat,cchs2001_p,[INCAGHH],cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_4,cat,cchs2001_p,[INCAGHH],cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_5,cat,cchs2001_p,[INCAGHH],cat,5,5,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::a,cat,cchs2001_p,[INCAGHH],cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2001_p,[INCAGHH],cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2001_p,[INCAGHH],cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2003 and 2005 classifies no income and less than $15,000 as one category" -INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_1,cat,cchs2012_s,[INCDHH],cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_2,cat,cchs2012_s,[INCDHH],cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_3,cat,cchs2012_s,[INCDHH],cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_4,cat,cchs2012_s,[INCDHH],cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_5,cat,cchs2012_s,[INCDHH],cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::a,cat,cchs2012_s,[INCDHH],cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_1,cat,cchs2012_s,[INCDHH],cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_2,cat,cchs2012_s,[INCDHH],cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_3,cat,cchs2012_s,[INCDHH],cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_4,cat,cchs2012_s,[INCDHH],cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_5,cat,cchs2012_s,[INCDHH],cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::a,cat,cchs2012_s,[INCDHH],cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,5,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_7,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_8,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_9,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_10,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_11,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_12,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,12,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_1,cat,cchs2012_s,[INCDHH],cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_2,cat,cchs2012_s,[INCDHH],cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_3,cat,cchs2012_s,[INCDHH],cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_4,cat,cchs2012_s,[INCDHH],cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_5,cat,cchs2012_s,[INCDHH],cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_6,cat,cchs2012_s,[INCDHH],cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_7,cat,cchs2012_s,[INCDHH],cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_8,cat,cchs2012_s,[INCDHH],cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_9,cat,cchs2012_s,[INCDHH],cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_10,cat,cchs2012_s,[INCDHH],cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_11,cat,cchs2012_s,[INCDHH],cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_12,cat,cchs2012_s,[INCDHH],cat,12,12,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_NA::a,cat,cchs2012_s,[INCDHH],cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,12,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_D,INCGHH_D_cat12_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_1,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_2,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_3,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_4,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_5,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_6,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_7,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_8,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_9,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_10,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_11,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_12,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_13,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_14,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_NA::a,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,14,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_NA::b,cat,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_1,cat,cchs2012_s,[INCDHH],cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_2,cat,cchs2012_s,[INCDHH],cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_3,cat,cchs2012_s,[INCDHH],cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_4,cat,cchs2012_s,[INCDHH],cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_5,cat,cchs2012_s,[INCDHH],cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_6,cat,cchs2012_s,[INCDHH],cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_7,cat,cchs2012_s,[INCDHH],cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_8,cat,cchs2012_s,[INCDHH],cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_9,cat,cchs2012_s,[INCDHH],cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_10,cat,cchs2012_s,[INCDHH],cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_11,cat,cchs2012_s,[INCDHH],cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_12,cat,cchs2012_s,[INCDHH],cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_13,cat,cchs2012_s,[INCDHH],cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_14,cat,cchs2012_s,[INCDHH],cat,14,14,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_NA::a,cat,cchs2012_s,[INCDHH],cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,14,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_E,INCGHH_E_cat14_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_1,cat,cchs2012_s,[INCDHH],cat,1,15,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_2,cat,cchs2012_s,[INCDHH],cat,2,15,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_3,cat,cchs2012_s,[INCDHH],cat,3,15,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_4,cat,cchs2012_s,[INCDHH],cat,4,15,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_5,cat,cchs2012_s,[INCDHH],cat,5,15,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_6,cat,cchs2012_s,[INCDHH],cat,6,15,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_7,cat,cchs2012_s,[INCDHH],cat,7,15,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_8,cat,cchs2012_s,[INCDHH],cat,8,15,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_9,cat,cchs2012_s,[INCDHH],cat,9,15,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_10,cat,cchs2012_s,[INCDHH],cat,10,15,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_11,cat,cchs2012_s,[INCDHH],cat,11,15,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_12,cat,cchs2012_s,[INCDHH],cat,12,15,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_13,cat,cchs2012_s,[INCDHH],cat,13,15,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_14,cat,cchs2012_s,[INCDHH],cat,14,15,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_15,cat,cchs2012_s,[INCDHH],cat,15,15,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_NA::a,cat,cchs2012_s,[INCDHH],cat,NA::a,15,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,15,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_F,INCGHH_F_cat15_NA::b,cat,cchs2012_s,[INCDHH],cat,NA::b,15,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,7500,N/A,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,10000,N/A,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,30000,N/A,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2009_s, cchs2010_s",[INCDHH],cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,125000,N/A,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,170000,N/A,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2012_s,[INCDHH],cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",CCHS 2001 missing 97 (don't know) and 98 (refusal) -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,"[5,6]","$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,2,6,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,2,6,"Less than $20,000","Less than $20,000",$/year,"[2,5]","Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,"[6,7]","$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,1,12,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,12,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_C,INCGPER_C_cat12_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,12,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,1,14,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_14,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,14,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_D,INCGPER_D_cat14_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,14,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,22500,N/A,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,10000,N/A,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,30000,N/A,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER],cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)", -LBFA_31A,LBFA_31A_cat9_1,cat,cchs2001_p,[LBFA_31A],cat,1,9,Management,Management,N/A,1,Management,Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_2,cat,cchs2001_p,[LBFA_31A],cat,2,9,Professional (including accountants),Professional (including accountants),N/A,2,Professional (including accountants),Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_3,cat,cchs2001_p,[LBFA_31A],cat,3,9,"Technologist, Technician or Tech Occ","Technologist, Technician or Tech Occ",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_4,cat,cchs2001_p,[LBFA_31A],cat,4,9,"Administrative, Financial or Clerical","Administrative, Financial or Clerical",N/A,4,"Administrative, Financial or Clerical",Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_5,cat,cchs2001_p,[LBFA_31A],cat,5,9,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_6,cat,cchs2001_p,[LBFA_31A],cat,6,9,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_7,cat,cchs2001_p,[LBFA_31A],cat,7,9,"Farming, Forestry, Fishing, Mining","Farming, Forestry, Fishing, Mining",N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_8,cat,cchs2001_p,[LBFA_31A],cat,8,9,"Processing, Manufacturing, Utilities","Processing, Manufacturing, Utilities",N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_9,cat,cchs2001_p,[LBFA_31A],cat,9,9,Other,Other,N/A,9,Other,Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_NA::a,cat,cchs2001_p,[LBFA_31A],cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Main job or business, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,9,missing,missing,N/A,else,else,Occupation group,Main job or business, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,3,5,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,5,missing,missing,N/A,9,not stated,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018." -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,cchs2001_p,[LBFA_31A],cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,cchs2001_p,[LBFA_31A],cat,3,5,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,cchs2001_p,[LBFA_31A],cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018." -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018." -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,5,missing,missing,N/A,9,Other,Occupation group,Occupation Group,"""Other"" has no equivalent in LBSGSOC recoded to 'NA::b' missing" -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,cchs2001_p,[LBFA_31A],cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018." -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018." -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,3,5,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::a,5,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,3,6,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,6,missing,missing,N/A,9,not stated,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018." -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,cchs2001_p,[LBFA_31A],cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,cchs2001_p,[LBFA_31A],cat,3,6,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,cchs2001_p,[LBFA_31A],cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018." -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018." -LBFA_31A_b,LBFA_31A_b_cat6_6,cat,cchs2001_p,[LBFA_31A],cat,6,6,Other,Other,N/A,9,Other,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,cchs2001_p,[LBFA_31A],cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018." -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018." -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,3,6,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::a,6,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,1,10,Management,Management,N/A,1,Management,Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,2,10,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,3,10,"Natural and Applied Science, Religious","Natural and Applied Science, Religious",N/A,3,"Natural and Applied Science, Religious",Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,4,10,Health,Health,N/A,4,Health,Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,5,10,"Social Science, Education, Government, Religion","Social Science, Education, Government, Religion",N/A,5,"Social Science, Education, Government, Religion",Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,6,10,"Culture, Recreation, Sport","Culture, Recreation, Sport",N/A,6,"Culture, Recreation, Sport",Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,7,10,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,8,10,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,9,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,9,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,10,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,10,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::a,10,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option -LBFA_31A_c,LBFA_31A_c_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group, -LBFA_31A_c,LBFA_31A_c_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG],cat,NA::b,10,missing,missing,N/A,else,else,Occupation group,Occupation Group, -low_drink_score,low_drink_score_cat4N/A_Func::low_drink_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,Func::low_drink_score_fun,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY." -low_drink_score,low_drink_score_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,1,4,Low risk,Low risk,N/A,1,Low risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,2,4,Marginal risk,Marginal risk,N/A,2,Marginal risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,3,4,Medium risk,Medium risk,N/A,3,Medium risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,4,4,High risk,High risk,N/A,4,High risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,NA::b,4,missing,missing,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score, -low_drink_score1,low_drink_score1_cat5N/A_Func::low_drink_score_fun1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,Func::low_drink_score_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,1,5,Low risk - never drank,Low risk - never drank,N/A,N/A,Low risk - never drank,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,2,5,Low risk - former drinker,Low risk - former drinker,N/A,N/A,Low risk - former drinker,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,3,5,Marginal risk,Marginal risk,N/A,N/A,Marginal risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,4,5,Medium risk,Medium risk,N/A,N/A,Medium risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,5,5,High risk,High risk,N/A,N/A,High risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,NA::b,5,missing,missing,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -MED_1P,MED_1P_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,1,2,Yes,Yes,N/A,1,Yes,Sleeping pills,"In the past month, did you take sleeping pills",CCHS 2001 does not provide examples of sleeping pills in its literal question -MED_1P,MED_1P_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,2,2,No,No,N/A,2,No,Sleeping pills,"In the past month, did you take sleeping pills", -MED_1P,MED_1P_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sleeping pills,"In the past month, did you take sleeping pills", -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleeping pills,"In the past month, did you take sleeping pills", -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,NA::b,2,missing,missing,N/A,else,else,Sleeping pills,"In the past month, did you take sleeping pills", -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun1,cat,cchs2001_p,"DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",N/A,Func::multiple_conditions_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, resp_condition, CCC_050" -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,Func::multiple_conditions_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition, CCC_051. Variable can be extended to 2018 when bowel condition not included." -number_conditions,number_conditions_cat6_0,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,0,6,0,0,N/A,N/A,0,Number of conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,1,6,1,1,N/A,N/A,1,Number of conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,2,6,2,2,N/A,N/A,2,Number of conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,3,6,3,3,N/A,N/A,3,Number of conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,4,6,4,4,N/A,N/A,4,Number of conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_5+,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,5+,6,5+,5+,N/A,N/A,5+,Number of conditions,Number of chronic conditions, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,160]",No. hours sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,1680]",No. minutes sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old), -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,168]",No. hours sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes." -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old), -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old), -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old), -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,4880]",No. minutes sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes." -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old), -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old), -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,copy,N/A,No. active days - 7d,No. active days - 7d,days,"[0,7]",No. active days - 7d,Active days (18+ years old),Number of active days (18+ years old), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (18+ years old),Number of active days (18+ years old), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (18+ years old),Number of active days (18+ years old), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,NA::b,N/A,missing,missing,days,else,else,Active days (18+ years old),Number of active days (18+ years old), -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,10080]",No. minutes of active transportation,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old), -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old), -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old), -PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old), -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,copy,N/A,No. minutes - vigorous physical activity - 7d,No. minutes - vigorous physical activity - 7d,minutes/week,"[0,6000]",No. minutes - vigorous physical activity - 7d,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old), -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old), -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old), -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old), -PAC_4A,PAC_4A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,1,6,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::b,6,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,0,N/A,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::b,N/A,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,1,6,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::b,6,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,0,N/A,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::b,N/A,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands", -PAC_7,PAC_7_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],cat,1,3,Yes,Yes,N/A,1,Yes,Walk to work/school,Walked to work or school / last 3 mo., -PAC_7,PAC_7_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],cat,2,3,No,No,N/A,2,No,Walk to work/school,Walked to work or school / last 3 mo., -PAC_7,PAC_7_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Walk to work/school,Walked to work or school / last 3 mo., -PAC_7,PAC_7_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Walk to work/school,Walked to work or school / last 3 mo., -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Walk to work/school,Walked to work or school / last 3 mo., -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7],cat,NA::b,3,missing,missing,N/A,else,else,Walk to work/school,Walked to work or school / last 3 mo., -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],cont,copy,N/A,No. of times/3 mo./walking work/school,No. of times walking work/school,N/A,"[1,270]",No. of times walking work/school,Number times walk work/school,No. of times/3 mo./walking work/school, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Number times walk work/school,No. of times/3 mo./walking work/school, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Number times walk work/school,No. of times/3 mo./walking work/school, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A],cont,NA::b,N/A,missing,missing,N/A,else,else,Number times walk work/school,No. of times/3 mo./walking work/school, -PAC_7B,PAC_7B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time walk work/school,Time spent - walking to go work/school, -PAC_7B,PAC_7B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time walk work/school,Time spent - walking to go work/school, -PAC_7B,PAC_7B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time walk work/school,Time spent - walking to go work/school, -PAC_7B,PAC_7B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time walk work/school,Time spent - walking to go work/school, -PAC_7B,PAC_7B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,NA::b,4,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time walk work/school,Time spent - walking to go work/school, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time walk work/school,Time spent - walking to go work/school, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time walk work/school,Time spent - walking to go work/school, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time walk work/school,Time spent - walking to go work/school, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school, -PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B],cat,NA::b,N/A,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school, -PAC_8,PAC_8_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],cat,1,3,Yes,Yes,N/A,1,Yes,Bike to work/school,Bicycled to work or school / last 3 mo., -PAC_8,PAC_8_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],cat,2,3,No,No,N/A,2,No,Bike to work/school,Bicycled to work or school / last 3 mo., -PAC_8,PAC_8_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Bike to work/school,Bicycled to work or school / last 3 mo., -PAC_8,PAC_8_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Bike to work/school,Bicycled to work or school / last 3 mo., -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bike to work/school,Bicycled to work or school / last 3 mo., -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8],cat,NA::b,3,missing,missing,N/A,else,else,Bike to work/school,Bicycled to work or school / last 3 mo., -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],cont,copy,N/A,No. of times/3 mo./biking work/school,No. of times biking work/school,times/3 mos.,"[1,270]",No. of times biking work/school,Number times bike work/school,No. of times/3 mo./bicycl. work/school, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],cont,NA::a,N/A,not applicable,not applicable,times/3 mos.,996,not applicable,Number times bike work/school,No. of times/3 mo./bicycl. work/school, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],cont,NA::b,N/A,missing,missing,times/3 mos.,"[997,999]",don't know (997); refusal (998); not stated (999),Number times bike work/school,No. of times/3 mo./bicycl. work/school, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A],cont,NA::b,N/A,missing,missing,times/3 mos.,else,else,Number times bike work/school,No. of times/3 mo./bicycl. work/school, -PAC_8B,PAC_8B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time bike work/school,Time spent - biking to go work/school, -PAC_8B,PAC_8B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time bike work/school,Time spent - biking to go work/school, -PAC_8B,PAC_8B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time bike work/school,Time spent - biking to go work/school, -PAC_8B,PAC_8B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time bike work/school,Time spent - biking to go work/school, -PAC_8B,PAC_8B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,NA::b,4,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time bike work/school,Time spent - biking to go work/school, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time bike work/school,Time spent - biking to go work/school, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time bike work/school,Time spent - biking to go work/school, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time bike work/school,Time spent - biking to go work/school, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school, -PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B],cat,NA::b,N/A,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,copy,N/A,Physical Activity,Average daily leisure time energy expenditure in METs,METS,"[0,43.5]",Daily energy expenditure - (D),Physical activity,Daily energy expenditure - (D),Refer to energy_exp for PACDEE all cycles -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::a,N/A,not applicable,not applicable,METS,99.6,Not applicable,Physical activity,Daily energy expenditure - (D), -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Physical activity,Daily energy expenditure - (D),Don't know (99.7) and refusal (99.8) not included in 2001 CCHS -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,METS,else,else,Physical activity,Daily energy expenditure - (D), -PACDEE_cat3,PACDEE_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,1,3,Inactive,Inactive - leisure activity,METS,"[0,1.5)",Inactive - leisure activity,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,2,3,Moderately active,Moderately active - leisure activity,METS,"[1.5,3)",Moderately active - leisure activity,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,3,3,Active,Active - leisure activity,METS,"[3,43.5]",Active - leisure activity,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::a,3,not applicable,not applicable,METS,99.6,Not applicable,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,3,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,3,missing,missing,METS,else,else,Categorical physical activity,Categorical daily energy expenditure, -pack_years_cat,pack_years_catN/A_Func::pack_years_fun_cat,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,Func::pack_years_fun_cat,N/A,N/A,N/A,pack-years,N/A,N/A,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,1,8,0,0 pack-years,pack-years,N/A,0 pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,2,8,0 to 0.01,0 to 0.01 pack-years,pack-years,N/A,0 to 0.01 pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,3,8,0.01 to 3.0,0.01 to 3.0 pack-years,pack-years,N/A,0.01 to 3.0 pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,4,8,3.0 to 9.0,3.0 to 9.0 pack-years,pack-years,N/A,3.0 to 9.0 pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,5,8,9.0 to 16.2,9.0 to 16.2 pack-years,pack-years,N/A,9.0 to 16.2 pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,6,8,16.2 to 25.7,16.2 to 25.7 pack-years,pack-years,N/A,16.2 to 25.7 pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_7,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,7,8,25.7 to 40.0,25.7 to 40.0 pack-years,pack-years,N/A,25.7 to 40.0 pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_8,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,8,8,40.0+,40.0+ pack-years,pack-years,N/A,40.0+ pack-years,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,NA::a,8,not applicable,not applicable,pack-years,N/A,not applicable,Categorical PackYears,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],N/A,NA::b,8,missing,missing,pack-years,N/A,missing,Categorical PackYears,Categorical smoking pack-years, -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",N/A,Func::pack_years_fun,N/A,N/A,N/A,pack-years,N/A,N/A,PackYears,Smoking pack-years,PackYears variable derived from various harmonized smoking variables -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",N/A,NA::b,N/A,missing,missing,pack-years,N/A,N/A,PackYears,Smoking pack-years, -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,copy,N/A,No. minutes of leisure activities,No. minutes of leisure activities,minutes/week,"[0,4140]",No. minutes of leisure activities,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old), -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old), -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old), -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old), -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,copy,N/A,No. physically active days,No. physically active days,days,"[0,7]",No. physically active days,Active days (12-17 years old),Number of active days (12-17 years old), -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (12-17 years old),Number of active days (12-17 years old), -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (12-17 years old),Number of active days (12-17 years old), -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,NA::b,N/A,missing,missing,days,else,else,Active days (12-17 years old),Number of active days (12-17 years old), -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,copy,N/A,No. minutes of other activities,No. minutes of other activities,minutes/week,"[0,4980]",No. minutes of other activities,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old), -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old), -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old), -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old), -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,6300]",No. minutes of active transportation,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old), -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old), -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old), -PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,copy,N/A,No. minutes of vigorous activities,No. minutes of vigorous activities,minutes/week,"[0,2880]",No. minutes of vigorous activities,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old), -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",N/A,Func::pct_time_fun,N/A,N/A,N/A,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,"Percent time in Canada derived from Age, immigration status, and time in Canada variables" -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",N/A,NA::b,N/A,missing,missing,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10N/A_Func::pct_time_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,Func::pct_time_fun_cat,N/A,N/A,N/A,%,N/A,N/A,Categorical percent time in Canada,Categorical percentage of time in Canada,Categorical percent time in Canada derived from pct_time_der -pct_time_der_cat10,pct_time_der_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,1,10,10%,10% time in Canada,%,1,10% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,2,10,20%,20% time in Canada,%,2,20% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,3,10,30%,30% time in Canada,%,3,30% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,4,10,40%,40% time in Canada,%,4,40% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,5,10,50%,50% time in Canada,%,5,50% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,6,10,60%,60% time in Canada,%,6,60% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,7,10,70%,70% time in Canada,%,7,70% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,8,10,80%,80% time in Canada,%,8,80% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,9,10,90%,90% time in Canada,%,9,90% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,10,10,100%,100% time in Canada,%,10,100% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,NA::a,10,not applicable,not applicable,%,NA::a,not applicable,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],N/A,NA::b,10,missing,missing,%,NA::b,missing,Categorical percent time in Canada,Categorical percentage of time in Canada, -RAC_1,RAC_1_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Difficulty activities,Has difficulty with activities, -RAC_1,RAC_1_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",cat,2,3,Often,Often,N/A,2,Often,Difficulty activities,Has difficulty with activities, -RAC_1,RAC_1_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",cat,3,3,Never,Never,N/A,3,Never,Difficulty activities,Has difficulty with activities, -RAC_1,RAC_1_cat3_NA::a,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty activities,Has difficulty with activities, -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty activities,Has difficulty with activities, -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities, -RAC_1,RAC_1_cat3_NA::a,cat,cchs2003_p,cchs2003_p::RACC_1,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Difficulty activities,Has difficulty with activities,CCHS 2003 codes N/A as 96 and missing as 97-99 -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Difficulty activities,Has difficulty with activities, -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities, -RAC_2A,RAC_2A_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at home,Reduction - activities at home, -RAC_2A,RAC_2A_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,2,3,Often,Often,N/A,2,Often,Reduction activities at home,Reduction - activities at home, -RAC_2A,RAC_2A_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,3,3,Never,Never,N/A,3,Never,Reduction activities at home,Reduction - activities at home, -RAC_2A,RAC_2A_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction activities at home,Reduction - activities at home, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at home,Reduction - activities at home, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at home,Reduction - activities at home, -RAC_2B,RAC_2B_cat3_1,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school or work,Long-term cond. reduces act. - school or work,"In CCHS 2001, work and school reduction were combined into one variable. From CCHS 2003 onwards they were split into 2 variables (RAC_2B1 & RAC_2B2)" -RAC_2B,RAC_2B_cat3_2,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,2,3,Often,Often,N/A,2,Often,Reduction activities at school or work,Long-term cond. reduces act. - school or work, -RAC_2B,RAC_2B_cat3_3,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,3,3,Never,Never,N/A,3,Never,Reduction activities at school or work,Long-term cond. reduces act. - school or work, -RAC_2B,RAC_2B_cat3_NA::a,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,NA::a,3,not applicable,not applicable,N/A,4,not applicable,Reduction activities at school or work,Long-term cond. reduces act. - school or work, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school or work,Long-term cond. reduces act. - school or work, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at school or work,Long-term cond. reduces act. - school or work, -RAC_2B1,RAC_2B1_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school,Long-term cond. reduces act. - school, -RAC_2B1,RAC_2B1_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,2,4,Often,Often,N/A,2,Often,Reduction activities at school,Long-term cond. reduces act. - school, -RAC_2B1,RAC_2B1_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,3,4,Never,Never,N/A,3,Never,Reduction activities at school,Long-term cond. reduces act. - school, -RAC_2B1,RAC_2B1_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,4,4,Not attend school,Not attend school,N/A,4,Not attend school,Reduction activities at school,Long-term cond. reduces act. - school, -RAC_2B1,RAC_2B1_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at school,Long-term cond. reduces act. - school, -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school,Long-term cond. reduces act. - school, -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at school,Long-term cond. reduces act. - school, -RAC_2B2,RAC_2B2_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at work,Reduction kind/amount act. - at work, -RAC_2B2,RAC_2B2_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,2,4,Often,Often,N/A,2,Often,Reduction activities at work,Reduction kind/amount act. - at work, -RAC_2B2,RAC_2B2_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,3,4,Never,Never,N/A,3,Never,Reduction activities at work,Reduction kind/amount act. - at work, -RAC_2B2,RAC_2B2_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,4,4,Has no job,Has no job,N/A,4,Has no job,Reduction activities at work,Reduction kind/amount act. - at work, -RAC_2B2,RAC_2B2_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at work,Reduction kind/amount act. - at work, -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at work,Reduction kind/amount act. - at work, -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at work,Reduction kind/amount act. - at work, -RAC_2C,RAC_2C_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction other activities,Reduction - other activities, -RAC_2C,RAC_2C_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,2,3,Often,Often,N/A,2,Often,Reduction other activities,Reduction - other activities, -RAC_2C,RAC_2C_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,3,3,Never,Never,N/A,3,Never,Reduction other activities,Reduction - other activities, -RAC_2C,RAC_2C_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction other activities,Reduction - other activities, -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction other activities,Reduction - other activities, -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,NA::b,3,missing,missing,N/A,else,else,Reduction other activities,Reduction - other activities, -RACAG5,RACAG5_cat4_1,cat,cchs2001_p,cchs2001_p::RACAG5,cat,1,4,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem,"CCHS 2001 has different categories from other cycles, hence a new variable created" -RACAG5,RACAG5_cat4_2,cat,cchs2001_p,cchs2001_p::RACAG5,cat,2,4,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem, -RACAG5,RACAG5_cat4_3,cat,cchs2001_p,cchs2001_p::RACAG5,cat,3,4,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem, -RACAG5,RACAG5_cat4_4,cat,cchs2001_p,cchs2001_p::RACAG5,cat,4,4,Other,Other,N/A,4,Other,Cause health problem,Cause of Health problem, -RACAG5,RACAG5_cat4_NA::a,cat,cchs2001_p,cchs2001_p::RACAG5,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Cause health problem,Cause of Health problem, -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Cause health problem,Cause of Health problem, -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,cat,NA::b,4,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem, -RACDIMP,RACDIMP_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Impact health problem,Impact of health problems, -RACDIMP,RACDIMP_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,2,3,Often,Often,N/A,2,Often,Impact health problem,Impact of health problems, -RACDIMP,RACDIMP_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,3,3,Never,Never,N/A,3,Never,Impact health problem,Impact of health problems, -RACDIMP,RACDIMP_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Impact health problem,Impact of health problems, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Impact health problem,Impact of health problems, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,NA::b,3,missing,missing,N/A,else,else,Impact health problem,Impact of health problems, -RACDPAL,RACDPAL_catN/A_Func::RACDPAL_fun,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,Func::RACDPAL_fun,N/A,N/A,N/A,N/A,N/A,N/A,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_1,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,1,3,Sometimes,Sometimes,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_2,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,2,3,Often,Often,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_3,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,3,3,Never,Never,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::b,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,NA::b,3,missing,missing,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,2,3,Often,Often,N/A,2,Often,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,3,3,Never,Never,N/A,3,Never,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Particpation/activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,NA::b,3,missing,missing,N/A,else,else,Particpation/activity limitation,Participation and activity limitation, -RACG5,RACG5_cat6_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,1,6,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,2,6,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,3,6,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,4,6,Existed at birth,Existed at birth,N/A,4,Existed at birth,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,5,6,Work conditions,Work conditions,N/A,5,Work conditions,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,6,6,Other,Other,N/A,6,Other,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,1,6,Injury,Injury,N/A,"[1,4]",Injury,Cause health problem,Cause of Health problem,"For CCHS 2007-2008 and shared files, cause of health problem groupings based on 2009-2010 derived variable documentation." -RACG5,RACG5_cat6_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,2,6,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,3,6,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,4,6,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,5,6,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,6,6,Other,Other,N/A,"[9,11]",Other,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem, -RACG5,RACG5_cat6_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,1,11,Accident at home,Accident at home,N/A,1,Accident at home,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,2,11,Motor vehicle accident,Motor vehicle accident,N/A,2,Motor vehicle accident,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,3,11,Accident at work,Accident at work,N/A,3,Accident at work,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,4,11,Other type of accident,Other type of accident,N/A,4,Other type of accident,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,5,11,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,6,11,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,7,11,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,8,11,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,9,11,Emotional/mental health problems,Emotional/mental health problems,N/A,9,Emotional/mental health problems,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,10,11,Use of alcohol or drugs,Use of alcohol or drugs,N/A,10,Use of alcohol or drugs,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,11,11,Other,Other,N/A,11,Other,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,NA::b,11,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem, -RACG5_A,RACG5_A_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5],cat,NA::b,11,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",N/A,Func::resp_condition_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables" -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun2,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,Func::resp_condition_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables" -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun3,cat,"cchs2001_p, cchs2003_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]",N/A,Func::resp_condition_fun3,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD and Emphysema variables" -resp_condition_der,resp_condition_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition, -resp_condition_der,resp_condition_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition, -resp_condition_der,resp_condition_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition, -resp_condition_der,resp_condition_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,Respiratory condition,Respiratory condition, -SDC_5A_1,SDC_5A_1_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,1,4,English ,English only,N/A,1,English ,Knowledge of official languages,Knowledge of official languages, -SDC_5A_1,SDC_5A_1_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,2,4,French,French only,N/A,2,French,Knowledge of official languages,Knowledge of official languages, -SDC_5A_1,SDC_5A_1_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,3,4,English & French,English & French,N/A,3,English & French,Knowledge of official languages,Knowledge of official languages, -SDC_5A_1,SDC_5A_1_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,4,4,Neither,Neither English nor French,N/A,4,Neither,Knowledge of official languages,Knowledge of official languages, -SDC_5A_1,SDC_5A_1_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Knowledge of official languages,Knowledge of official languages, -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Knowledge of official languages,Knowledge of official languages, -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,NA::b,4,missing,missing,N/A,else,else,Knowledge of official languages,Knowledge of official languages, -SDCDFOLS,SDCDFOLS_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,1,4,English ,English only,N/A,1,English ,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,2,4,French,French only,N/A,2,French,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,3,4,English & French,English & French,N/A,3,English & French,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,4,4,Neither,Neither English nor French,N/A,4,Neither,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)" -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)" -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,NA::b,4,missing,missing,N/A,else,else,First official language spoken,First official language spoken, -SDCFIMM,SDCFIMM_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,1,2,Yes,Yes,N/A,1,Yes,Immigrant status,Immigrant Status (D), -SDCFIMM,SDCFIMM_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,2,2,No,No,N/A,2,No,Immigrant status,Immigrant Status (D), -SDCFIMM,SDCFIMM_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Immigrant status,Immigrant Status (D), -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Immigrant status,Immigrant Status (D), -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status,Immigrant Status (D), -SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,2,2,Other,Other,N/A,2,Other,Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Country of birth,Country of birth - (G),CCHS 2001 does not have don't know (7) or refusal (8) -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,NA::b,2,missing,missing,N/A,else,else,Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,2,2,Other,Other,N/A,"[2,7]",Other,Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Country of birth,Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,NA::b,2,missing,missing,N/A,else,else,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,1,7,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,2,7,Other North America,Other North America,N/A,2,Other North America,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,3,7,"South, Central America and Caribbean","South, Central America and Caribbean",N/A,3,"South, Central America and Caribbean",Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,4,7,Europe,Europe,N/A,4,Europe,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,5,7,Africa,Africa,N/A,5,Africa,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,6,7,Asia,Asia,N/A,6,Asia,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,7,7,Oceania,Oceania,N/A,7,Oceania,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Country of birth,Country of birth - (G), -SDCGCBG_A,SDCGCBG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]",cat,NA::b,7,missing,missing,N/A,else,else,Country of birth,Country of birth - (G), -SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,2,2,Non-white,Non-white,N/A,2,Visible minority,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ethnicity,"Cultural or racial origin - (D, G)","CCHS 2001 missing don't know (7), refusal (8)" -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,2,2,Non-white,Non-white,N/A,"[2,13]",Visible minority,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT_A,SDCGCGT_A_cat13_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,1,13,White,White,N/A,1,White,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,2,13,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,3,13,Korean,Korean,N/A,3,Korean,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,4,13,Filipino,Filipino,N/A,4,Filipino,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,5,13,Japanese,Japanese,N/A,5,Japanese,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,6,13,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,7,13,South Asian,South Asian,N/A,7,South Asian,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,8,13,Southeast Asian,Southeast Asian,N/A,8,Southeast Asian,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,9,13,Arab,Arab,N/A,9,Arab,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,10,13,West Asian,West Asian,N/A,10,West Asian,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,11,13,Latin American,Latin American,N/A,11,Latin American,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_12,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,12,13,Other,Other,N/A,12,Other,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_13,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,13,13,Multiple origins,Multiple origins,N/A,13,Multiple origins,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,NA::a,13,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,NA::b,13,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin - (D), -SDCGCGT_A,SDCGCGT_A_cat13_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT],cat,NA::b,13,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin - (D), -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,NA::b,4,missing,missing,N/A,else,else,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,1,4,English w/ or w/o other,English with or without other language,N/A,5,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,English & French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,2,4,French w/ or w/o other,French with or without other language,N/A,6,Neither English nor French (other),Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,"[3,4]",not applicable,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,4,4,Neither,Neither English nor French (other),N/A,7,don't know (7); refusal (8); not stated (9),Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,NA::a,4,not applicable,not applicable,N/A,96,else,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,NA::b,4,missing,missing,N/A,"[97,99]",English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,NA::b,4,missing,missing,N/A,else,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)", -SDCGLHM_A,SDCGLHM_A_cat7_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,1,7,English,English,N/A,1,English,Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,2,7,French,French,N/A,2,French,Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,3,7,English & French,English & French,N/A,3,English & French,Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,4,7,English & French and other,English & French and other,N/A,4,English & French and other,Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,5,7,English & other (not French),English & other (not French),N/A,5,English & other (not French),Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,6,7,French & other (not English),French & other (not English),N/A,6,French & other (not English),Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,7,7,Neither English nor French (other),Neither English nor French (other),N/A,7,Neither English nor French (other),Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLHM_A,SDCGLHM_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM],cat,NA::b,7,missing,missing,N/A,else,else,Language(s) spoken at home,Language(s) spoken at home - (D), -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,1,4,English w/ or w/o other,English with or without other language,N/A,5,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,2,4,French w/ or w/o other,French with or without other language,N/A,6,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,"[3,4]",English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,4,4,Neither,Neither English nor French (other),N/A,7,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_NA::a,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)", -SDCGLNG_A,SDCGLNG_A_cat7_1,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,1,7,English,English,N/A,1,English,Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_2,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,2,7,French,French,N/A,2,French,Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_3,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,3,7,English & French,English & French,N/A,3,English & French,Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_4,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,4,7,English & French and other,English & French and other,N/A,4,English & French and other,Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_5,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,5,7,English & other (not French),English & other (not French),N/A,5,English & other (not French),Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_6,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,6,7,French & other (not English),French & other (not English),N/A,6,French & other (not English),Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_7,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,7,7,Neither English nor French (other),Neither English nor French (other),N/A,7,Neither English nor French (other),Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_NA::a,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Languages - can converse in,Languages - can converse in - (D), -SDCGLNG_A,SDCGLNG_A_cat7_NA::b,cat,"cchs2009_s, cchs2010_s",[SDCDLNG],cat,NA::b,7,missing,missing,N/A,else,else,Languages - can converse in,Languages - can converse in - (D), -SDCGRES,SDCGRES_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,1,2,0 to 9 years,0 to 9 years,N/A,1,0 to 9 years,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,2,2,10 years or more,10 years or more,N/A,2,10 years or more,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Time in Canada,"Length/time in Canada since imm. (D, G)","CCHS 2001 missing don't know (7), refusal (8)" -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,NA::b,2,missing,missing,N/A,else,else,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,1,2,0 to 9 years,0 to 9 years,N/A,"[0,10)",0 to 9 years,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,2,2,10 years or more,10 years or more,N/A,"[10,97]",10 years or more,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,NA::a,2,not applicable,not applicable,N/A,996,not applicable,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,NA::b,2,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,NA::b,2,missing,missing,N/A,else,else,Time in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,copy,N/A,years since immigration,years since immigration,years,"[0,97]",years since immigration,Time in Canada,Length/time in Canada since imm. (D), -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Time in Canada,Length/time in Canada since imm. (D), -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Time in Canada,Length/time in Canada since imm. (D), -SDCGRES_A,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES],cont,NA::b,N/A,missing,missing,years,else,else,Time in Canada,Length/time in Canada since imm. (D), -SLP_02,SLP_02_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,1,5,None of the time,None of the time,N/A,1,None of the time,Trouble sleeping,Freq. - trouble sleeping, -SLP_02,SLP_02_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Trouble sleeping,Freq. - trouble sleeping, -SLP_02,SLP_02_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Trouble sleeping,Freq. - trouble sleeping, -SLP_02,SLP_02_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Trouble sleeping,Freq. - trouble sleeping, -SLP_02,SLP_02_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,5,5,All the time,All the time,N/A,5,All the time,Trouble sleeping,Freq. - trouble sleeping, -SLP_02,SLP_02_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,NA::b,5,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping, -SLP_02_A,SLP_02_A_cat3_1,cat,cchs2001_p,[GENA_04],cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Trouble sleeping,Freq. - trouble sleeping,CCHS 2001 has different categories from other cycles -SLP_02_A,SLP_02_A_cat3_2,cat,cchs2001_p,[GENA_04],cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Trouble sleeping,Freq. - trouble sleeping, -SLP_02_A,SLP_02_A_cat3_3,cat,cchs2001_p,[GENA_04],cat,3,3,Never,Never,N/A,3,Never,Trouble sleeping,Freq. - trouble sleeping, -SLP_02_A,SLP_02_A_cat3_NA::a,cat,cchs2001_p,[GENA_04],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],cat,NA::b,3,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping, -SLP_03,SLP_03_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,1,5,None of the time,None of the time,N/A,1,None of the time,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03,SLP_03_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03,SLP_03_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03,SLP_03_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03,SLP_03_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,5,5,All the time,All the time,N/A,5,All the time,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03,SLP_03_cat3_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03_A,SLP_03_A_cat3_1,cat,cchs2001_p,[GENA_05],cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Sleep refreshing,Freq. - find sleep refreshing,CCHS 2001 has different categories from other cycles -SLP_03_A,SLP_03_A_cat3_2,cat,cchs2001_p,[GENA_05],cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03_A,SLP_03_A_cat3_3,cat,cchs2001_p,[GENA_05],cat,3,3,Never,Never,N/A,3,Never,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03_A,SLP_03_A_cat3_NA::a,cat,cchs2001_p,[GENA_05],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,cchs2001_p,[GENA_05],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,cchs2001_p,[GENA_05],cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing, -SLP_04,SLP_04_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,1,5,None of the time,None of the time,N/A,1,None of the time,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04,SLP_04_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04,SLP_04_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04,SLP_04_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04,SLP_04_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,5,5,All the time,All the time,N/A,5,All the time,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04,SLP_04_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,NA::b,5,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04_A,SLP_04_A_cat3_1,cat,cchs2001_p,[GENA_06],cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Difficulty awake,Freq. - diffficult to stay awake,CCHS 2001 has different categories from other cycles -SLP_04_A,SLP_04_A_cat3_2,cat,cchs2001_p,[GENA_06],cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04_A,SLP_04_A_cat3_3,cat,cchs2001_p,[GENA_06],cat,3,3,Never,Never,N/A,3,Never,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04_A,SLP_04_A_cat3_NA::a,cat,cchs2001_p,[GENA_06],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],cat,NA::b,3,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake, -SLPG01,SLPG01_cat11_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,1,11,<3 hours,<3 hours,Hours,1,<3 hours,Hours sleep,No./hours spent sleeping each night,CCHS 2011-2012 onwards omitted 2-<3 hours category -SLPG01,SLPG01_cat11_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_5,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_6,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_7,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_8,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_9,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_10,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_11,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,11,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_1,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,1,12,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_2,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,2,12,2-<3 hours,2-<3 hours,Hours,2,2-<3 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_3,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,3,12,3-<4 hours,3-<4 hours,Hours,3,3-<4 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_4,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,4,12,4-<5 hours,4-<5 hours,Hours,4,4-<5 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_5,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,5,12,5-<6 hours,5-<6 hours,Hours,5,5-<6 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_6,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,6,12,6-<7 hours,6-<7 hours,Hours,6,6-<7 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_7,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,7,12,7-<8 hours,7-<8 hours,Hours,7,7-<8 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_8,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,8,12,8-<9 hours,8-<9 hours,Hours,8,8-<9 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_9,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,9,12,9-<10 hours,9-<10 hours,Hours,9,9-<10 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_10,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,10,12,10-<11 hours,10-<11 hours,Hours,10,10-<11 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_11,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,11,12,11-<12 hours,11-<12 hours,Hours,11,11-<12 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_12,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,12,12,>= 12 hours,>= 12 hours,Hours,12,>= 12 hours,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_NA::a,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::a,12,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,12,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,12,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,1,N/A,Hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,2.5,N/A,Hours,convereted hours (2-<3 hours),Hours,2,convereted hours (2-<3 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,3.5,N/A,Hours,converted hours (3-<4 hours),Hours,3,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,4.5,N/A,Hours,converted hours (4-<5 hours),Hours,4,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,5.5,N/A,Hours,converted hours (5-<6 hours),Hours,5,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,6.5,N/A,Hours,converted hours (6-<7 hours),Hours,6,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,7.5,N/A,Hours,converted hours (7-<8 hours),Hours,7,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,8.5,N/A,Hours,converted hours (8-<9 hours),Hours,8,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,9.5,N/A,Hours,converted hours (9-<10 hours),Hours,9,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,10.5,N/A,Hours,converted hours (10-<11 hours),Hours,10,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,11.5,N/A,Hours,converted hours (11-<12 hours),Hours,11,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,13,N/A,Hours,converted hours (>= 12 hours),Hours,12,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,1.5,N/A,<3 hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,3.5,N/A,3-<4 hours,converted hours (3-<4 hours),Hours,2,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,4.5,N/A,4-<5 hours,converted hours (4-<5 hours),Hours,3,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,5.5,N/A,5-<6 hours,converted hours (5-<6 hours),Hours,4,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,6.5,N/A,6-<7 hours,converted hours (6-<7 hours),Hours,5,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,7.5,N/A,7-<8 hours,converted hours (7-<8 hours),Hours,6,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,8.5,N/A,8-<9 hours,converted hours (8-<9 hours),Hours,7,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,9.5,N/A,9-<10 hours,converted hours (9-<10 hours),Hours,8,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,10.5,N/A,10-<11 hours,converted hours (10-<11 hours),Hours,9,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,11.5,N/A,11-<12 hours,converted hours (11-<12 hours),Hours,10,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,13,N/A,>= 12 hours,converted hours (>= 12 hours),Hours,11,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night, -SMK_005,SMK_005_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],cat,1,3,Daily,Daily,N/A,1,Daily,Type of smoker presently,Type of smoker presently, -SMK_005,SMK_005_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],cat,2,3,Occasionally,Occasionally,N/A,2,Occasionally,Type of smoker presently,Type of smoker presently, -SMK_005,SMK_005_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],cat,3,3,Not at all,Not at all,N/A,3,Not at all,Type of smoker presently,Type of smoker presently, -SMK_005,SMK_005_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Type of smoker presently,Type of smoker presently, -SMK_005,SMK_005_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],cat,NA::b,3,missing,missing,N/A,else,else,Type of smoker presently,Type of smoker presently, -SMK_030,SMK_030_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],cat,1,2,yes,yes,N/A,1,Yes,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker), -SMK_030,SMK_030_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],cat,2,2,no,no,N/A,2,No,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker), -SMK_030,SMK_030_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker), -SMK_030,SMK_030_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker), -SMK_030,SMK_030_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],cat,NA::b,2,missing,missing,N/A,else,else,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker), -SMK_01A,SMK_01A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,1,2,yes,yes,N/A,1,Yes,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,2,2,no,no,N/A,2,No,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,NA::b,2,missing,missing,N/A,else,else,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,copy,N/A,Cigarettes/day - occasional,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - occasional smoker,cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,NA::b,N/A,missing,missing,cigarettes,else,else,cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,copy,N/A,# days smoked at least 1 cigarette,# days smoked at least 1 cigarette,days,"[0,31]",# days smoked at least 1 cigarette,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,NA::b,N/A,missing,missing,days,else,else,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05D,SMK_05D_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,1,2,yes,Occasional smoker who previously smoked daily,N/A,1,Yes,evd,Ever smoked cigarettes daily - occasional smoker,2015 onward looks at occasional/former smokers -SMK_05D,SMK_05D_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,2,2,no,Occasional smoker never daily,N/A,2,No,evd,Ever smoked cigarettes daily - occasional smoker, -SMK_05D,SMK_05D_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,evd,Ever smoked cigarettes daily - occasional smoker, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),evd,Ever smoked cigarettes daily - occasional smoker, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,NA::b,2,missing,missing,N/A,else,else,evd,Ever smoked cigarettes daily - occasional smoker, -SMK_06A_A,SMK_06A_A_cat4_1,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,stpn,When did you stop smoking daily - never daily, -SMK_06A_A,SMK_06A_A_cat4_2,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,stpn,When did you stop smoking daily - never daily, -SMK_06A_A,SMK_06A_A_cat4_3,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,stpn,When did you stop smoking daily - never daily, -SMK_06A_A,SMK_06A_A_cat4_4,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,stpn,When did you stop smoking daily - never daily, -SMK_06A_A,SMK_06A_A_cat4_NA::a,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - never daily, -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - never daily, -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,4,missing,missing,years,else,else,stpn,When did you stop smoking daily - never daily, -SMK_06A_B,SMK_06A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,1,4,<1 year,Less than one year ago,years,1,Less than one year,stpn,When did you stop smoking daily - occasional, -SMK_06A_B,SMK_06A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,2,4,1 to 2 years,1 year to less than 2 years ago,years,2,1 year to < 2 years,stpn,When did you stop smoking daily - occasional, -SMK_06A_B,SMK_06A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,3,4,2 to 3 years,2 years to less than 3 years ago,years,3,2 years to < 3 years,stpn,When did you stop smoking daily - occasional, -SMK_06A_B,SMK_06A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,4,4,>= 3 years,3 or more years ago,years,4,3 or more years,stpn,When did you stop smoking daily - occasional, -SMK_06A_B,SMK_06A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional, -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional, -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,4,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year ago,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,1.5,N/A,stpn,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,4,N/A,stpn,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,6,N/A,stpn,converted age - More than 5 years ago,years,4,More than 5 years ago,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,N/A,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,1.5,N/A,stpn,converted age - 1 year to less than 2 years ago,years,2,1 year to < 2 years,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,2.5,N/A,stpn,converted age - 2 years to less than 3 years ago,years,3,2 years to < 3 years,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,4,N/A,stpn,converted age - 3 or more years ago,years,4,3 or more years,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpn,When did you stop smoking daily - occasional, -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,N/A,missing,missing,years,else,else,stpn,When did you stop smoking daily - occasional, -SMK_09A_A,SMK_09A_A_cat4_1,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_A,SMK_09A_A_cat4_2,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_A,SMK_09A_A_cat4_3,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_A,SMK_09A_A_cat4_4,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_A,SMK_09A_A_cat4_NA::a,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily, -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily, -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily, -SMK_09A_B,SMK_09A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,1,4,<1 year,Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily, -SMK_09A_B,SMK_09A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,2,4,1 to <2 years,1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily, -SMK_09A_B,SMK_09A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,3,4,2 to <3 years,2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily, -SMK_09A_B,SMK_09A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,4,4,>= 3 years,3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily, -SMK_09A_B,SMK_09A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily, -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily, -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,1.5,N/A,stpo,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,4,N/A,stpo,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,6,N/A,stpo,converted age - More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,1.5,N/A,stpo,converted age - 1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,2.5,N/A,stpo,converted age - 2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,4,N/A,stpo,converted age - 3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily, -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,copy,N/A,Cigarettes/day - daily,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - daily smoker,cigdayd,# of cigarettes smoked daily - daily smoker, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,cigdayd,# of cigarettes smoked daily - daily smoker, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),cigdayd,# of cigarettes smoked daily - daily smoker, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,NA::b,N/A,missing,missing,cigarettes,else,else,cigdayd,# of cigarettes smoked daily - daily smoker, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",cont,copy,N/A,Cigarettes/day - former daily,Cigarettes/day - former daily,cigarettes,"[1,99]",# of cigarettes smoke each day - former daily,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",cont,NA::b,N/A,missing,missing,cigarettes,else,else,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker, -SMKDSTY_A,SMKDSTY_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,1,6,Daily,Daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,2,6,Occasional (former daily),Former daily current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,3,6,Always occasional,Never daily current occasional smoker,N/A,3,Always occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,4,6,Former daily,Former daily current nonsmoker,N/A,4,Former daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,5,Former occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,6,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6N/A_Func::SMKDSTY_fun,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,Func::SMKDSTY_fun,N/A,N/A,N/A,N/A,N/A,N/A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,1,6,Daily,Daily smoker,N/A,N/A,Daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,2,6,Occasional (former daily),Former daily current occasional smoker,N/A,N/A,Occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,3,6,Always occasional,Never daily current occasional smoker,N/A,N/A,Always occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,4,6,Former daily,Former daily current nonsmoker,N/A,N/A,Former daily,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,N/A,Former occasional,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,6,6,Never smoked,Never smoked,N/A,N/A,Never smoked,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMK_030, SMK_01A]",N/A,NA::b,6,missing,missing,N/A,N/A,missing,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never", -SMKDSTY_B,SMKDSTY_B_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,1,6,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_B,SMKDSTY_B_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,2,6,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_B,SMKDSTY_B_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,3,6,Former daily,Former daily smoker (non-smoker now),N/A,3,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_B,SMKDSTY_B_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,4,6,Former occasional,Former occasional (non-smoker now),N/A,4,Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_B,SMKDSTY_B_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,5,6,Experimental,"Experimental smoker (at least 1 cig, non-smoker now)",N/A,5,Experimental,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)" -SMKDSTY_B,SMKDSTY_B_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_B,SMKDSTY_B_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,6,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never", -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,1,3,Current,Current smoker,N/A,"[1,3]",Daily (1); Occasional (2); Always occasional (3),Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,2,3,Former,Former smoker,N/A,"[4,5]",Former daily(4); Former occasional (5),Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,3,missing,missing,N/A,else,else,Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,1,3,Current,Current smoker,N/A,"[1,2]",Daily (1); Occasional (2),Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,2,3,Former,Former smoker,N/A,"[3,5]",Former daily (3); Former occasional (4); Experimental (5),Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,3,missing,missing,N/A,else,else,Smoking status,"Type of smoker: current, former, never", -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,2,5,Occasional,Current occasional smoker,N/A,"[2,3]",Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never","SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category" -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,3,5,Former daily,Former daily smoker,N/A,4,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,4,5,Former occasional,Former occasional,N/A,5,Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,5,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,2,5,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,3,5,Former daily,Former daily smoker,N/A,3,Former daily,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,4,5,Former occasional,Former occasional,N/A,"[4,5]",Former occasional,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never","SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category" -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,5,missing,missing,N/A,else,else,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never", -SMKG01C_A,SMKG01C_A_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,3,10,15 To 19 Years,age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,10,missing,missing,years,else,else,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,3,10,15 To 19 Years,age smoked first whole cigarette (18 to 19),years,"[15,20)",15 To 19 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,NA::a,10,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette, -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,NA::b,10,missing,missing,years,else,else,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,11,missing,missing,years,else,else,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,"[15,18)",15 To 17 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,"[18,20)",18 To 19 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette, -SMKG01C_B,SMKG01C_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cat,NA::b,11,missing,missing,years,else,else,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,17,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,16,N/A,agec1,converted categorical age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,18.5,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cont,copy,N/A,agec1,agec1,years,"[5,80]",agec1,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agec1,Age smoked first cigarette, -SMKG01C_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_01C],cont,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first cigarette, -SMKG040,SMKG040_cat11_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_7,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_8,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_9,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_10,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_11,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,11,11,50 Years or more,age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigdfd,Age started to smoke daily - daily/former daily smoker,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,11,missing,missing,years,else,else,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",N/A,Func::SMKG040_fun,N/A,N/A,N/A,years,N/A,N/A,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",N/A,NA::b,N/A,missing,missing,years,N/A,N/A,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,8,N/A,agecigdfd,converted categorical age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,13,N/A,agecigdfd,converted categorical age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,16,N/A,agecigdfd,converted categorical age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,18.5,N/A,agecigdfd,converted categorical age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,22,N/A,agecigdfd,converted categorical age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,27,N/A,agecigdfd,converted categorical age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,32,N/A,agecigdfd,converted categorical age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,37,N/A,agecigdfd,converted categorical age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,42,N/A,agecigdfd,converted categorical age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,47,N/A,agecigdfd,converted categorical age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,55,N/A,agecigdfd,converted categorical age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigdfd,Age started to smoke daily - daily/former daily smoker,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,N/A,missing,missing,years,else,else,agecigdfd,Age started to smoke daily - daily/former daily smoker, -SMKG06C,SMKG06C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,NA::b,3,missing,missing,years,else,else,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],cat,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],cat,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],cat,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],cat,NA::a,3,not applicable,not applicable,years,996,not applicable,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],cat,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_06C],cat,NA::b,3,missing,missing,years,else,else,stpny,Years since stopped smoking daily - never daily, -SMKG09C,SMKG09C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpdy,Years since stopped smoking daily - former daily,Don't know (7) and refusal (8) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,NA::b,3,missing,missing,years,else,else,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_09C],cat,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_09C],cat,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_09C],cat,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_09C],cat,NA::a,3,not applicable,not applicable,years,996,not applicable,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_09C],cat,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_09C],cat,NA::b,3,missing,missing,years,else,else,stpdy,Years since stopped smoking daily - former daily, -SMKG203_A,SMKG203_A_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,10,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,84]",50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::a,10,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::b,10,missing,missing,years,"[997,999]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::b,10,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,11,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,"[15,18)",15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,"[18,20)",18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,"[50,84]",50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::b,11,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,Func::SMKG203_fun,N/A,N/A,N/A,N/A,N/A,N/A,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,N/A,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,N/A,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,N/A,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,N/A,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,N/A,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,N/A,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,N/A,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,N/A,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,N/A,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,N/A,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,N/A,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_005, SMKG040]",N/A,NA::b,N/A,missing,missing,years,N/A,missing,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cont,copy,N/A,agecigd,agecigd,years,"[5,84]",agecigd,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cont,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG207_A,SMKG207_A_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,10,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,80]",50 Years or more,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::a,10,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_203],cat,NA::b,10,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,3,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,4,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,5,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,6,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,7,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,8,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,9,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,10,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,11,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,11,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_1,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,"[5,12)",5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_2,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,"[12,15)",12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_3,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,"[15,18)",15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_4,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,"[18,20)",18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_5,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,"[20,25)",20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_6,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,"[25,30)",25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_7,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,"[30,35)",30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_8,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,"[35,40)",35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_9,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,"[40,45)",40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_10,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,"[45,50)",45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_11,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,"[50,80]",50 Years or more,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_NA::a,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,NA::a,11,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cat,NA::b,11,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigfd,Age started to smoke daily - former daily smoker,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cont,copy,N/A,agecigd,agecigd,years,"[5,80]",agecigfd,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[SMK_207],cont,NA::b,N/A,missing,missing,years,else,else,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,Func::SMKG207_fun,N/A,N/A,N/A,N/A,N/A,N/A,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,N/A,5 To 11 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,N/A,12 To 14 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,N/A,15 To 17 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,N/A,18 To 19 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,N/A,20 To 24 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,N/A,25 To 29 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,N/A,30 To 34 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,N/A,35 To 39 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,N/A,40 To 44 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,N/A,45 To 49 Years,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,N/A,50 Years or more,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,agecigfd,Age started to smoke daily - former daily smoker, -SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_030, SMKG040]",N/A,NA::b,N/A,missing,missing,years,N/A,missing,agecigfd,Age started to smoke daily - former daily smoker, -smoke_simple,smoke_simple_catN/A_Func::smoke_simple_fun,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,Func::smoke_simple_fun,N/A,N/A,N/A,N/A,N/A,N/A,Simple smoking status,Simple smoking status, -smoke_simple,smoke_simple_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,0,4,Non-smoker (never smoked),Non-smoker (never smoked),N/A,N/A,Non-smoker (never smoked),Simple smoking status,Simple smoking status, -smoke_simple,smoke_simple_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,1,4,Current smoker (daily and occasional),Current smoker (daily and occasional),N/A,N/A,Current smoker (daily and occasional),Simple smoking status,Simple smoking status, -smoke_simple,smoke_simple_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,2,4,Former daily smoker quit less than 5 years or former occasional smoker ,Former daily smoker quit less than 5 years or former occasional smoker ,N/A,N/A,Former daily smoker quit less than 5 years or former occasional smoker ,Simple smoking status,Simple smoking status, -smoke_simple,smoke_simple_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,3,4,Former daily smoker quit >5 years,Former daily smoker quit >5 years,N/A,N/A,Former daily smoker quit >5 years,Simple smoking status,Simple smoking status, -smoke_simple,smoke_simple_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,NA::a,4,not applicable,not applicable,N/A,N/A,not applicable,Simple smoking status,Simple smoking status, -smoke_simple,smoke_simple_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,NA::b,4,missing,missing,N/A,N/A,missing,Simple smoking status,Simple smoking status, -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it., -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it., -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it., -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it., -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it., -SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it., -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do., -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do., -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do., -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do., -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do., -SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do., -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being., -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being., -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being., -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being., -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being., -SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being., -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life., -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life., -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life., -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life., -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life., -SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life., -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized., -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized., -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized., -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized., -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized., -SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized., -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems., -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems., -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems., -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems., -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems., -SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems., -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs., -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs., -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs., -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs., -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs., -SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs., -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person., -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person., -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person., -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person., -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person., -SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person., -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities., -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities., -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities., -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities., -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities., -SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities., -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,"For CCHS cycles 2015-2018, question was not asked in proxy interview" -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person, -SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person, -SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",N/A,Func::SPS_5_fun,N/A,N/A,N/A,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall, -SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",N/A,NA::b,N/A,missing,missing,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall, -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],cont,copy,N/A,# friends and relatives,Number of friends and relatives,N/A,"[0,99]",Number of friends and relatives,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?", -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?", -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?", -SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01],cont,NA::b,N/A,missing,missing,N/A,else,else,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?", -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20],cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",N/A,Func::time_quit_smoking_fun,N/A,N/A,N/A,Years,N/A,N/A,Time since quit,Time since quit smoking,Variable derived from various harmonized smoking variables -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",N/A,NA::a,N/A,not applicable,not applicable,Years,N/A,N/A,Time since quit,Time since quit smoking, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",N/A,NA::b,N/A,missing,missing,Years,N/A,N/A,Time since quit,Time since quit smoking, -WTS_M,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]",N/A,copy,N/A,N/A,N/A,N/A,"[1.07,71809.93]",N/A,Weight,Weights, -WTS_S,N/A,cont,"cchs2009_s, cchs2010_s, cchs2012_s",[WTS_S],N/A,copy,N/A,N/A,N/A,N/A,"[2.94,65198.17]",N/A,Weight - Share,, diff --git a/worksheets/cchsflow-original/variables.RData b/worksheets/cchsflow-original/variables.RData deleted file mode 100644 index b844d65..0000000 Binary files a/worksheets/cchsflow-original/variables.RData and /dev/null differ diff --git a/worksheets/cchsflow-original/variables.csv b/worksheets/cchsflow-original/variables.csv deleted file mode 100644 index 2768797..0000000 --- a/worksheets/cchsflow-original/variables.csv +++ /dev/null @@ -1,338 +0,0 @@ -variable,label,labelLong,section,subject,variableType,units,databaseStart,variableStart,description -active_transport,Daily active transportation,Time spent - active transportation daily,Health behaviour,Exercise,Continuous,mins,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[PAC_4A_cont, PAC_4B_cont], DerivedVar::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], DerivedVar::[PAYDVTTR, PAADVTRV]", -ADL_01,Help preparing meals,Needs help - preparing meals,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005, [ADL_01]", -ADL_01_A,Help preparing meals,Needs help - preparing meals,Health status,ADL,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02,Help appointments/errands,Needs help - getting to appointments/errands,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010, [ADL_02]", -ADL_02_A,Help appointments/errands,Needs help - getting to appointments/errands,Health status,ADL,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03,Help housework,Needs help - doing housework,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015, [ADL_03]", -ADL_03_A,Help housework,Needs help - doing housework,Health status,ADL,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015], -ADL_04,Help personal care,Needs help - personal care,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020[ADL_04]", -ADL_04_A,Help personal care,Needs help - personal care,Health status,ADL,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020], -ADL_05,Help move inside house,Needs help - moving about inside house,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025, [ADL_05]", -ADL_05_A,Help move inside house,Needs help - moving about inside house,Health status,ADL,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025], -ADL_06,Help personal finances,Needs help - looking after finances,Health status,ADL,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030, [ADL_06]", -ADL_06_A,Help personal finances,Needs help - looking after finances,Health status,ADL,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030], -ADL_07,Help heavy household chores,Needs help - heavy household chores,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D", -ADL_der,Derived help tasks,Derived needs help with tasks,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]", -ADL_score_5,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]", -ADLF6R,Help tasks,Needs help with at least one task - (F),Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]", -ADM_RNO,Sequential record number,Sequential record number,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]", -ALC_005,Alcohol in lifetime,"In lifetime, ever drank alcohol?",Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]", -ALC_1,Alcohol past year,"Past year, have you drank alcohol",Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]", -ALCDTTM,Drinker type (last 12 months),Type of drinker (12 months),Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]", -ALCDTYP,Drinker type,Type of drinker - (D),Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]", -ALW_1,Any alcohol past week,"Past week, had any alcohol",Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]", -ALW_2A1,# of drinks - Sunday,Number of drinks on Sunday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]", -ALW_2A2,# of drinks - Monday,Number of drinks on Monday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]", -ALW_2A3,# of drinks - Tuesday,Number of drinks on Tuesday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]", -ALW_2A4,# of drinks - Wednesday,Number of drinks on Wednesday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]", -ALW_2A5,# of drinks - Thursday,Number of drinks on Thursday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]", -ALW_2A6,# of drinks - Friday,Number of drinks on Friday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]", -ALW_2A7,# of drinks - Saturday,Number of drinks on Saturday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]", -ALWDDLY,Average daily consumption,Average daily alcohol consumption,Health behaviour,Alcohol,Continuous,drinks/day,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]", -ALWDVLTR_der,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . -ALWDVSTR_der,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . -ALWDWKY,Drinks last week,Weekly consumption of alcohol,Health behaviour,Alcohol,Continuous,drinks/week,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]", -binge_drinker,Binge Drinker,Binge Drinker,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]", -CCC_031,Asthma,Do you have asthma?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]", -CCC_035,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, [CCC_035]", -CCC_036,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, [CCC_036]", -CCC_041,Fibromyalgia,Do you have Fibromyalgia?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]", -CCC_051,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]", -CCC_061,Back problems,Do you have back problems?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]", -CCC_071,Hypertension,Do you have high blood pressure?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]", -CCC_072,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_072, [CCC_072]", -CCC_073,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]", -CCC_073A,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,Health status,Chronic condition,Categorical,N/A,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073A], -CCC_073B,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",Health status,Chronic condition,Categorical,N/A,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[CCC_073B], -CCC_075,Blood cholesterol,Do you have high blood cholesterol or lipids?,Health status,Chronic condition,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075], -CCC_081,Migraine Headache,Do you have migraine headaches?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]", -CCC_091,COPD/Emphysema/Bronchitis,"Do you have COPD (eg bronchitis, emphysema)?",Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]", -CCC_101,Diabetes,Do you have diabetes?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]", -CCC_102_A,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Categorical,years,"cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCCG102, [CCC_102]", -CCC_102_B,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Categorical,years,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2009_s::CCC_102, cchs2010_s::CCC_102, cchs2012_s::CCC_102, [CCCG102]", -CCC_102_cont,Age of diabetes diagnosis,How old were you when this was first diagnosed?,Health status,Chronic condition,Continuous,years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCCG102, cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2009_s::CCC_102, cchs2010_s::CCC_102, cchs2012_s::CCC_102, [CCCG102]", -CCC_105,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, [CCC_105]", -CCC_106,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, [CCC_106]", -CCC_10A,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes? ,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, [CCC_10A]", -CCC_10B,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes? ",Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, [CCC_10B]", -CCC_10C,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, [CCC_10C]", -CCC_111,Epilepsy,Do you have epilepsy?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111", -CCC_121,Heart Disease,Do you have heart disease?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]", -CCC_131,Active Cancer,Do you have cancer?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]", -CCC_141,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, [CCC_141]", -CCC_151,Stroke,Do you suffer from effects of stroke?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]", -CCC_161,Urinary incontinence,Do you suffer from urinary incontinence?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, [CCC_161]", -CCC_171,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]", -CCC_17A,Type of bowel disorder,What kind of bowel disease do you have?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_17A, [CCC_17A]", -CCC_181,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,Health status,Chronic condition,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[CCC_181], -CCC_251,Chronic fatigue,Do you have chronic fatigue syndrome?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2010_s","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]", -CCC_261,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2010_s","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, [CCC_261]", -CCC_280,Mood disorder,Do you have a mood disorder?,Health status,Chronic condition,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]", -CCC_290,Anxiety Disorder,Do you have an anxiety disorder?,Health status,Chronic condition,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]", -CCC_31A,Cancer diagnosis,Have you ever been diagnosed with cancer?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]", -CCC_91A,Bronchitis,Do you have chronic bronchitis?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]", -CCC_91E,Emphysema,Do you have emphysema?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E", -CCC_91F,COPD,Do you have COPD?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F", -COPD_Emph_der,COPD/Emphysema,COPD/Emphysema,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F], DerivedVar::[DHHGAGE_cont, CCC_091]", -DEPDVSEV,Depression scale - severity of depression,Depression scale - severity of depression,Health status,Chronic condition,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015. -DHH_AGE,Age,Age,Demographics,Age,Continuous,Years,"cchs2009_s, cchs2010_s, cchs2012_s",[DHH_AGE],Continuous age variable for shared files -DHH_OWN,Home ownership,Dwelling - owned by a member of hsld,Sociodemographics,Home ownership,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]", -DHH_SEX,Sex,Sex,Demographics,Sex,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]", -DHHGAGE_5,Age,Age (20-year age groups),Demographics,Age,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]","5 age groups: <20, 20 to 39, 40 to 59, 60 to 79, 80+ years" -DHHGAGE_A,Age,Age,Demographics,Age,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, [DHH_AGE]", -DHHGAGE_B,Age,Age,Demographics,Age,Categorical,Years,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]", -DHHGAGE_C,Age,Categorical age,Demographics,Age,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[DHHGAGE_cont],Derived categorical age variable using DHHGAGE_cont -DHHGAGE_cont,Age,Converted categorical age,Demographics,Age,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",Continuous age variable -DHHGAGE_D,Age,Age (10-year age groups),Demographics,Age,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]","8 age groups: 12 to 19, 20 to 29, 30 to 39, 40 to 49, 50 to 59, 60 to 69, 70 to 79, 80+ years" -DHHGHSZ,Household size,Household size,Sociodemographics,Household Characteristics,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, cchs2009_s::DHHDHSZ, cchs2010_s::DHHDHSZ, cchs2012_s::DHHDHSZ, [DHHGHSZ]", -DHHGMS,Marital status,Marital status - (G),Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, cchs2009_s::DHH_MS, cchs2010_s::DHH_MS, cchs2012_s::DHH_MS, [DHHGMS]", -diet_score,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]","A derived diet variable based on daily consumption of ""fruit, salad, potatoes, carrots, other vegetables, and juice"". Two baseline points plus summation of total points for diet attributes with penalty for high potato intake, no carrot intake and high juice consumption (negative overall scores are recoded to 0, resulting in a range from 0 to 10)." -diet_score_cat3,Categorical diet score,Categorical diet score,Health behaviour,Diet,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],Derived categorical diet score using diet_score -DIS_10G,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]", -DIS_10H,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]", -DPS_02,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_02], -DPS_03,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_03], -DPS_04,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_04], -DPS_05,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_05], -DPS_06,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_06], -DPS_07,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_07], -DPS_08A,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08A], -DPS_08B,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_08B], -DPS_09,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_09], -DPS_10,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_10], -DPS_11,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_11], -DPS_12,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_12], -DPS_13,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",Health status,Chronic condition,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_13], -DPS_14,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,Health status,Chronic condition,Continuous,weeks,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[DPS_14], -DPSDMT,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]", -DPSDPP,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,Health status,Chronic condition,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]", -DPSDSF,Depression Scale - Short Form Score,Depression Scale - Short Form Score,Health status,Chronic condition,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]", -DPSDWK,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),Health status,Chronic condition,Continuous,weeks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]", -EDUDR03,Highest education,Highest level/education - 3 categories,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3, [EDUDR04]", -EDUDR04,Highest education,Highest level/education - 4 categories,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]", -energy_exp,Daily energy expenditure,Daily energy expenditure,Health behaviour,Exercise,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE], DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVDYS]", -FINF1,Food insecurity 12M,Some food insecurity in past 12 months,Sociodemographics,Food security,Categorical,N/A,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1", -FLU_160,Ever had a flu shot,Have you ever had a flu shot?,Health care use,Vaccination,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]", -FLU_162,Last time had flu shot,When did you have your last flu shot?,Health care use,Vaccination,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]", -food_insecurity_der,Food insecurity 12M,Derived food insecurity,Sociodemographics,Food security,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FINAF1, cchs2003_p::FINCF1, [FSCEDHFS], cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]", -FSCDHFS,Food security,Household food security status - (D),Sociodemographics,Food security,Categorical,N/A,cchs2005_p,[FSCEDHFS], -FSCDHFS2,HC food security,Household food security status - (HC),Sociodemographics,Food security,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]", -FVC_1A,Drinks fruit juice unit,Drinks fruit juices - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1A], -FVC_1B,Drinks fruit juices daily,Drinks fruit juices - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1B], -FVC_1C,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1C], -FVC_1D,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1D], -FVC_1E,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_1E], -FVC_2A,Eats fruit unit,Eats fruit - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2A], -FVC_2B,Eats fruit daily,Eats fruit - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2B], -FVC_2C,Eats fruit weekly,Eats fruit - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2C], -FVC_2D,Eats fruit monthly,Eats fruit - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2D], -FVC_2E,Eats fruit yearly,Eats fruit - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_2E], -FVC_3A,Eats green salad unit,Eats green salad - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3A], -FVC_3B,Eats green salad daily,Eats green salad - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3B], -FVC_3C,Eats green salad weekly,Eats green salad - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3C], -FVC_3D,Eats green salad monthly,Eats green salad - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3D], -FVC_3E,Eats green salad yearly,Eats green salad - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_3E], -FVC_4A,Eats potatoes unit,Eats potatoes - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4A], -FVC_4B,Eats potatoes daily,Eats potatoes - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4B], -FVC_4C,Eats potatoes weekly,Eats potatoes - no. of times/week,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4C], -FVC_4D,Eats potatoes monthly,Eats potatoes - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4D], -FVC_4E,Eats potatoes yearly,Eats potatoes - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_4E], -FVC_5A,Eats carrots unit,Eats carrots - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5A], -FVC_5B,Eats carrots daily,Eats carrots - no. of times/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5B], -FVC_5C,Eats carrots weekly,Eats carrots - no. of times/week ,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5C], -FVC_5D,Eats carrots monthly,Eats carrots - no. of times/month,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5D], -FVC_5E,Eats carrots yearly,Eats carrots - no. of times/year,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_5E], -FVC_6A,Eats other vegetables unit,Eats other vegetables - reporting unit ,Health behaviour,Fruits/vegetables,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6A], -FVC_6B,Eats other vegetables daily,Eats other vegetables - servings/day ,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6B], -FVC_6C,Eats other vegetables weekly,Eats other vegetables - servings/week,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6C], -FVC_6D,Eats other vegetables monthly,Eats other vegetables - servings/month,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6D], -FVC_6E,Eats other vegetables yearly,Eats other vegetables - servings/year,Health behaviour,Fruits/vegetables,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[FVC_6E], -FVCDCAR,Carrot consumption,Daily consumption - carrots (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]", -FVCDFRU,Fruit consumption,Daily consumption - fruit - (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]", -FVCDJUI,Juice consumption,Daily consumption - fruit juice (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]", -FVCDPOT,Potato consumption,Daily consumption - potatoes (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]", -FVCDSAL,Salad consumption,Daily consumption - green salad - (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]", -FVCDTOT,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]", -FVCDVEG,Other veg consumption,Daily consumption other vegetables - (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]", -GEN_01,Self-perceived health,Self-perceived health,Health status,Self-perceived health,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]", -GEN_02A,Life satisfaction_cat,Satisfaction with life,Health status,Satisfaction with life,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]", -GEN_02A2,Life satisfaction_cont,Satisfaction with life in general,Health status,Satisfaction with life,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]", -GEN_02B,Self-perceived mental health,Self-perceived mental health,Health status,Mental health,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]", -GEN_07,Self-perceived life stress,Self-perceived life stress,Health status,Mental health,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]", -GEN_09,Self-perceived work stress,Self-perceived work stress,Health status,Mental health,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]", -GEN_10,Sense of belonging,Sense of belonging in the community,Health status,Mental health,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]", -GEODPMF,Health Region - (G),Health Region - (G),Demographics,Health region,Categorical,N/A,"cchs2013_2014_p, cchs2014_p",[GEODPMF], -GEOGPRV,Province,Province of residence of respondent (G),Demographics,Province,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]", -HCU_1AA,Has regular medical doctor,Do you have a regular medical doctor?,Health care use,Medical care,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]", -HUIDCOG,HUI Cognition,Cognition prob. - function code - (D),Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]", -HUIDEMO,HUI Emotion,Emotional problems - function code - (D),Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]", -HUIDHSI,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat10,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat20,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIDHSI_cat50,Overall HUI,Categorical Health Utility Index (HUI3),Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]", -HUIGDEX,HUI Dexterity,"Dexterity trouble - function code (D, G)",Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, cchs2009_s::HUIDDEX, cchs2010_s::HUIDDEX, cchs2012_s::HUIDDEX, [HUIGDEX]", -HUIGHER,HUI Hearing,"Hearing problems - function code (D, G)",Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, cchs2009_s::HUIDHER, cchs2010_s::HUIDHER, cchs2012_s::HUIDHER, [HUIGHER]", -HUIGMOB,HUI Mobility,"Mobility trouble - function code (D, G)",Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, cchs2009_s::HUIDMOB, cchs2010_s::HUIDMOB, cchs2012_s::HUIDMOB, [HUIGMOB]", -HUIGSPE,HUI Speech,"Speech trouble - function code - (D, G)",Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, cchs2009_s::HUIDSPE, cchs2010_s::HUIDSPE, cchs2012_s::HUIDSPE, [HUIGSPE]", -HUIGVIS,HUI Vision,"Vision trouble - function code - (D, G)",Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, cchs2009_s::HUIDVIS, cchs2010_s::HUIDVIS, cchs2012_s::HUIDVIS, [HUIGVIS]", -HUPDPAD,HUI Pain,Act. prevent/pain - function code - (D),Health status,Health utility index,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]", -HWTGBMI,BMI,"BMI / self-report - (D,G)",Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, [HWTGBMI]", -HWTGBMI_der,Derived BMI,Derived Body Mass Index,Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[HWTGHTM, HWTGWTK]", -HWTGBMI_der_cat4,Categorical BMI,Categorical body mass index,Health status,BMI,Categorical,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[HWTGBMI_der],Derived categorical variable using HWTGBMI -HWTGCOR,Adjusted BMI,Adjusted BMI,Health status,BMI,Continuous,kg/m2,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR], -HWTGCOR_der,Derived adjusted BMI,Derived adjusted BMI,Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]", -HWTGHTM,Height,"Height (metres)/self-reported - (D,G)",Health status,Height,Continuous,meters,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT, cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, [HWTGHTM]", -HWTGWTK,Weight,"Weight - kilograms (D, G)",Health status,Weight,Continuous,kg,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, [HWTGWTK]", -immigration_der,Immigration category,Immigration category,Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]", -INCDRCA,Household income distribution,Household income distribution - (D),Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]", -INCDRPR,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]", -INCDRRS,Household income distribution health region level,Hhld inc. distribution- hr level - (D),Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]", -INCGHH_A,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2001_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, [INCDHH]", -INCGHH_B,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, cchs2003_p::INCCGHH, cchs2005_p::INCEGHH, [INCDHH]", -INCGHH_C,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, cchs2009_s::INCDHH, cchs2010_s::INCDHH, cchs2012_s::INCDHH, [INCGHH]", -INCGHH_D,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDHH], -INCGHH_E,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDHH], -INCGHH_F,Household income,"Total household income from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,cchs2012_s,[INCDHH], -INCGHH_cont,Household income,Total household income from all sources - continuous,Sociodemographics,Income,Continuous,$/year,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGHH, cchs2003_p::INCCGHH, cchs2005_p::INCEGHH, cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, cchs2009_s::INCDHH, cchs2010_s::INCDHH, cchs2012_s::INCDHH, [INCGHH]", -INCGPER_A,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER, [INCDPER]", -INCGPER_B,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, cchs2009_s::INCDPER, cchs2010_s::INCDPER, cchs2012_s::INCDPER, [INCGPER]", -INCGPER_C,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER], -INCGPER_D,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Categorical,$/year,"cchs2009_s, cchs2010_s, cchs2012_s",[INCDPER], -INCGPER_cont,Personal Income,"Total pers. inc. from all sources (D, G)",Sociodemographics,Income,Continuous,$/year,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER, cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, cchs2009_s::INCDPER, cchs2010_s::INCDPER, cchs2012_s::INCDPER, [INCGPER]", -LBFA_31A,Occupation group,Main job or business,Sociodemographics,Occupation,Categorical,N/A,cchs2001_p,[LBFA_31A], -LBFA_31A_a,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,"cchs2001_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::LBFA_31A, cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, cchs2009_s::LBSDOCG, cchs2010_s::LBSDOCG, cchs2012_s::LBSDOCG, [LBSGSOC]","See Norwrouzi-Kia, et al. (2019) Int J Crit Illn Inj Sci. 2019 Jan-Mar; 9(1): 29:35. doi: 10.4103/IJCIIS.IJCIIS_43_18 and Nowrouzi-Kia, B., et al. (2018). Heart Disease and Occupational Risk Factors in the Canadian Population: An Exploratory Study Using the Canadian Community Health Survey."" Safety and Health at Work 9(2): 144-148. https://doi.org/10.1016/j.shaw.2017.07.008""" -LBFA_31A_b,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,"cchs2001_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::LBFA_31A, cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, cchs2009_s::LBSDOCG, cchs2010_s::LBSDOCG, cchs2012_s::LBSDOCG, [LBSGSOC]","The exact same recoding as LBFA_31A_a except that the ""Other"" category in cchs2001_p was recoded to a new category ""Other"" rather than missing" -LBFA_31A_c,Occupation group,Occupation Group,Sociodemographics,Occupation,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[LBSDOCG], -low_drink_score,Low risk drinking score,Low risk drinking score,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY]","Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY." -low_drink_score1,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]","Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY, ALC_005, ALC_1." -MED_1P,Sleeping pills,"In the past month, did you take sleeping pills",Health behaviour,Sleep,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_s","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]", -number_conditions,Number of conditions,Number of chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051], DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]", -PAA_045,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),Health behaviour,Exercise,Continuous,hours/week,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045], -PAA_050,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050], -PAA_075,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),Health behaviour,Exercise,Continuous,hours/week,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075], -PAA_080,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080], -PAADVDYS,Active days (18+ years old),Number of active days (18+ years old),Health behaviour,Exercise,Continuous,days,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS], -PAADVTRV,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAADVTRV], -PAADVVIG,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG], -PAC_4A,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Categorical,hours/week,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A", -PAC_4A_cont,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Continuous,hours/week,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A", -PAC_4B,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Categorical,hours/week,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B", -PAC_4B_cont,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",Health behaviour,Exercise,Continuous,hours/week,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B", -PAC_7,Walk to work/school,Walked to work or school / last 3 mo.,Health behaviour,Exercise,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7], -PAC_7A,Number times walk work/school,No. of times/3 mo./walking work/school,Health behaviour,Exercise,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7A], -PAC_7B,Time walk work/school,Time spent - walking to go work/school,Health behaviour,Exercise,Categorical,mins,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_7B], -PAC_8,Bike to work/school,Bicycled to work or school / last 3 mo.,Health behaviour,Exercise,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8], -PAC_8A,Number times bike work/school,No. of times/3 mo./bicycl. work/school,Health behaviour,Exercise,Continuous,times/3 mos.,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8A], -PAC_8B,Time bike work/school,Time spent - biking to go work/school,Health behaviour,Exercise,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s",[PAC_8B], -PACDEE,Physical activity,Daily energy expenditure - (D),Health behaviour,Exercise,Continuous,METS,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]", -PACDEE_cat3,Categorical physical activity,Categorical daily energy expenditure,Health behaviour,Exercise,Categorical,METS,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]", -pack_years_cat,Categorical PackYears,Categorical smoking pack-years,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],Derived categorical variable using pack_years_der -pack_years_der,PackYears,Smoking pack-years,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]", -PAYDVADL,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL], -PAYDVDYS,Active days (12-17 years old),Number of active days (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS], -PAYDVTOA,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA], -PAYDVTTR,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTTR], -PAYDVVIG,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),Health behaviour,Exercise,Continuous,minutes/week,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG], -pct_time_der,Percent time in Canada,Percentage of time in Canada,Sociodemographics,Migration,Continuous,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]", -pct_time_der_cat10,Categorical percent time in Canada,Categorical percentage of time in Canada,Sociodemographics,Migration,Categorical,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der], -RAC_1,Difficulty activities,Has difficulty with activities,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]", -RAC_2A,Reduction activities at home,Reduction - activities at home,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]", -RAC_2B,Reduction activities at school or work,Long-term cond. reduces act. - school or work,Health status,ADL,Categorical,N/A,cchs2001_p,cchs2001_p::RACA_2B, -RAC_2B1,Reduction activities at school,Long-term cond. reduces act. - school,Health status,ADL,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]", -RAC_2B2,Reduction activities at work,Reduction kind/amount act. - at work,Health status,ADL,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]", -RAC_2C,Reduction other activities,Reduction - other activities,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]", -RACAG5,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,cchs2001_p,cchs2001_p::RACAG5, -RACDIMP,Impact health problem,Impact of health problems,Health status,Health problems,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]", -RACDPAL,Particpation/activity limitation,Participation and activity limitation,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::[DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]], cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]", -RACG5,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::RACCG5, cchs2005_p::RACEG5, cchs2009_s::RAC_5, cchs2010_s::RAC_5, cchs2012_s::RAC_5, [RACG5]", -RACG5_A,Cause health problem,Cause of Health problem,Health status,Health problems,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[RAC_5], -resp_condition_der,Respiratory condition,Respiratory condition,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031], DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031], DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]", -SDC_5A_1,Knowledge of official languages,Knowledge of official languages,Sociodemographics,Language,Categorical,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]", -SDCDFOLS,First official language spoken,First official language spoken,Sociodemographics,Language,Categorical,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]", -SDCFIMM,Immigrant status,Immigrant Status (D),Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]", -SDCGCBG,Country of birth,Country of birth - (G),Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, cchs2009_s::SDCGCB, cchs2010_s::SDCGCB, cchs2012_s::SDCGCB10, [SDCGCBG]", -SDCGCBG_A,Country of birth,Country of birth - (G),Sociodemographics,Migration,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s","cchs2012_s::SDCGCB10, [SDCGCB]", -SDCGCGT,Ethnicity,"Cultural or racial origin - (D, G)",Sociodemographics,Ethnicity,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, cchs2009_s::SDCDCGT, cchs2010_s::SDCDCGT, cchs2012_s::SDCDCGT, [SDCGCGT]", -SDCGCGT_A,Ethnicity,"Cultural or racial origin - (D, G)",Sociodemographics,Ethnicity,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDCGT], -SDCGLHM,Language(s) spoken at home,Language(s) spoken at home,Sociodemographics,Language,Categorical,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, cchs2009_s::SDCDLHM, cchs2010_s::SDCDLHM, cchs2012_s::SDCDLHM, [SDCGLHM]", -SDCGLHM_A,Language(s) spoken at home,Language(s) spoken at home,Sociodemographics,Language,Categorical,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDLHM], -SDCGLNG,Languages - can converse in,Languages - can converse in,Sociodemographics,Language,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2009_s, cchs2010_s","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, cchs2009_s::SDCDLNG, cchs2010_s::SDCDLNG, [SDCGLNG]", -SDCGLNG_A,Languages - can converse in,Languages - can converse in,Sociodemographics,Language,Categorical,N/A,"cchs2009_s, cchs2010_s",[SDCDLNG], -SDCGRES,Time in Canada,"Length/time in Canada since imm. (D, G)",Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, cchs2009_s::SDCDRES, cchs2010_s::SDCDRES, cchs2012_s::SDCDRES, [SDCGRES]", -SDCGRES_A,Time in Canada,"Length/time in Canada since imm. (D, G)",Sociodemographics,Migration,Continuous,Years,"cchs2009_s, cchs2010_s, cchs2012_s",[SDCDRES], -SLP_02,Trouble sleeping,Freq. - trouble sleeping,Health behaviour,Sleep,Categorical,N/A,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]", -SLP_02_A,Trouble sleeping,Freq. - trouble sleeping,Health behaviour,Sleep,Categorical,N/A,cchs2001_p,[GENA_04], -SLP_03,Sleep refreshing,Freq. - find sleep refreshing,Health behaviour,Sleep,Categorical,N/A,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]", -SLP_03_A,Sleep refreshing,Freq. - find sleep refreshing,Health behaviour,Sleep,Categorical,N/A,cchs2001_p,[GENA_05], -SLP_04,Difficulty awake,Freq. - diffficult to stay awake,Health behaviour,Sleep,Categorical,N/A,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]", -SLP_04_A,Difficulty awake,Freq. - diffficult to stay awake,Health behaviour,Sleep,Categorical,N/A,cchs2001_p,[GENA_06], -SLPG01,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]", -SLPG01_A,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Categorical,N/A,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01", -SLPG01_cont,Hours sleep,No./hours spent sleeping each night,Health behaviour,Sleep,Continuous,N/A,"cchs2001_p, cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01, cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]", -SMK_005,Type of smoker presently,Type of smoker presently,Health behaviour,Smoking,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005], -SMK_01A,s100,"In lifetime, smoked 100 or more cigarettes",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]", -SMK_030,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),Health behaviour,Smoking,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030], -SMK_05B,cigdayo,# of cigarettes smoked daily - occasional smoker,Health behaviour,Smoking,Continuous,cigarettes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]", -SMK_05C,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",Health behaviour,Smoking,Continuous,days,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]", -SMK_05D,evd,Ever smoked cigarettes daily - occasional smoker,Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]", -SMK_06A_A,stpn,When did you stop smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,cchs2001_p,cchs2001_p::SMKA_06A, -SMK_06A_B,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]", -SMK_06A_cont,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_06A, cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]", -SMK_09A_A,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,cchs2001_p,cchs2001_p::SMKA_09A, -SMK_09A_B,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]", -SMK_09A_cont,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_09A, cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]", -SMK_204,cigdayd,# of cigarettes smoked daily - daily smoker,Health behaviour,Smoking,Continuous,cigarettes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]", -SMK_208,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,Health behaviour,Smoking,Continuous,cigarettes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]", -SMKDSTY_A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY], DerivedVar::[SMK_005, SMK_030, SMK_01A]","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)" -SMKDSTY_B,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",Health behaviour,Smoking,Categorical,N/A,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY", -SMKDSTY_cat3,Smoking status,"Type of smoker: current, former, never",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]",Re-categorization of SMKDSTY to be used for smoking imputation -SMKDSTY_cat5,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]","Re-categorization of SMKDSTY to be used for smoking imputation. SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category" -SMKG01C_A,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, [SMK_01C]", -SMKG01C_B,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, [SMKG01C]", -SMKG01C_cont,agec1,Age smoked first cigarette,Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, [SMKG01C]", -SMKG040,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Categorical,Years,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040], -SMKG040_cont,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKG203_cont, SMKG207_cont], [SMKG040]", -SMKG06C,stpny,Years since stopped smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, cchs2009_s::SMK_06C, cchs2010_s::SMK_06C, cchs2012_s::SMK_06C, [SMKG06C]", -SMKG09C,stpdy,Years since stopped smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2009_s::SMK_09C, cchs2010_s::SMK_09C, cchs2012_s::SMK_09C, [SMKG09C]", -SMKG203_A,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, [SMK_203]", -SMKG203_B,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, [SMKG203]", -SMKG203_cont,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, [SMKG203], DerivedVar::[SMK_005, SMKG040]", -SMKG207_A,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, [SMK_207]", -SMKG207_B,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, [SMKG207]", -SMKG207_cont,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, [SMKG207], DerivedVar::[SMK_030, SMKG040]", -smoke_simple,Simple smoking status,Simple smoking status,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]", -SPS_01,SPS-5 - people to depend on for help,Five-item social provision scale - people to depend on for help,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]", -SPS_02,SPS-5 - people who enjoy same social activities,Five-item social provision scale - people who enjoy same social activities,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]", -SPS_03,SPS-5 - close relationships,Five-item social provision scale - close relationships,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]", -SPS_04,SPS-5 - important decision discussion,Five-item social provision scale - important decision discussion,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]", -SPS_05,SPS-5 - competence and skill are recognized,Five-item social provision scale - competence and skill are recognized,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]", -SPS_06,SPS-5 - trustworthy person for advice,Five-item social provision scale - trustworthy person for advice,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]", -SPS_07,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - group with shared attitudes and beliefs,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]", -SPS_08,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - strong emotional bond with a least one person,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]", -SPS_09,SPS-5 - admired talents and abilities,Five-item social provision scale - admired talents and abilities,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]", -SPS_10,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]", -SPS5_der,SPS-5 - overall,Five-item social provision scale - overall,Health status,Chronic condition,Continuous,N/A,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_s","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]", -SSA_01,MOS - # close friend and relatives,Medical Outcome Study - Social Support Survey - number of close friends and relatives,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_01], -SSA_02,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - has someone to give help if confined to bed,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_02], -SSA_03,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - has someone to listen,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_03], -SSA_04,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - has someone to listen,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_04], -SSA_05,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - has someone to take to doctor,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_05], -SSA_06,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - has someone who shows love and affection,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_06], -SSA_07,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - has someone to have a good time with,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_07], -SSA_08,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - has someone to give info to help understand a situation,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_08], -SSA_09,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - has someone to confide in,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_09], -SSA_10,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - has someone who gives hugs,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_10], -SSA_11,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - has someone to get together with for relaxation,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_11], -SSA_12,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - has someone to prepare meals,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_12], -SSA_13,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - has someone to give advice,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_13], -SSA_14,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - has someone to do things to get mind off things,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_14], -SSA_15,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - has someone to help with daily chores if sick,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_15], -SSA_16,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - has someone to share most private worries and fears with,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_16], -SSA_17,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - has someone to share most private worries and fears with,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_17], -SSA_18,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - has someone to do something enjoyable with,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_18], -SSA_19,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - has someone who understands problems,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_19], -SSA_20,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - has someone who loves and makes feel wanted,Health status,Chronic condition,Continuous,N/A,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_s, cchs2010_s, cchs2012_s",[SSA_20], -time_quit_smoking,Time since quit,Time since quit smoking,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMK_09A_B, SMKG09C]", -WTS_M,Weight,Weights,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]", -WTS_S,Weight - Share,Weights - Share,N/A,N/A,Continuous,N/A,"cchs2009_s, cchs2010_s, cchs2012_s",[WTS_S], diff --git a/worksheets/cchsflow-variable-details.csv b/worksheets/cchsflow-variable-details.csv index 7fb2533..89aab70 100644 --- a/worksheets/cchsflow-variable-details.csv +++ b/worksheets/cchsflow-variable-details.csv @@ -1,2041 +1,3840 @@ -variable,dummyVariable,typeEnd,databaseStart,variableStart,typeStart,recEnd,numValidCat,catLabel,catLabelLong,units,recStart,catStartLabel,variableStartShortLabel,variableStartLabel,notes -ADL_01,ADL_01_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005,[ADL_01]",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01,ADL_01_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,2,2,No,No,N/A,2,No,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01,ADL_01_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_01,ADL_01_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,2,2,No,No,N/A,"[1,2]",No,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_01,ADL_01_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01,ADL_01_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_005, cchs2017_2018_p::ADL_005",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - preparing meals,"Because of any condition or health problem, do you need the help of another person in preparing meals?", -ADL_01_A,ADL_01_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?","For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_01_A,ADL_01_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_01_A,ADL_01_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_01_A,ADL_01_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_01_A,ADL_01_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_01_A,ADL_01_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_005],cat,NA::b,4,missing,missing,N/A,else,else,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_02,ADL_02_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help - getting to appointments,"Because of any physical condition or mental condition or health problem, do you need the help of another person with getting to appointments and running errands such as shopping for groceries?","In the 2001 CCHS, respondents were asked, ""Because of any condition or health problem, do you need the help of another person in shopping for groceries or other necessities?""" -ADL_02,ADL_02_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,2,2,No,No,N/A,2,No,Needs help - getting to appointments,"Because of any physical condition or mental condition or health problem, do you need the help of another person with getting to appointments and running errands such as shopping for groceries?", -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - getting to appointments,"Because of any physical condition or mental condition or health problem, do you need the help of another person with getting to appointments and running errands such as shopping for groceries?", -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - getting to appointments,"Because of any physical condition or mental condition or health problem, do you need the help of another person with getting to appointments and running errands such as shopping for groceries?", -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - getting to appointments,"Because of any physical condition or mental condition or health problem, do you need the help of another person with getting to appointments and running errands such as shopping for groceries?", -ADL_02,ADL_02_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02,ADL_02_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,2,2,No,No,N/A,"[1,2]",No,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02,ADL_02_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_02,ADL_02_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_010, cchs2017_2018_p::ADL_010",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - preparing meals,"Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?", -ADL_02_A,ADL_02_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Needs help - getting to appointments,"Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?","For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_02_A,ADL_02_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Needs help - getting to appointments,"Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?", -ADL_02_A,ADL_02_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Needs help - getting to appointments,"Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?", -ADL_02_A,ADL_02_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Needs help - getting to appointments,"Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?", -ADL_02_A,ADL_02_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Needs help - getting to appointments,"Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?", -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - getting to appointments,"Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?", -ADL_02_A,ADL_02_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_010],cat,NA::b,4,missing,missing,N/A,else,else,Needs help - getting to appointments,"Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?", -ADL_03,ADL_03_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03,ADL_03_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,2,2,No,No,N/A,2,No,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03,ADL_03_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03,ADL_03_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,2,2,No,No,N/A,"[1,2]",No,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03,ADL_03_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03,ADL_03_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_015, cchs2017_2018_p::ADL_015",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - doing housework,"Because of any condition or health problem, do you need the help of another person in doing normal everyday housework?", -ADL_03_A,ADL_03_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Needs help - doing housework,"Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?","For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_03_A,ADL_03_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Needs help - doing housework,"Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?", -ADL_03_A,ADL_03_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Needs help - doing housework,"Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?", -ADL_03_A,ADL_03_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Needs help - doing housework,"Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?", -ADL_03_A,ADL_03_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Needs help - doing housework,"Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?", -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - doing housework,"Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?", -ADL_03_A,ADL_03_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_015],cat,NA::b,4,missing,missing,N/A,else,else,Needs help - doing housework,"Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?", -ADL_04,ADL_04_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04,ADL_04_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,2,2,No,No,N/A,2,No,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04,ADL_04_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_04,ADL_04_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,2,2,No,No,N/A,"[1,2]",No,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_04,ADL_04_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04,ADL_04_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_020, cchs2017_2018_p::ADL_020",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - personal care,"Because of any condition or health problem, do you need the help of another person in personal care such as washing, dressing or eating?", -ADL_04_A,ADL_04_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Needs help - personal care,"Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?","For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_04_A,ADL_04_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Needs help - personal care,"Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?", -ADL_04_A,ADL_04_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Needs help - personal care,"Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?", -ADL_04_A,ADL_04_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Needs help - personal care,"Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?", -ADL_04_A,ADL_04_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Needs help - personal care,"Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?", -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - personal care,"Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?", -ADL_04_A,ADL_04_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_020],cat,NA::b,4,missing,missing,N/A,else,else,Needs help - personal care,"Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?", -ADL_05,ADL_05_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05,ADL_05_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,2,2,No,No,N/A,2,No,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05,ADL_05_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_05,ADL_05_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,2,2,No,No,N/A,"[1,2]",No,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_05,ADL_05_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05,ADL_05_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_025, cchs2017_2018_p::ADL_025",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - moving about inside house,"Because of any condition or health problem, do you need the help of another person in moving about inside the house?", -ADL_05_A,ADL_05_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Needs help - moving about inside house,"Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?","For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_05_A,ADL_05_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Needs help - moving about inside house,"Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?", -ADL_05_A,ADL_05_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Needs help - moving about inside house,"Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?", -ADL_05_A,ADL_05_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Needs help - moving about inside house,"Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?", -ADL_05_A,ADL_05_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Needs help - moving about inside house,"Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?", -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - moving about inside house,"Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?", -ADL_05_A,ADL_05_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_025],cat,NA::b,4,missing,missing,N/A,else,else,Needs help - moving about inside house,"Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?", -ADL_06,ADL_06_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06,ADL_06_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,2,2,No,No,N/A,2,No,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, [ADL_06]",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06,ADL_06_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_06,ADL_06_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,2,2,No,No,N/A,"[1,2]",No,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?","For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_06,ADL_06_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06,ADL_06_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ADL_030, cchs2017_2018_p::ADL_030",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - looking after finances,"Because of any physical condition or mental condition or health problem, do you need the help of another person with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06_A,ADL_06_A_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Needs help - looking after finances,"Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?","For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small." -ADL_06_A,ADL_06_A_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Needs help - looking after finances,"Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06_A,ADL_06_A_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Needs help - looking after finances,"Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06_A,ADL_06_A_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Needs help - looking after finances,"Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06_A,ADL_06_A_cat4_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Needs help - looking after finances,"Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - looking after finances,"Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?", -ADL_06_A,ADL_06_A_cat4_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[ADL_030],cat,NA::b,4,missing,missing,N/A,else,else,Needs help - looking after finances,"Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?", -ADL_07,ADL_07_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help - heavy household chores,"Because of any physical condition or mental condition or health problem, do you need the help of another person with doing heavy household chores such as spring cleaning or yard work?", -ADL_07,ADL_07_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,2,2,No,No,N/A,2,No,Needs help - heavy household chores,"Because of any physical condition or mental condition or health problem, do you need the help of another person with doing heavy household chores such as spring cleaning or yard work?", -ADL_07,ADL_07_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help - heavy household chores,"Because of any physical condition or mental condition or health problem, do you need the help of another person with doing heavy household chores such as spring cleaning or yard work?", -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help - heavy household chores,"Because of any physical condition or mental condition or health problem, do you need the help of another person with doing heavy household chores such as spring cleaning or yard work?", -ADL_07,ADL_07_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D",cat,NA::b,2,missing,missing,N/A,else,else,Needs help - heavy household chores,"Because of any physical condition or mental condition or health problem, do you need the help of another person with doing heavy household chores such as spring cleaning or yard work?", -ADL_der,ADL_der_catN/A_Func::adl_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,Func::adl_fun,N/A,N/A,N/A,N/A,N/A,N/A,Derived needs help with tasks,Derived needs help with tasks,"Derived variable based on ADL_01, ADL_02, ADL_03, ADL_04, ADL_05" -ADL_der,ADL_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,1,2,Needs help with tasks,Needs help with tasks,N/A,N/A,Needs help with tasks,Derived needs help with tasks,Derived needs help with tasks, -ADL_der,ADL_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,2,2,Does not need help with tasks,Does need help with tasks,N/A,N/A,Does need help with tasks,Derived needs help with tasks,Derived needs help with tasks, -ADL_der,ADL_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,NA::b,2,missing,missing,N/A,N/A,Does need help with tasks,Derived needs help with tasks,Derived needs help with tasks, -ADL_score_5,ADL_score_5_catN/A_Func::adl_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,Func::adl_score_5_fun,6,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,0,6,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,1,6,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,2,6,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,3,6,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,4,6,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,5,6,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,NA::a,6,not applicable,not applicable,N/A,N/A,N/A,N/A,N/A, -ADL_score_5,ADL_score_5_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",N/A,NA::b,6,missing,missing,N/A,N/A,N/A,N/A,N/A, -ADLF6R,ADLF6R_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,1,2,Yes,Yes,N/A,1,Yes,Needs help with at least one task - (F),Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,2,2,No,No,N/A,2,No,Needs help with at least one task - (F),Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help with at least one task - (F),Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help with at least one task - (F),Needs help with at least one task - (F), -ADLF6R,ADLF6R_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, [ADLF6R]",cat,NA::b,2,missing,missing,N/A,else,else,Needs help with at least one task - (F),Needs help with at least one task - (F), -ADM_RNO,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]",cont,copy,N/A,Sequential record number,Sequential record number,N/A,"[1,999998]",Sequential record number,Sequential record number,Sequential record number, -ALC_1,ALC_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,1,2,yes,alcohol in the past year,N/A,1,"Past year, have you drank alcohol",d12,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,2,2,no,no alcohol in past year,N/A,2,"Past year, have you drank alcohol",d12,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,d12,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),d12,"Past year, have you drank alcohol", -ALC_1,ALC_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, [ALC_1]",cat,NA::b,2,missing,missing,N/A,else,else,d12,"Past year, have you drank alcohol", -ALC_005,ALC_005_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,1,2,yes,alcohol in the lifetime,N/A,1,"In lifetime, ever had a drink?",dever,"In lifetime, ever had a drink?", -ALC_005,ALC_005_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,2,2,no,no alcohol in lifetime,N/A,2,"In lifetime, ever had a drink?",dever,"In lifetime, ever had a drink?", -ALC_005,ALC_005_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,dever,"In lifetime, ever had a drink?", -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),dever,"In lifetime, ever had a drink?", -ALC_005,ALC_005_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, [ALC_005]",cat,NA::b,2,missing,missing,N/A,else,else,dever,"In lifetime, ever had a drink?", -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,1,3,Regular,Regular Drinker,N/A,1,Regular Drinker,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,No drink in the last 12 months,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, [ALCDTTM]",cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,1,3,Regular,Regular Drinker,N/A,1,Regular drinker,Drinker type (last 12 months),Type of drinker (last 12 months),"In CCHS cycles 2001, 2003, and 2005, ALCDTTM was derived from ALCDTYP in which former and never drinkers were combined into ""No drink in the last 12 months""" -ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,Former drinker,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,4,Never drank,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTTM,ALCDTTM_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP",cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (last 12 months), -ALCDTYP,ALCDTYP_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,1,4,Regular,Regular drinker,N/A,1,Regular drinker,DrinkerType,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,2,4,Occasional,Occasional drinker,N/A,2,Occasional drinker,DrinkerType,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,3,4,Former,Former drinker,N/A,3,Former drinker,DrinkerType,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,4,4,Never drank,Never drank,N/A,4,Never drank,DrinkerType,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,NA::a,4,Not applicable,not applicable,N/A,6,not applicable,DrinkerType,Type of drinker - (D), -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),DrinkerType,Type of drinker - (D),Don't know (7) and refusal (8) not included in 2001 CCHS -ALCDTYP,ALCDTYP_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALNDTYP]",cat,NA::b,4,missing,missing,N/A,else,else,DrinkerType,Type of drinker - (D), -ALW_1,ALW_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,1,2,yes,alcohol in the past week,N/A,1,"Past week, had any alcohol",dany,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,2,2,no,no alcohol in past week,N/A,2,"Past week, had any alcohol",dany,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,NA::a,2,not applicable,not applicable,N/A,6,Not applicable,dany,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),dany,"Past week, had any alcohol", -ALW_1,ALW_1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, [ALW_1]",cat,NA::b,2,missing,missing,N/A,else,else,dany,"Past week, had any alcohol", -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,copy,N/A,# of drinks - Sunday,Number of drinks on Sunday,drinks,"[0,50]",Number of drinks on Sunday,DailyConsumptionSunday,Number of drinks on Sunday, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,DailyConsumptionSunday,Number of drinks on Sunday, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),DailyConsumptionSunday,Number of drinks on Sunday, -ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, [ALW_2A1]",cont,NA::b,N/A,missing,missing,drinks,else,else,DailyConsumptionSunday,Number of drinks on Sunday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,copy,N/A,# of drinks - Monday,Number of drinks on Monday,drinks,"[0,50]",Number of drinks on Monday,DailyConsumptionMonday,Number of drinks on Monday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,DailyConsumptionMonday,Number of drinks on Monday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),DailyConsumptionMonday,Number of drinks on Monday, -ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, [ALW_2A2]",cont,NA::b,N/A,missing,missing,drinks,else,else,DailyConsumptionMonday,Number of drinks on Monday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,copy,N/A,# of drinks - Tuesday,Number of drinks on Tuesday,drinks,"[0,50]",Number of drinks on Tuesday,DailyConsumptionTuesday,Number of drinks on Tuesday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,DailyConsumptionTuesday,Number of drinks on Tuesday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),DailyConsumptionTuesday,Number of drinks on Tuesday, -ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, [ALW_2A3]",cont,NA::b,N/A,missing,missing,drinks,else,else,DailyConsumptionTuesday,Number of drinks on Tuesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,copy,N/A,# of drinks - Wednesday,Number of drinks on Wednesday,drinks,"[0,50]",Number of drinks on Wednesday,DailyConsumptionWednesday,Number of drinks on Wednesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,DailyConsumptionWednesday,Number of drinks on Wednesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),DailyConsumptionWednesday,Number of drinks on Wednesday, -ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, [ALW_2A4]",cont,NA::b,N/A,missing,missing,drinks,else,else,DailyConsumptionWednesday,Number of drinks on Wednesday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,copy,N/A,# of drinks - Thursday,Number of drinks on Thursday,drinks,"[0,50]",Number of drinks on Thursday,DailyConsumptionThursday,Number of drinks on Thursday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,DailyConsumptionThursday,Number of drinks on Thursday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),DailyConsumptionThursday,Number of drinks on Thursday, -ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, [ALW_2A5]",cont,NA::b,N/A,missing,missing,drinks,else,else,DailyConsumptionThursday,Number of drinks on Thursday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,copy,N/A,# of drinks - Friday,Number of drinks on Friday,drinks,"[0,50]",Number of drinks on Friday,DailyConsumptionFriday,Number of drinks on Friday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,DailyConsumptionFriday,Number of drinks on Friday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),DailyConsumptionFriday,Number of drinks on Friday, -ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, [ALW_2A6]",cont,NA::b,N/A,missing,missing,drinks,else,else,DailyConsumptionFriday,Number of drinks on Friday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,copy,N/A,# of drinks - Saturday,Number of drinks on Saturday,drinks,"[0,50]",Number of drinks on Saturday,DailyConsumptionSaturday,Number of drinks on Saturday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,DailyConsumptionSaturday,Number of drinks on Saturday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),DailyConsumptionSaturday,Number of drinks on Saturday, -ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, [ALW_2A7]",cont,NA::b,N/A,missing,missing,drinks,else,else,DailyConsumptionSaturday,Number of drinks on Saturday, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,copy,N/A,drinks/day,drinks/day,drinks/day,"[0,40]",drinks per day,AverageDailyConsumption,Average daily alcohol consumption,"2007-08, 09-10, 2010, 2012 cycles are categorical" -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,NA::a,N/A,not applicable,not applicable,drinks/day,996,Not applicable,AverageDailyConsumption,Average daily alcohol consumption, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,NA::b,N/A,missing,missing,drinks/day,"[997,999]",don't know (997); refusal (998); not stated (9),AverageDailyConsumption,Average daily alcohol consumption, -ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADDLY , cchs2003_p::ALCCDDLY , cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, [ALWDDLY]",cont,NA::b,N/A,missing,missing,drinks/day,else,else,AverageDailyConsumption,Average daily alcohol consumption, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,copy,N/A,drinks/week,drinks/week,drinks/week,"[0,449]",drinks per week,drinks/week,Weekly consumption of alcohol,shown as categorical variable in CCHS 2014 cycle -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,NA::a,N/A,not applicable,not applicable,drinks/week,996,not applicable (996),drinks/week,Weekly consumption of alcohol, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,NA::b,N/A,missing,missing,drinks/week,"[997,999]",don't know (997); refusal (998); not stated (999),drinks/week,Weekly consumption of alcohol, -ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, [ALWDWKY]",cont,NA::b,N/A,missing,missing,drinks/week,else,else,drinks/week,Weekly consumption of alcohol, -ALWDVSTR_der,ALWDVSTR_der_catN/A_Func::low_drink_short_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,Func::low_drink_short_fun,N/A,N/A,N/A,N/A,N/A,N/A,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7." -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,1,2,Increased short term health risk,Increased short term health risk due to drinking,N/A,1,Increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking, -ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,2,2,No increased short term health risk,No increased short term health risk due to drinking,N/A,2,No increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking, -ALWDVSTR_der,ALWDVSTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::b,2,missing,missing,N/A,N/A,missing,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking, -ALWDVLTR_der,ALWDVLTR_der_catN/A_Func::low_drink_long_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,Func::low_drink_long_fun,N/A,N/A,N/A,N/A,N/A,N/A,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking, -ALWDVLTR_der,ALWDVLTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,1,2,Increased long term health risk,Increased long term health risk due to drinking,N/A,1,Increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7." -ALWDVLTR_der,ALWDVLTR_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,2,2,No increased long term health risk,No increased long term health risk due to drinking,N/A,2,No increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking, -ALWDVLTR_der,ALWDVLTR_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::b,2,missing,missing,N/A,N/A,missing,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking, -binge_drinker,binge_drinker_catN/A_Func::binge_drinker_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,Func::binge_drinker_fun,N/A,N/A,N/A,N/A,N/A,N/A,Binge Drinker,Binge Drinker,"Derived from DHH_SEX, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7" -binge_drinker,binge_drinker_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,1,2,Binge drinker,Binge drinker,N/A,N/A,Binge drinker,Binge Drinker,Binge Drinker, -binge_drinker,binge_drinker_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,2,2,Regular drinker,Regular drinker,N/A,N/A,Regular drinker,Binge Drinker,Binge Drinker, -binge_drinker,binge_drinker_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::a,2,Not applicable,Not applicable,N/A,N/A,Not applicable,Binge Drinker,Binge Drinker, -binge_drinker,binge_drinker_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",N/A,NA::b,2,missing,missing,N/A,N/A,missing,Binge Drinker,Binge Drinker, -CCC_031,CCC_031_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,1,2,Asthma,Asthma,N/A,1,Yes (Do you have asthma?),Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,2,2,No asthma,No asthma,N/A,2,No (Do you have asthma?),Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma,Do you have asthma?, -CCC_031,CCC_031_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, [CCC_031]",cat,NA::b,2,missing,missing,N/A,else,else,Asthma,Do you have asthma?, -CCC_041,CCC_041_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,1,2,Fibromyalgia,Fibromyalgia,N/A,1,Yes (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/14 -CCC_041,CCC_041_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,2,2,No Fibromyalgia,Fibromyalgia,N/A,2,No (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/15 -CCC_041,CCC_041_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/16 -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/17 -CCC_041,CCC_041_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, [CCC_041]",cat,NA::b,2,missing,missing,N/A,else,else,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/18 -CCC_051,CCC_051_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,1,2,Yes,Arthritis/Rheumatism,N/A,1,Yes (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,2,2,No,No Arthritis/Rheumatism,N/A,2,No (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_051,CCC_051_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, [CCC_051]",cat,NA::b,2,missing,missing,N/A,else,else,Arthritis/Rheumatism,Do you have arthritis or rheumatism?, -CCC_061,CCC_061_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,1,2,Back Problems,Back Problems,N/A,1,Yes (Do you have back problems?),Back Problems,"Do you have back problems, excluding fibromyalgia and arthritis diagnosed by a health professional?", -CCC_061,CCC_061_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,2,2,No Back Problems,No Back Problems,N/A,2,No (Do you have back problems?),Back Problems,"Do you have back problems, excluding fibromyalgia and arthritis diagnosed by a health professional?", -CCC_061,CCC_061_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Back Problems,"Do you have back problems, excluding fibromyalgia and arthritis diagnosed by a health professional?", -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Back Problems,"Do you have back problems, excluding fibromyalgia and arthritis diagnosed by a health professional?", -CCC_061,CCC_061_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, [CCC_061]",cat,NA::b,2,missing,missing,N/A,else,else,Back Problems,"Do you have back problems, excluding fibromyalgia and arthritis diagnosed by a health professional?", -CCC_071,CCC_071_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,1,2,Yes,Hypertension,N/A,1,Yes (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,2,2,No,No Hypertension,N/A,2,No (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension,Do you have high blood pressure?, -CCC_071,CCC_071_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, [CCC_071]",cat,NA::b,2,missing,missing,N/A,else,else,Hypertension,Do you have high blood pressure?, -CCC_072,CCC_072_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::CCCE_072, [CCC_072]",cat,1,2,Hypertension diagnosis,Hypertension diagnosis,N/A,1,Yes (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::CCCE_072, [CCC_072]",cat,2,2,No hypertension diagnosis,No hypertension diagnosis,N/A,2,No (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::CCCE_072, [CCC_072]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::CCCE_072, [CCC_072]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_072,CCC_072_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::CCCE_072, [CCC_072]",cat,NA::b,2,missing,missing,N/A,else,else,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?, -CCC_073,CCC_073_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,1,2,Hypertension medication,Hypertension medication,N/A,1,Yes (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,2,2,No hypertension medication,No hypertension medication,N/A,2,No (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_073,CCC_073_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, [CCC_073]",cat,NA::b,2,missing,missing,N/A,else,else,Hypertension medication,In the past month have you taken any medicine for high blood pressure?, -CCC_081,CCC_081_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,1,2,Migraine Headache,Migraine Headache,N/A,1,Yes (Do you have Migraine Headaches?),Migraine Headache,"Remember, we're interested in conditions diagnosed by a health professional. Do you have migraine headaches?","2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""" -CCC_081,CCC_081_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,2,2,No Migraine Headache,No Migraine Headache,N/A,2,No (Do you have Migraine Headaches?),Migraine Headache,"Remember, we're interested in conditions diagnosed by a health professional. Do you have migraine headaches?","2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""" -CCC_081,CCC_081_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Migraine Headache,"Remember, we're interested in conditions diagnosed by a health professional. Do you have migraine headaches?","2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""" -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Migraine Headache,"Remember, we're interested in conditions diagnosed by a health professional. Do you have migraine headaches?","2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""" -CCC_081,CCC_081_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, [CCC_081]",cat,NA::b,2,missing,missing,N/A,else,else,Migraine Headache,"Remember, we're interested in conditions diagnosed by a health professional. Do you have migraine headaches?","2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""" -CCC_091,CCC_091_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,1,2,COPD/emphysema/bronchitis,COPD/emphysema/bronchitis,N/A,1,"Yes (Do you have COPD(eg bronchitis,emphysema)?)",COPD/emphysema/bronchitis,"Do you have COPD (eg bronchitis,emphysema)?", -CCC_091,CCC_091_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,2,2,No COPD/emphysema/bronchitis,No COPD/emphysema/bronchitis,N/A,2,"No (Do you have COPD(eg bronchitis,emphysema)?)",COPD/emphysema/bronchitis,"Do you have COPD (eg bronchitis,emphysema)?", -CCC_091,CCC_091_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD/emphysema/bronchitis,"Do you have COPD (eg bronchitis,emphysema)?", -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD/emphysema/bronchitis,"Do you have COPD (eg bronchitis,emphysema)?", -CCC_091,CCC_091_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, [CCC_091]",cat,NA::b,2,missing,missing,N/A,else,else,COPD/emphysema/bronchitis,"Do you have COPD (eg bronchitis,emphysema)?", -CCC_101,CCC_101_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,1,2,Yes,Diabetes,N/A,1,Yes (Do you have diabetes?),Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,2,2,No,No Diabetes,N/A,2,No (Do you have diabetes?),Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes,Do you have diabetes?, -CCC_101,CCC_101_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, [CCC_101]",cat,NA::b,2,missing,missing,N/A,else,else,Diabetes,Do you have diabetes?, -CCC_111,CCC_111_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,1,2,Epilepsy,Epilepsy,N/A,1,Yes (Do you have epilepsy?),Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,2,2,No Epilepsy,No Epilepsy,N/A,2,No (Do you have epilepsy?),Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Epilepsy,Do you have epilepsy?, -CCC_111,CCC_111_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111",cat,NA::b,2,missing,missing,N/A,else,else,Epilepsy,Do you have epilepsy?, -CCC_121,CCC_121_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,1,2,Yes,Heart Disease,N/A,1,Yes (Do you have heart disease?),Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,2,2,No,No Heart Disease,N/A,2,No (Do you have heart disease?),Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Heart Disease,Do you have heart disease?, -CCC_121,CCC_121_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, [CCC_121]",cat,NA::b,2,missing,missing,N/A,else,else,Heart Disease,Do you have heart disease?, -CCC_131,CCC_131_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,1,2,Yes,Cancer,N/A,1,Yes (Do you have cancer?),Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,2,2,No,No Cancer,N/A,2,No (Do you have cancer?),Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Cancer,Do you have cancer?, -CCC_131,CCC_131_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, [CCC_131]",cat,NA::b,2,missing,missing,N/A,else,else,Cancer,Do you have cancer?, -CCC_151,CCC_151_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,1,2,Yes,Stroke,N/A,1,Yes (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,2,2,No,No Stroke,N/A,2,No (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stroke,Do you suffer from effects of stroke?, -CCC_151,CCC_151_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, [CCC_151]",cat,NA::b,2,missing,missing,N/A,else,else,Stroke,Do you suffer from effects of stroke?, -CCC_171,CCC_171_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,1,2,Yes,Bowel disorder,N/A,1,Yes (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's Disease or colitis?, -CCC_171,CCC_171_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,2,2,No,No bowel disorder,N/A,2,No (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's Disease or colitis?, -CCC_171,CCC_171_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bowel disorder,Do you have a bowel disorder such as Crohn's Disease or colitis?, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bowel disorder,Do you have a bowel disorder such as Crohn's Disease or colitis?, -CCC_171,CCC_171_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",cat,NA::b,2,missing,missing,N/A,else,else,Bowel disorder,Do you have a bowel disorder such as Crohn's Disease or colitis?, -CCC_251,CCC_251_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,1,2,Chronic fatigue,Chronic fatigue,N/A,1,Yes (Do you have chronic fatigue syndrome?),Chronic fatigue syndrome,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,2,2,No chronic fatigue,No chronic fatigue,N/A,2,No (Do you have chronic fatigue syndrome?),Chronic fatigue syndrome,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Chronic fatigue syndrome,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Chronic fatigue syndrome,Do you have chronic fatigue syndrome?, -CCC_251,CCC_251_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, [CCC_251]",cat,NA::b,2,missing,missing,N/A,else,else,Chronic fatigue syndrome,Do you have chronic fatigue syndrome?, -CCC_280,CCC_280_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,1,2,Yes,Has a mood disorder,N/A,1,Yes (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,2,2,No,Does not have a mood disorder,N/A,2,No (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Mood disorder,Do you have a mood disorder?, -CCC_280,CCC_280_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, [CCC_280]",cat,NA::b,2,missing,missing,N/A,else,else,Mood disorder,Do you have a mood disorder?, -CCC_290,CCC_290_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,1,2,Has an anxiety disorder,Has an anxiety disorder,N/A,1,Yes (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,2,2,Does not have an anxiety disorder,Does not have an anxiety disorder,N/A,2,No (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Anxiety Disorder,Do you have an anxiety disorder?, -CCC_290,CCC_290_cat2_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, [CCC_290]",cat,NA::b,2,missing,missing,N/A,else,else,Anxiety Disorder,Do you have an anxiety disorder?, -CCC_31A,CCC_31A_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,1,2,Cancer diagnosis,Cancer diagnosis,N/A,1,Yes (Have you ever been diagnosed with cancer?),Cancer Diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,2,2,No cancer diagnosis,No cancer diagnosis,N/A,2,Yes (Have you ever been diagnosed with cancer?),Cancer Diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,NA::a,2,not applicable,not applicable,N/A,6,Yes (Have you ever been diagnosed with cancer?),Cancer Diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,NA::b,2,missing,missing,N/A,"[7,9]",Yes (Have you ever been diagnosed with cancer?),Cancer Diagnosis,Have you ever been diagnosed with cancer?, -CCC_31A,CCC_31A_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, [CCC_31A]",cat,NA::b,2,missing,missing,N/A,else,Yes (Have you ever been diagnosed with cancer?),Cancer Diagnosis,Have you ever been diagnosed with cancer?, -CCC_91A,CCC_91A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,1,2,Bronchitis,Chronic bronchitis,N/A,1,Yes (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,2,2,No bronchitis,No chronic bronchitis,N/A,2,No (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bronchitis,Do you have chronic bronchitis?, -CCC_91A,CCC_91A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",cat,NA::b,2,missing,missing,N/A,else,else,Bronchitis,Do you have chronic bronchitis?, -CCC_91E,CCC_91E_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,1,2,Emphysema,Emphysema,N/A,1,Yes (Do you have emphysema?),emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,2,2,No emphysema,No emphysema,N/A,2,No (Do you have emphysema?),emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),emphysema,Do you have emphysema?, -CCC_91E,CCC_91E_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",cat,NA::b,2,missing,missing,N/A,else,else,emphysema,Do you have emphysema?, -CCC_91F,CCC_91F_cat2_1,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,1,2,COPD,COPD,N/A,1,Yes (Do you have COPD?),COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_2,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,2,2,No COPD,No COPD,N/A,2,No (Do you have COPD?),COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_NA::a,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD,Do you have COPD?, -CCC_91F,CCC_91F_cat2_NA::b,cat,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",cat,NA::b,2,missing,missing,N/A,else,else,COPD,Do you have COPD?, -CCC_075,CCC_075_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,1,2,High blood cholesterol,High blood cholesterol,N/A,1,High blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,Respondent are 18+ years old to answer this question in CCHS 2015-2018 -CCC_075,CCC_075_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,2,2,No high blood cholesterol,No high blood cholesterol,N/A,2,No high blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?, -CCC_075,CCC_075_cat2_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Blood cholesterol,Do you have high blood cholesterol or lipids?, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Blood cholesterol,Do you have high blood cholesterol or lipids?, -CCC_075,CCC_075_cat2_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p",[CCC_075],cat,NA::b,2,missing,missing,N/A,else,else,Blood cholesterol,Do you have high blood cholesterol or lipids?, -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun1,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F]",N/A,Func::COPD_Emph_der_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory Condition,Respiratory Condition,Derived from COPD and Emphysema variables -COPD_Emph_der,COPD_Emph_der_catN/A_Func::COPD_Emph_der_fun2,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, CCC_091]",N/A,Func::COPD_Emph_der_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory Condition,Respiratory Condition,Derived from COPD and Emphysema variables -COPD_Emph_der,COPD_Emph_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_091]",N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -COPD_Emph_der,COPD_Emph_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -COPD_Emph_der,COPD_Emph_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -COPD_Emph_der,COPD_Emph_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -DHH_OWN,DHH_OWN_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,1,2,Yes,Yes,N/A,1,Yes,Dwelling - owned by a member of hsld,Is this dwelling owned by a member of this household?,"Prior to 2009, CCHS restricted this variable to participants who were not living in an institution. In 2011, CCHS changed wording of responses to (1) owner and (2) renter" -DHH_OWN,DHH_OWN_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,2,2,No,No,N/A,2,No,Dwelling - owned by a member of hsld,Is this dwelling owned by a member of this household?, -DHH_OWN,DHH_OWN_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Dwelling - owned by a member of hsld,Is this dwelling owned by a member of this household?, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Dwelling - owned by a member of hsld,Is this dwelling owned by a member of this household?, -DHH_OWN,DHH_OWN_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",cat,NA::b,2,missing,missing,N/A,else,else,Dwelling - owned by a member of hsld,Is this dwelling owned by a member of this household?, -DHH_SEX,DHH_SEX_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,1,2,Male,Male,N/A,1,Male,Sex,Sex, -DHH_SEX,DHH_SEX_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,2,2,Female,Female,N/A,2,Female,Sex,Sex, -DHH_SEX,DHH_SEX_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sex,Sex, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sex,Sex, -DHH_SEX,DHH_SEX_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",cat,NA::b,2,missing,missing,N/A,else,else,Sex,Sex, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,1,5,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,2,5,age (20 to 39),age (20 to 39),years,"[4,7]",20 To 24 Years (4); 25 To 29 Years (5); 30 To 34 Years (6); 35 To 39 Years (7),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,3,5,age (40 to 59),age (40 to 59),years,"[8,11]",40 To 44 Years (8); 45 To 49 Years (9); 50 To 54 Years (10); 55 To 59 Years (11),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,4,5,age (60 to 79),age (60 to 79),years,"[12,15]",60 To 64 Years (12); 65 To 69 Years (13); 70 To 74 Years (14); 75 To 79 Years (15),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,5,5,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat8_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,8,else,else,years,else,else,Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,1,5,age (12 to 19),age (12 to 19),years,"[1,2]",12 To 14 Years (1); 15 To 19 Years (2),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,2,5,age (20 to 39),age (20 to 39),years,"[3,6]",20 To 24 Years (3); 25 To 29 Years (4); 30 To 34 Years (5); 35 To 39 Years (6),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,3,5,age (40 to 59),age (40 to 59),years,"[7,10]",40 To 44 Years (7); 45 To 49 Years (8); 50 To 54 Years (9); 55 To 59 Years (10),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,4,5,age (60 to 79),age (60 to 79),years,"[11,14]",60 To 64 Years (11); 65 To 69 Years (12); 70 To 74 Years (13); 75 To 79 Years (14),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat5_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,5,5,age (80 plus),age (80 plus),years,15,80 Years or more (15),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat8_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Categorical age, -DHHGAGE_5,DHHGAGE_5_cat8_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,8,else,else,years,else,else,Age,Categorical age, -DHHGAGE_A,DHHGAGE_A_cat15_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,1,15,age (12 to 14),age (12 to 14),years,1,12 to 14 years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,2,15,age (15 to 19),age (15 to 19),years,2,15 to 19 years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,3,15,age (20 to 24),age (20 to 24),years,3,20 To 24 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,4,15,age (25 to 29),age (25 to 29),years,4,25 To 29 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,5,15,age (30 to 34),age (30 to 34),years,5,30 To 34 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,6,15,age (35 to 39),age (35 to 39),years,6,35 To 39 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,7,15,age (40 to 44),age (40 to 44),years,7,40 To 44 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,8,15,age (45 to 49),age (45 to 49),years,8,45 To 49 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,9,15,age (50 to 54),age (50 to 54),years,9,50 To 54 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,10,15,age (55 to 59),age (55 to 59),years,10,55 To 59 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_11,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,11,15,age (60 to 64),age (60 to 64),years,11,60 To 64 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_12,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,12,15,age (65 to 69),age (65 to 69),years,12,65 To 69 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_13,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,13,15,age (70 to 74),age (70 to 74),years,13,70 To 74 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_14,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,14,15,age (75 to 79),age (75 to 79),years,14,75 To 79 Years,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_15,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,15,15,age (80 plus),age (80 plus),years,15,80 Years or more,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age,Age - (G), -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age - (G),"Not applicable, don't know, refusal, not stated (96-99) were options only in CCHS 2003, but had zero responses" -DHHGAGE_A,DHHGAGE_A_cat15_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,15,missing,missing,years,else,else,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,1,16,age (12 to 14),age (12 to 14),years,1,12 To 14 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,2,16,age (15 to 17),age (15 to 17),years,2,15 To 17 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,3,16,age (18 to 19),age (18 to 19),years,3,18 To 19 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,4,16,age (20 to 24),age (20 to 24),years,4,20 To 24 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,5,16,age (25 to 29),age (25 to 29),years,5,25 To 29 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,6,16,age (30 to 34),age (30 to 34),years,6,30 To 34 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,7,16,age (35 to 39),age (35 to 39),years,7,35 To 39 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,8,16,age (40 to 44),age (40 to 44),years,8,40 To 44 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,9,16,age (45 to 49),age (45 to 49),years,9,45 To 49 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,10,16,age (50 to 54),age (50 to 54),years,10,50 To 54 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,11,16,age (55 to 59),age (55 to 59),years,11,55 To 59 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,12,16,age (60 to 64),age (60 to 64),years,12,60 To 64 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,13,16,age (65 to 69),age (65 to 69),years,13,65 To 69 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,14,16,age (70 to 74),age (70 to 74),years,14,70 To 74 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,15,16,age (75 to 79),age (75 to 79),years,15,75 To 79 Years,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_16,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,16,16,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age - (G), -DHHGAGE_B,DHHGAGE_B_cat16_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,16,missing,missing,years,else,else,Age,Age - (G), -DHHGAGE_C,DHHGAGE_C_catN/A_Func::age_cat_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,Func::age_cat_fun,N/A,N/A,N/A,years,N/A,N/A,Age,Categorical age,This variable is derived from DHHGAGE_cont -DHHGAGE_C,DHHGAGE_C_cat16_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,1,16,age (12 to 14),age (12 to 14),years,N/A,12 To 14 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,2,16,age (15 to 17),age (15 to 17),years,N/A,15 To 17 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,3,16,age (18 to 19),age (18 to 19),years,N/A,18 To 19 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,4,16,age (20 to 24),age (20 to 24),years,N/A,20 To 24 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,5,16,age (25 to 29),age (25 to 29),years,N/A,25 To 29 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,6,16,age (30 to 34),age (30 to 34),years,N/A,30 To 34 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,7,16,age (35 to 39),age (35 to 39),years,N/A,35 To 39 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,8,16,age (40 to 44),age (40 to 44),years,N/A,40 To 44 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,9,16,age (45 to 49),age (45 to 49),years,N/A,45 To 49 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,10,16,age (50 to 54),age (50 to 54),years,N/A,50 To 54 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,11,16,age (55 to 59),age (55 to 59),years,N/A,55 To 59 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,12,16,age (60 to 64),age (60 to 64),years,N/A,60 To 64 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,13,16,age (65 to 69),age (65 to 69),years,N/A,65 To 69 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,14,16,age (70 to 74),age (70 to 74),years,N/A,70 To 74 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,15,16,age (75 to 79),age (75 to 79),years,N/A,75 To 79 Years,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,16,16,age (80 plus),age (80 plus),years,N/A,80 Years or more,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,NA::a,16,not applicable,not applicable,years,N/A,not applicable,Age,Categorical age, -DHHGAGE_C,DHHGAGE_C_cat16_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_cont],N/A,NA::b,16,missing,missing,years,N/A,missing,Age,Categorical age, -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 to 14 years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,17,N/A,Age,converted categorical age (15 to 19),years,2,15 to 19 years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,22,N/A,Age,converted categorical age (20 to 24),years,3,20 To 24 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,85,N/A,Age,converted categorical age (80 plus),years,15,80 Years or more,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age - (G),"Not applicable, don't know, refusal, not stated (96-99) were options in CCHS 2003, but had zero responses" -DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,N/A,missing,missing,years,else,else,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 To 14 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,16,N/A,Age,converted categorical age (15 to 17),years,2,15 To 17 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,18.5,N/A,Age,converted categorical age (18 to 19),years,3,18 To 19 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,85,N/A,Age,converted categorical age (80 plus),years,16,80 Years or more,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age - (G), -DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,N/A,missing,missing,years,else,else,Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,1,8,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,2,8,age (20 to 29),age (20 to 29),years,"[4,5]",20 to 24 Years (4); 25 To 29 Years (5),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,3,8,age (30 to 39),age (30 to 39),years,"[6,7]",30 To 34 Years (6); 35 To 39 Years (7),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,4,8,age (40 to 49),age (40 to 49),years,"[8,9]",40 To 44 Years (8); 45 To 49 Years (9),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,5,8,age (50 to 59),age (50 to 59),years,"[10,11]",50 To 54 Years (10); 55 To 59 Years (11),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,6,8,age (60 to 69),age (60 to 69),years,"[12,13]",60 To 64 Years (12); 65 To 69 Years (13),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,7,8,age (70 to 79),age (70 to 79),years,"[14,15]",70 To 74 Years (14); 75 To 79 Years (15),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,8,8,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",cat,NA::b,8,else,else,years,else,else,Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,1,8,age (12 to 19),age (12 to 19),years,"[1,2]",12 To 14 Years (1); 15 To 19 Years (2),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,2,8,age (20 to 29),age (20 to 29),years,"[3,4]",20 to 24 Years (3); 25 To 29 Years (4),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,3,8,age (30 to 39),age (30 to 39),years,"[5,6]",30 To 34 Years (5); 35 To 39 Years (6),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,4,8,age (40 to 49),age (40 to 49),years,"[7,8]",40 To 44 Years (7); 45 To 49 Years (8),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,5,8,age (50 to 59),age (50 to 59),years,"[9,10]",50 To 54 Years (9); 55 To 59 Years (10),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,6,8,age (60 to 69),age (60 to 69),years,"[11,12]",60 To 64 Years (11); 65 To 69 Years (12),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,7,8,age (70 to 79),age (70 to 79),years,"[13,14]",70 To 74 Years (13); 75 To 79 Years (14),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,8,8,age (80 plus),age (80 plus),years,15,80 plus Years,Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age - (G), -DHHGAGE_D,DHHGAGE_D_cat8_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",cat,NA::b,8,else,else,years,else,else,Age,Age - (G), -DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size - (G), -DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size - (G), -DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size - (G), -DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size - (G), -DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,5,5,5+ persons,5 or more persons,N/A,5,5 or more persons,Household size,Household size - (G), -DHHGHSZ,DHHGHSZ_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Household size,Household size - (G), -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Household size,Household size - (G), -DHHGHSZ,DHHGHSZ_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size - (G), -DHHGMS,DHHGMS_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,1,4,Married,Married,N/A,1,Married,Marital Status,Marital status - (G), -DHHGMS,DHHGMS_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital Status,Marital status - (G), -DHHGMS,DHHGMS_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,3,4,Widow/Seperated/Divorced,Widow/Sep/Div,N/A,3,Widow/separated/divorced,Marital Status,Marital status - (G), -DHHGMS,DHHGMS_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,4,4,Single/Never married,Single,N/A,4,Single/never married,Marital Status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Marital Status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Marital Status,Marital status - (G), -DHHGMS,DHHGMS_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",cat,NA::b,4,missing,missing,N/A,else,else,Marital Status,Marital status - (G), -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",N/A,Func::diet_score_fun,N/A,N/A,N/A,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice", -diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",N/A,NA::b,N/A,missing,missing,N/A,N/A,Diet score ,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice", -diet_score_cat3,diet_score_cat3N/A_Func::diet_score_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[diet_score],N/A,Func::diet_score_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[diet_score],N/A,1,3,Poor diet,Poor diet,N/A,1,Poor diet,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[diet_score],N/A,2,3,Fair diet,Fair diet,N/A,2,Fair diet,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[diet_score],N/A,3,3,Adequate diet,Adequate diet,N/A,3,Adequate diet,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[diet_score],N/A,NA::a,3,not applicable,not applicable,N/A,NA::a,not applicable,Categorical diet score,Categorical diet score, -diet_score_cat3,diet_score_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[diet_score],N/A,NA::b,3,missing,missing,N/A,NA::b,missing,Categorical diet score,Categorical diet score, -DIS_10G,DIS_10G_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10G,DIS_10G_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?", -DIS_10H,DIS_10H_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DIS_10H,DIS_10H_cat5_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?", -DPS_02,DPS_02_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_02],cat,1,2,Yes,Yes,N/A,1,Yes,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_02],cat,2,2,No,No,N/A,2,No,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_02],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_02],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_02,DPS_02_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_02],cat,NA::b,2,missing,missing,N/A,else,else,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?", -DPS_03,DPS_03_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_03],cat,1,4,All day long,All day long,N/A,1,All day long,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_03],cat,2,4,Most of the day,Most of the day,N/A,2,Most of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_03],cat,3,4,About half of the day,About half of the day,N/A,3,About half of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_03],cat,4,4,Less than half of a day,Less than half of a day,N/A,4,Less than half of a day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_03],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_03],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_03,DPS_03_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_03],cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?", -DPS_04,DPS_04_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_04],cat,1,3,Every day,Every day,N/A,1,Every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_04],cat,2,3,Almost every day,Almost every day,N/A,2,Almost every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_04],cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_04],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_04],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_04,DPS_04_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_04],cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?", -DPS_05,DPS_05_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_05],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_05],cat,2,2,No,No,N/A,2,No,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_05],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_05],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_05,DPS_05_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_05],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?, -DPS_06,DPS_06_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_06],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_06],cat,2,2,No,No,N/A,2,No,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_06],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_06],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_06,DPS_06_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_06],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?, -DPS_07,DPS_07_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_07],cat,1,4,Gained weight,Gained weight,N/A,1,Gained weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_07],cat,2,4,Lost weight,Lost weight,N/A,2,Lost weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_07],cat,3,4,Stayed about the same,Stayed about the same,N/A,3,Stayed about the same,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_07],cat,4,4,Was on a diet,Was on a diet,N/A,4,Was on a diet,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_07],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_07],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_07,DPS_07_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_07],cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?", -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08A],cont,copy,N/A,Weight,Weight,N/A,"[1,90]",Weight,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08A],cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08A],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (999.7); refusal (999.8); not stated (999.9),Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08A],cont,NA::b,N/A,missing,missing,N/A,else,else,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?, -DPS_08B,DPS_08B_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08B],cat,1,2,Pounds,Pounds,N/A,1,Pounds,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08B],cat,2,2,Kilograms,Kilograms,N/A,2,Kilograms,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08B],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08B],cat,NA::b,2,missing,missing,N/A,9,not stated,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_08B,DPS_08B_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_08B],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?, -DPS_09,DPS_09_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_09],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_09],cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_09],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_09],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_09,DPS_09_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_09],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?, -DPS_10,DPS_10_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_10],cat,1,3,Every night,Every night,N/A,1,Every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_10],cat,2,3,Nearly every night,Nearly every night,N/A,2,Nearly every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_10],cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_10],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_10],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_10,DPS_10_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_10],cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?", -DPS_11,DPS_11_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_11],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_11],cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_11],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_11],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_11,DPS_11_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_11],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?, -DPS_12,DPS_12_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_12],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_12],cat,2,2,No,No,N/A,2,No,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_12],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_12],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_12,DPS_12_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_12],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?", -DPS_13,DPS_13_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_13],cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_13],cat,2,2,No,No,N/A,2,No,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_13],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_13],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_13,DPS_13_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_13],cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?", -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_14],cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of week feel this way,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_14],cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_14],cont,NA::b,N/A,missing,missing,weeks,"[97,99]",don't know (97); refusal (98); not stated (99),Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p",[DPS_14],cont,NA::b,N/A,missing,missing,weeks,else,else,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?, -DPSDMT,DPSDMT_cat12_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,1,12,January,January,N/A,1,January,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,2,12,February,February,N/A,2,February,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,3,12,March,March,N/A,3,March,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,4,12,April,April,N/A,4,April,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,5,12,May,May,N/A,5,May,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,6,12,June,June,N/A,6,June,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,7,12,July,July,N/A,7,July,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,8,12,August,August,N/A,8,August,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,9,12,September,September,N/A,9,September,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,10,12,October,October,N/A,10,October,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,11,12,November,November,N/A,11,November,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,12,12,December,December,N/A,12,December,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,NA::a,12,not applicable,not applicable,N/A,96,not applicable,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,NA::b,12,missing,missing,N/A,99,not stated,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDMT,DPSDMT_cat12_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",cat,NA::b,12,missing,missing,N/A,else,else,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D), -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,copy,N/A,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,N/A,"[0,0.90]",Predicted Probability,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,"Variable was documented as a categorical variable with categories 0, 0.05, 0.25, 0.50, 0.80, 0.90 across all cycles. See documentation for DPSDPP() for more details, or type ?DPSDPP in the console." -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,NA::a,N/A,not applicable,not applicable,N/A,9.96,not applicable,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,NA::b,N/A,missing,missing,N/A,9.99,not stated,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability, -DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,copy,N/A,Depression Scale - Short Form Score,Depression Scale - Short Form Score,N/A,"[0,8]",Short Form Score,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,NA::b,N/A,missing,missing,N/A,99,not stated,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Short Form Score,Depression Scale - Short Form Score, -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of weeks felt depressed,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,NA::b,N/A,missing,missing,weeks,99,not stated,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",cont,NA::b,N/A,missing,missing,weeks,else,else,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D), -DEPDVSEV,DEPDVSEV_cat6_1,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,1,6,No depression,No depression,N/A,0,No depression,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D),This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015. -DEPDVSEV,DEPDVSEV_cat6_2,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,2,6,Minimal depression,Minimal depression,N/A,1,Minimal depression,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -DEPDVSEV,DEPDVSEV_cat6_3,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,3,6,Mild depression,Mild depression,N/A,2,Mild depression,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -DEPDVSEV,DEPDVSEV_cat6_4,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,4,6,Moderate depression,Moderate depression,N/A,3,Moderate depression,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -DEPDVSEV,DEPDVSEV_cat6_5,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,5,6,Moderately severe depression,Moderately severe depression,N/A,4,Moderately severe depression,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -DEPDVSEV,DEPDVSEV_cat6_6,,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,6,6,Severe depression,Severe depression,N/A,5,Severe depression,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -DEPDVSEV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,NA::a,N/A,not applicable,not applicable,N/A,6,not applicable,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -DEPDVSEV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,NA::b,N/A,missing,missing,N/A,"[7,9]",not stated,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -DEPDVSEV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],cat,NA::b,N/A,missing,missing,N/A,else,else,Depression scale - severity of depression - (D),Depression scale - severity of depression - (D), -EDUDR04,EDUDR04_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,1,4,Less than high school,Less than High School,N/A,1,< Than Secondary,Education,Highest level/education - respondent 4 levels - (D),Slight change in wording of categories from CCHS 2011 onwards -EDUDR04,EDUDR04_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,2,4,High school graduate,High School Graduate,N/A,2,Secondary grad,Education,Highest level/education - respondent 4 levels - (D), -EDUDR04,EDUDR04_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,3,4,Some post-secondary education,Some post-secondary education,N/A,3,Other post-sec.,Education,Highest level/education - respondent 4 levels - (D), -EDUDR04,EDUDR04_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,4,4,Post-secondary graduate,Post-secondary graduate,N/A,4,Post-sec. grad,Education,Highest level/education - respondent 4 levels - (D), -EDUDR04,EDUDR04_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Education,Highest level/education - respondent 4 levels - (D), -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Education,Highest level/education - respondent 4 levels - (D),CCHS 2001 does not have don't know (7) or refusal (8) -EDUDR04,EDUDR04_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,4,missing,missing,N/A,else,else,Education,Highest level/education - respondent 4 levels - (D), -EDUDR03,EDUDR03_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,"[3,4]",Post-sec. grad,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",cat,NA::b,3,missing,missing,N/A,else,else,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3",cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3",cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3",cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,3,Post-sec. grad,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Education,Highest level/education - respondent 3 levels - (D), -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Education,Highest level/education - respondent 3 levels - (D),CCHS 2015-2018 does not have don't know (7) or refusal (8) -EDUDR03,EDUDR03_cat3_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::EHG2DVR3, cchs2017_2018_p::EHG2DVR3",cat,NA::b,3,missing,missing,N/A,else,else,Education,Highest level/education - respondent 3 levels - (D), -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAY_105, PAYDVDYS]",N/A,func::energy_exp_fun,N/A,N/A,N/A,N/A,N/A,Daily energy expenditure,Physical Activity,Daily energy expenditure,Used for all cycles. Derived from various physical activity measure for 18+ and 12-17 years old. -energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAY_105, PAYDVDYS]",N/A,NA::b,N/A,missing,missing,N/A,N/A,Daily energy expenditure,Physical Activity,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,copy,N/A,Daily energry expenditure,Daily energry expenditure,N/A,"[0,43.5]",Daily energy expenditure - (D),Physical Activity,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::a,N/A,not applicable,not applicable,N/A,99.6,Not applicable,Physical Activity,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,N/A,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Physical Activity,Daily energy expenditure, -energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,N/A,else,else,Physical Activity,Daily energy expenditure, -FINF1,FINF1_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,1,2,Yes,Yes,N/A,1,Yes,Some food insecurity in past 12 months,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,2,2,No,No,N/A,2,No,Some food insecurity in past 12 months,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Some food insecurity in past 12 months,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Some food insecurity in past 12 months,Some food insecurity in past 12 months, -FINF1,FINF1_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,else,else,Some food insecurity in past 12 months,Some food insecurity in past 12 months, -FLU_160,FLU_160_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,1,2,Yes,Yes,N/A,1,Yes,Ever had a flu shot,Have you ever had a flu shot?,"In 2007, question was reworded to ""Have you ever had a seasonal flu shot?"" In 2015-2018, question was reworded to ""Have you ever had a seasonal flu shot, excluding the H1N1 flu shot?""" -FLU_160,FLU_160_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,2,2,No,No,N/A,2,No,Ever had a flu shot,Have you ever had a flu shot?, -FLU_160,FLU_160_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever had a flu shot,Have you ever had a flu shot?, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever had a flu shot,Have you ever had a flu shot?, -FLU_160,FLU_160_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",cat,NA::b,2,missing,missing,N/A,else,else,Ever had a flu shot,Have you ever had a flu shot?, -FLU_162,FLU_162_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,1,3,<1 year ago,<1 year ago,N/A,1,<1 year ago,Last time had flu shot,When did you have your last flu shot?,"In 2015-2018, question was reworded to ""When did you have your last seasonal flu shot?""" -FLU_162,FLU_162_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,2,3,1-<2 years ago,1-<2 years ago,N/A,2,1-<2 years ago,Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,3,3,2 years ago or more,2 years ago or more,N/A,3,2 years ago or more,Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Last time had flu shot,When did you have your last flu shot?, -FLU_162,FLU_162_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",cat,NA::b,3,missing,missing,N/A,else,else,Last time had flu shot,When did you have your last flu shot?, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,2,No food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months,"This variable is derived from FINF1, FSCDHFS, FSCDHFS2 by dichotomizing food insecurity into 2 categories. See ?food_insecurity_der for more details" -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_1,cat,cchs2005_p,[FSCEDHFS],cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,3,Food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,cchs2005_p,[FSCEDHFS],cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -food_insecurity_der,food_insecurity_der_cat2_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity (last 12 months),Derived food insecurity in the last 12 months, -FSCDHFS,FSCDHFS_cat4_0,cat,cchs2005_p,[FSCEDHFS],cat,0,4,Secure,Secure,N/A,0,Secure,Food security,Household food security status - (D),CCHS 2005 has different categories from other CCHS cycles so new variable created -FSCDHFS,FSCDHFS_cat4_1,cat,cchs2005_p,[FSCEDHFS],cat,1,4,Without hunger,Without hunger,N/A,1,Without hunger,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_2,cat,cchs2005_p,[FSCEDHFS],cat,2,4,W/mod. hunger,With moderate hunger,N/A,2,With moderate hunger,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_3,cat,cchs2005_p,[FSCEDHFS],cat,3,4,W/severe hunger,With severe hunger,N/A,3,With severe hunger,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_NA::a,cat,cchs2005_p,[FSCEDHFS],cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food security,Household food security status - (D), -FSCDHFS,FSCDHFS_cat4_NA::b,cat,cchs2005_p,[FSCEDHFS],cat,NA::b,4,missing,missing,N/A,else,else,Food security,Household food security status - (D), -FSCDHFS2,FSCDHFS2_cat3_0,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,0,3,Food secure,Food secure,N/A,0,Food secure,Food security,Household Food Security Status (HC), -FSCDHFS2,FSCDHFS2_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,1,3,Mod. food insec.,Mod. food insec.,N/A,1,Moderate food insecurity,Food security,Household Food Security Status (HC), -FSCDHFS2,FSCDHFS2_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,2,3,Sev. food insec.,Sev. food insec.,N/A,2,Severe food insecurity,Food security,Household Food Security Status (HC), -FSCDHFS2,FSCDHFS2_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Food security,Household Food Security Status (HC), -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food security,Household Food Security Status (HC), -FSCDHFS2,FSCDHFS2_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",cat,NA::b,3,missing,missing,N/A,else,else,Food security,Household Food Security Status (HC), -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,copy,N/A,Daily carrots,Daily carrots,N/A,"[0,30]",Daily consumption - carrots - (D),Daily carrots,Daily consumption - carrots - (D),2015 onward changed question to look at all orange-coloured vegetables -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Daily carrots,Daily consumption - carrots - (D), -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Daily carrots,Daily consumption - carrots - (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS" -FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, [FVCDCAR]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily carrots,Daily consumption - carrots - (D), -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,copy,N/A,Daily fruit,Daily fruit,N/A,"[0,73]",Daily consumption - fruit - (D),Daily fruit,Daily consumption - fruit - (D), -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Daily fruit,Daily consumption - fruit - (D), -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Daily fruit,Daily consumption - fruit - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, [FVCDFRU]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily fruit,Daily consumption - fruit - (D), -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,copy,N/A,Daily juice,Daily juice,N/A,"[0,47]",Daily consumption - fruit juice - (D),Daily juice,Daily consumption - fruit juice - (D), -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Daily juice,Daily consumption - fruit juice - (D), -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Daily juice,Daily consumption - fruit juice - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, [FVCDJUI]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily juice,Daily consumption - fruit juice - (D), -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,copy,N/A,Daily potatoes,Daily potatoes,N/A,"[0,30]",Daily consumption - potatoes - (D),Daily potatoes,Daily consumption - potatoes - (D), -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Daily potatoes,Daily consumption - potatoes - (D), -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Daily potatoes,Daily consumption - potatoes - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT, [FVCDPOT]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily potatoes,Daily consumption - potatoes - (D), -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,copy,N/A,Daily salad,Daily salad,N/A,"[0,60]",Daily consumption - green salad - (D),Daily salad,Daily consumption - green salad - (D),2015 onwards changed question to look at dark green vegetables -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Daily salad,Daily consumption - green salad - (D), -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Daily salad,Daily consumption - green salad - (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS" -FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, [FVCDSAL]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily salad,Daily consumption - green salad - (D), -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,copy,N/A,Daily total fruits and vegetables,Daily total fruits and vegetables,N/A,"[0,70]",Daily consumption - total fruits and veg. - (D),Daily total fruits and vegetables,Daily consumption - total fruits and veg. - (D), -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, [FVCDTOT]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Daily total fruits and vegetables,Daily consumption - total fruits and veg. - (D), -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, [FVCDTOT]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Daily total fruits and vegetables,Daily consumption - total fruits and veg. - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily total fruits and vegetables,Daily consumption - total fruits and veg. - (D), -FVCDTOT,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,NA::a,N/A,not applicable,not applicable,N/A,9999.6,Not applicable,Daily total fruits and vegetables,Daily consumption - total fruits and veg. - (D),Not applicable (9999.6) not included in 2015-2016 CCHS -FVCDTOT,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, [FVCDTOT]",cont,NA::b,N/A,missing,missing,N/A,9999.9,don't know (999.7); refusal (999.8); not stated (999.9),Daily total fruits and vegetables,Daily consumption - total fruits and veg. - (D), -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,copy,N/A,Daily other vegetables,Daily other vegetables,N/A,"[0,30]",Daily consumption other vegetables - (D),Daily other vegetables,Daily consumption other vegetables - (D), -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,NA::a,N/A,not applicable,not applicable,N/A,999.6,Not applicable,Daily other vegetables,Daily consumption other vegetables - (D), -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,NA::b,N/A,missing,missing,N/A,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Daily other vegetables,Daily consumption other vegetables - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, [FVCDVEG]",cont,NA::b,N/A,missing,missing,N/A,else,else,Daily other vegetables,Daily consumption other vegetables - (D), -GEN_01,GEN_01_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_01,GEN_01_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_01,GEN_01_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,3,5,Good,Good,N/A,3,Good,Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_01,GEN_01_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_01,GEN_01_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_01,GEN_01_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_01,GEN_01_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, [GEN_01]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived health,"In general, would you say your health is (excellent, very good, good, fair or poor)?", -GEN_02A,GEN_02A_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,1,5,Very satisfied,Very satisfied,N/A,1,Very satisfied,Satisfication with life,How satisfied are you with your life in general, -GEN_02A,GEN_02A_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,2,5,Satisfied,Satisfied,N/A,2,Satisfied,Satisfication with life,How satisfied are you with your life in general, -GEN_02A,GEN_02A_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,3,5,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Satisfication with life,How satisfied are you with your life in general, -GEN_02A,GEN_02A_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,4,5,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Satisfication with life,How satisfied are you with your life in general, -GEN_02A,GEN_02A_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,5,5,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Satisfication with life,How satisfied are you with your life in general, -GEN_02A,GEN_02A_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Satisfication with life,How satisfied are you with your life in general, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Satisfication with life,How satisfied are you with your life in general, -GEN_02A,GEN_02A_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, [GEN_02A]",cat,NA::b,5,missing,missing,N/A,else,else,Satisfication with life,How satisfied are you with your life in general, -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,10,5,Very satisfied,Very satisfied,N/A,1,Very satisfied,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?","For CCHS cycles 2003-2007, GEN_02A2 was derived from GEN_02A where the values were rescaled to match GEN_02A2" -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,7,5,Satisfied,Satisfied,N/A,2,Satisfied,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,5,5,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,2,5,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,0,5,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A",cat,NA::b,5,missing,missing,N/A,else,else,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,0,11,Very dissatisfied,Very dissatisfied,N/A,0,Very dissatisfied,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,1,11,1,1,N/A,1,1,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,2,11,2,2,N/A,2,2,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,3,11,3,3,N/A,3,3,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,4,11,4,4,N/A,4,4,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,5,11,5,5,N/A,5,5,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,6,11,6,6,N/A,6,6,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,7,11,7,7,N/A,7,7,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,8,11,8,8,N/A,8,8,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,9,11,9,9,N/A,9,9,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,10,11,Very satisfied,Very satisfied,N/A,10,Very satisfied,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?",CCHS 2015-2018 does not have not applicable (96) -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,NA::b,11,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, [GEN_02A2]",cat,NA::b,11,missing,missing,N/A,else,else,Satisfaction with life in general,"Using a scale of 0 to 10, where 0 means ""very dissatisfied"" and 10 means ""Very satisfied"", how do you feel about life as a whole right now?", -GEN_02B,GEN_02B_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_02B,GEN_02B_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_02B,GEN_02B_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,3,5,Good,Good,N/A,3,Good,Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_02B,GEN_02B_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_02B,GEN_02B_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_02B,GEN_02B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_02B,GEN_02B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, [GEN_02B]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived mental health,"In general, would you say your mental health is (excellent, very good, good, fair, poor)?", -GEN_07,GEN_07_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_07,GEN_07_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_07,GEN_07_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_07,GEN_07_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_07,GEN_07_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_07,GEN_07_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?",CCHS 2015-2018 does not have not applicable (6) -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_07,GEN_07_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p:: GEN_020, [GEN_07]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived life stress,"Thinking about the amount of stress in your life, would you say that most days are (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_09,GEN_09_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, [GEN_09]",cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived work stress,"Would you say that most days at work were (not at all stressful, not very stressful, a bit stressful, quite a bit stressful, extremely stressful)?", -GEN_10,GEN_10_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,1,4,Very strong,Very strong,N/A,1,Very strong,Sense of belonging in the community,How would you describe your sense of belonging to your local community?, -GEN_10,GEN_10_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,2,4,Somewhat strong,Somewhat strong,N/A,2,Somewhat strong,Sense of belonging in the community,How would you describe your sense of belonging to your local community?, -GEN_10,GEN_10_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,3,4,Somewhat weak,Somewhat weak,N/A,3,Somewhat weak,Sense of belonging in the community,How would you describe your sense of belonging to your local community?, -GEN_10,GEN_10_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,4,4,Very weak,Very weak,N/A,4,Very weak,Sense of belonging in the community,How would you describe your sense of belonging to your local community?, -GEN_10,GEN_10_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sense of belonging in the community,How would you describe your sense of belonging to your local community?, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sense of belonging in the community,How would you describe your sense of belonging to your local community?, -GEN_10,GEN_10_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, [GEN_10]",cat,NA::b,4,missing,missing,N/A,else,else,Sense of belonging in the community,How would you describe your sense of belonging to your local community?, -GEODPMF,GEODPMF_cat97_1,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,10911,97,EASTERN REGIONAL INTEGRATED HA,EASTERN REGIONAL INTEGRATED HA,N/A,10911,EASTERN REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_2,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,10912,97,CENTRAL REGIONAL INTEGRATED HA,CENTRAL REGIONAL INTEGRATED HA,N/A,10912,CENTRAL REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_3,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,10913,97,WESTERN/LABRADOR-GRENFELL REGIONAL HA,WESTERN/LABRADOR-GRENFELL REGIONAL HA,N/A,10913,WESTERN/LABRADOR-GRENFELL REGIONAL HA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_4,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,11901,97,PRINCE EDWARD ISLAND,PRINCE EDWARD ISLAND,N/A,11901,PRINCE EDWARD ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_5,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12910,97,SOUTH SHORE-SOUTH WEST NOVA,SOUTH SHORE-SOUTH WEST NOVA,N/A,12910,SOUTH SHORE-SOUTH WEST NOVA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_6,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12923,97,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,N/A,12923,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_7,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12930,97,COLCHESTER EAST HANTS-CUMBERLAND,COLCHESTER EAST HANTS-CUMBERLAND,N/A,12930,COLCHESTER EAST HANTS-CUMBERLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_8,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12940,97,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,N/A,12940,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_9,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12958,97,CAPE BRETON DISTRICT HEALTH AUTHORITY,CAPE BRETON DISTRICT HEALTH AUTHORITY,N/A,12958,CAPE BRETON DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_10,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,12969,97,CAPITAL DISTRICT HEALTH AUTHORITY,CAPITAL DISTRICT HEALTH AUTHORITY,N/A,12969,CAPITAL DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_11,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13901,97,ZONE 1,ZONE 1,N/A,13901,ZONE 1,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_12,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13902,97,ZONE 2,ZONE 2,N/A,13902,ZONE 2,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_13,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13903,97,ZONE 3,ZONE 3,N/A,13903,ZONE 3,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_14,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13904,97,ZONES 4 AND 5,ZONES 4 AND 5,N/A,13904,ZONES 4 AND 5,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_15,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,13906,97,ZONES 6 AND 7,ZONES 6 AND 7,N/A,13906,ZONES 6 AND 7,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_16,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24901,97,REGION DU BAS-SAINT-LAURENT,REGION DU BAS-SAINT-LAURENT,N/A,24901,REGION DU BAS-SAINT-LAURENT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_17,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24902,97,REGION DU SAGUENAY - LAC-SAINT-JEAN,REGION DU SAGUENAY - LAC-SAINT-JEAN,N/A,24902,REGION DU SAGUENAY - LAC-SAINT-JEAN,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_18,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24903,97,REGION DE LA CAPITALE-NATIONALE,REGION DE LA CAPITALE-NATIONALE,N/A,24903,REGION DE LA CAPITALE-NATIONALE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_19,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24904,97,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,N/A,24904,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_20,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24905,97,REGION DE L'ESTRIE,REGION DE L'ESTRIE,N/A,24905,REGION DE L'ESTRIE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_21,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24906,97,REGION DE MONTREAL,REGION DE MONTREAL,N/A,24906,REGION DE MONTREAL,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_22,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24907,97,REGION DE L'OUTAOUAIS,REGION DE L'OUTAOUAIS,N/A,24907,REGION DE L'OUTAOUAIS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_23,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24908,97,REGION DE L'ABITIBI-TEMISCAMINGUE,REGION DE L'ABITIBI-TEMISCAMINGUE,N/A,24908,REGION DE L'ABITIBI-TEMISCAMINGUE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_24,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24909,97,REGION DE LA COTE-NORD,REGION DE LA COTE-NORD,N/A,24909,REGION DE LA COTE-NORD,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_25,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24911,97,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,N/A,24911,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_26,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24912,97,REGION DE LA CHAUDIERE-APPALACHES,REGION DE LA CHAUDIERE-APPALACHES,N/A,24912,REGION DE LA CHAUDIERE-APPALACHES,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_27,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24913,97,REGION DE LAVAL,REGION DE LAVAL,N/A,24913,REGION DE LAVAL,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_28,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24914,97,REGION DE LANAUDIERE,REGION DE LANAUDIERE,N/A,24914,REGION DE LANAUDIERE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_29,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24915,97,REGION DES LAURENTIDES,REGION DES LAURENTIDES,N/A,24915,REGION DES LAURENTIDES,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_30,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,24916,97,REGION DE LA MONTEREGIE,REGION DE LA MONTEREGIE,N/A,24916,REGION DE LA MONTEREGIE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_31,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35926,97,DISTRICT OF ALGOMA HEALTH UNIT,DISTRICT OF ALGOMA HEALTH UNIT,N/A,35926,DISTRICT OF ALGOMA HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_32,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35927,97,BRANT COUNTY HEALTH UNIT,BRANT COUNTY HEALTH UNIT,N/A,35927,BRANT COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_33,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35930,97,DURHAM REGIONAL HEALTH UNIT,DURHAM REGIONAL HEALTH UNIT,N/A,35930,DURHAM REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_34,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35931,97,ELGIN-ST THOMAS HEALTH UNIT,ELGIN-ST THOMAS HEALTH UNIT,N/A,35931,ELGIN-ST THOMAS HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_35,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35933,97,GREY BRUCE HEALTH UNIT,GREY BRUCE HEALTH UNIT,N/A,35933,GREY BRUCE HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_36,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35934,97,HALDIMAND-NORFOLK HEALTH UNIT,HALDIMAND-NORFOLK HEALTH UNIT,N/A,35934,HALDIMAND-NORFOLK HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_37,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35935,97,HALIBURTON-KAWARTHA-PINE RIDGE DHU,HALIBURTON-KAWARTHA-PINE RIDGE DHU,N/A,35935,HALIBURTON-KAWARTHA-PINE RIDGE DHU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_38,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35936,97,HALTON REGIONAL HEALTH UNIT,HALTON REGIONAL HEALTH UNIT,N/A,35936,HALTON REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_39,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35937,97,CITY OF HAMILTON HEALTH UNIT,CITY OF HAMILTON HEALTH UNIT,N/A,35937,CITY OF HAMILTON HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_40,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35938,97,HASTINGS AND PRINCE EDWARD COUNTIES HU,HASTINGS AND PRINCE EDWARD COUNTIES HU,N/A,35938,HASTINGS AND PRINCE EDWARD COUNTIES HU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_41,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35939,97,HURON AND PERTH HEALTH UNITS,HURON AND PERTH HEALTH UNITS,N/A,35939,HURON AND PERTH HEALTH UNITS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_42,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35940,97,CHATHAM-KENT HEALTH UNIT,CHATHAM-KENT HEALTH UNIT,N/A,35940,CHATHAM-KENT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_43,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35941,97,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,N/A,35941,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_44,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35942,97,LAMBTON HEALTH UNIT,LAMBTON HEALTH UNIT,N/A,35942,LAMBTON HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_45,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35943,97,LEEDS-GRENVILLE-LANARK DHU,LEEDS-GRENVILLE-LANARK DHU,N/A,35943,LEEDS-GRENVILLE-LANARK DHU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_46,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35944,97,MIDDLESEX-LONDON HEALTH UNIT,MIDDLESEX-LONDON HEALTH UNIT,N/A,35944,MIDDLESEX-LONDON HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_47,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35946,97,NIAGARA REGIONAL AREA HEALTH UNIT,NIAGARA REGIONAL AREA HEALTH UNIT,N/A,35946,NIAGARA REGIONAL AREA HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_48,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35947,97,NORTH BAY AND TIMISKAMING HEALTH UNITS,NORTH BAY AND TIMISKAMING HEALTH UNITS,N/A,35947,NORTH BAY AND TIMISKAMING HEALTH UNITS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_49,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35949,97,NORTHWESTERN HEALTH UNIT,NORTHWESTERN HEALTH UNIT,N/A,35949,NORTHWESTERN HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_50,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35951,97,CITY OF OTTAWA HEALTH UNIT,CITY OF OTTAWA HEALTH UNIT,N/A,35951,CITY OF OTTAWA HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_51,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35952,97,OXFORD COUNTY HEALTH UNIT,OXFORD COUNTY HEALTH UNIT,N/A,35952,OXFORD COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_52,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35953,97,PEEL REGIONAL HEALTH UNIT,PEEL REGIONAL HEALTH UNIT,N/A,35953,PEEL REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_53,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35955,97,PETERBOROUGH COUNTY-CITY HEALTH UNIT,PETERBOROUGH COUNTY-CITY HEALTH UNIT,N/A,35955,PETERBOROUGH COUNTY-CITY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_54,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35956,97,PORCUPINE HEALTH UNIT,PORCUPINE HEALTH UNIT,N/A,35956,PORCUPINE HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_55,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35957,97,RENFREW COUNTY AND DISTRICT HEALTH UNIT,RENFREW COUNTY AND DISTRICT HEALTH UNIT,N/A,35957,RENFREW COUNTY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_56,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35958,97,EASTERN ONTARIO HEALTH UNIT,EASTERN ONTARIO HEALTH UNIT,N/A,35958,EASTERN ONTARIO HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_57,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35960,97,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,N/A,35960,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_58,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35961,97,SUDBURY AND DISTRICT HEALTH UNIT,SUDBURY AND DISTRICT HEALTH UNIT,N/A,35961,SUDBURY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_59,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35962,97,THUNDER BAY DISTRICT HEALTH UNIT,THUNDER BAY DISTRICT HEALTH UNIT,N/A,35962,THUNDER BAY DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_60,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35965,97,WATERLOO HEALTH UNIT,WATERLOO HEALTH UNIT,N/A,35965,WATERLOO HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_61,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35966,97,WELLINGTON-DUFFERIN-GUELPH HU,WELLINGTON-DUFFERIN-GUELPH HU,N/A,35966,WELLINGTON-DUFFERIN-GUELPH HU,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_62,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35968,97,WINDSOR-ESSEX COUNTY HEALTH UNIT,WINDSOR-ESSEX COUNTY HEALTH UNIT,N/A,35968,WINDSOR-ESSEX COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_63,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35970,97,YORK REGIONAL HEALTH UNIT,YORK REGIONAL HEALTH UNIT,N/A,35970,YORK REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_64,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,35995,97,CITY OF TORONTO HEALTH UNIT,CITY OF TORONTO HEALTH UNIT,N/A,35995,CITY OF TORONTO HEALTH UNIT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_65,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46901,97,WINNIPEG RHA,WINNIPEG RHA,N/A,46901,WINNIPEG RHA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_66,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46902,97,PRAIRIE M. HEALTH,PRAIRIE M. HEALTH,N/A,46902,PRAIRIE M. HEALTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_67,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46903,97,INTERLAKE-EASTERN RHA,INTERLAKE-EASTERN RHA,N/A,46903,INTERLAKE-EASTERN RHA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_68,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46904,97,NORTHEN RHA,NORTHEN RHA,N/A,46904,NORTHEN RHA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_69,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,46905,97,SOUTHEN HEALTH,SOUTHEN HEALTH,N/A,46905,SOUTHEN HEALTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_70,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47901,97,SUN COUNTRY/FIVE HILLS/CYPRESS,SUN COUNTRY/FIVE HILLS/CYPRESS,N/A,47901,SUN COUNTRY/FIVE HILLS/CYPRESS,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_71,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47904,97,REGINA QU'APPELLE,REGINA QU'APPELLE,N/A,47904,REGINA QU'APPELLE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_72,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47905,97,SUNRISE/KELSEY TRAIL,SUNRISE/KELSEY TRAIL,N/A,47905,SUNRISE/KELSEY TRAIL,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_73,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47906,97,SASKATOON,SASKATOON,N/A,47906,SASKATOON,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_74,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47907,97,HEARTLAND/PRAIRIE NORTH,HEARTLAND/PRAIRIE NORTH,N/A,47907,HEARTLAND/PRAIRIE NORTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_75,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,47909,97,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,N/A,47909,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_76,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48931,97,SOUTH ZONE,SOUTH ZONE,N/A,48931,SOUTH ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_77,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48932,97,CALGARY ZONE,CALGARY ZONE,N/A,48932,CALGARY ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_78,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48933,97,CENTRAL ZONE,CENTRAL ZONE,N/A,48933,CENTRAL ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_79,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48934,97,EDMONTON ZONE,EDMONTON ZONE,N/A,48934,EDMONTON ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_80,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,48935,97,NORTH ZONE,NORTH ZONE,N/A,48935,NORTH ZONE,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_81,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59911,97,EAST KOOTENAY,EAST KOOTENAY,N/A,59911,EAST KOOTENAY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_82,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59912,97,KOOTENAY-BOUNDARY,KOOTENAY-BOUNDARY,N/A,59912,KOOTENAY-BOUNDARY,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_83,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59913,97,OKANAGAN,OKANAGAN,N/A,59913,OKANAGAN,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_84,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59914,97,THOMPSON/CARIBOO,THOMPSON/CARIBOO,N/A,59914,THOMPSON/CARIBOO,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_85,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59921,97,FRASER EAST,FRASER EAST,N/A,59921,FRASER EAST,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_86,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59922,97,FRASER NORTH,FRASER NORTH,N/A,59922,FRASER NORTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_87,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59923,97,FRASER SOUTH,FRASER SOUTH,N/A,59923,FRASER SOUTH,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_88,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59931,97,RICHMOND,RICHMOND,N/A,59931,RICHMOND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_89,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59932,97,VANCOUVER,VANCOUVER,N/A,59932,VANCOUVER,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_90,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59933,97,NORTH SHORE/COAST GARIBALDI,NORTH SHORE/COAST GARIBALDI,N/A,59933,NORTH SHORE/COAST GARIBALDI,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_91,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59941,97,SOUTH VANCOUVER ISLAND,SOUTH VANCOUVER ISLAND,N/A,59941,SOUTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_92,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59942,97,CENTRAL VANCOUVER ISLAND,CENTRAL VANCOUVER ISLAND,N/A,59942,CENTRAL VANCOUVER ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_93,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59943,97,NORTH VANCOUVER ISLAND,NORTH VANCOUVER ISLAND,N/A,59943,NORTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_94,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59951,97,NORTHWEST,NORTHWEST,N/A,59951,NORTHWEST,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_95,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59952,97,NORTHERN INTERIOR,NORTHERN INTERIOR,N/A,59952,NORTHERN INTERIOR,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_96,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,59953,97,NORTHEAST,NORTHEAST,N/A,59953,NORTHEAST,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_97,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,60901,97,YUKON/NORTHWEST TERRITORIES/NUNAVUT,YUKON/NORTHWEST TERRITORIES/NUNAVUT,N/A,60901,YUKON/NORTHWEST TERRITORIES/NUNAVUT,Health Region - (G),Health Region - (G), -GEODPMF,GEODPMF_cat97_NA::b,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],cat,NA::b,97,missing,missing,N/A,else,else,Health Region - (G),Health Region - (G), -GEOGPRV,GEOGPRV_cat11_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,10,11,NL,Nfld. & Labrador,N/A,10,Nfld. & Labrador,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,11,11,PEI,Prince Edward Island,N/A,11,Prince Edward Island,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,12,11,NS,Nova Scotia,N/A,12,Nova Scotia,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,13,11,NB,New Brunswick,N/A,13,New Brunswick,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,24,11,QC,Quebec,N/A,24,Quebec,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,35,11,ON,Ontario,N/A,35,Ontario,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,46,11,MB,Manitoba,N/A,46,Manitoba,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,47,11,SK,Saskatchewan,N/A,47,Saskatchewan,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,48,11,AB,Alberta,N/A,48,Alberta,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,59,11,BC,British Columbia,N/A,59,British Columbia,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,60,11,YT/NT/NU,Yukon/NWT/Nunavut,N/A,"[60,62]",Yukon/NWT/Nunavut,Province,Province of residence of respondent - (G),"CCHS2015_2016 and CCHS2017_2018 divides category into Yukon (60), NWT (61), and Nunavut (62)" -GEOGPRV,GEOGPRV_cat11_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,NA::b,11,missing,missing,N/A,"[97,99]","don't know (97), refusal (98), not stated (99)",Province,Province of residence of respondent - (G), -GEOGPRV,GEOGPRV_cat11_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, [GEOGPRV]",cat,NA::b,11,missing,missing,N/A,else,else,Province,Province of residence of respondent - (G), -HCU_1AA,HCU_1AA_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,1,2,Yes,Yes (Has regular medical doctor),N/A,1,Yes (Has regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?,"In 2015-2018, question was reworded to ""Do you have a regular health care provider?""" -HCU_1AA,HCU_1AA_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,2,2,No,No (Does not have regular medical doctor),N/A,2,No (Does not have regular medical doctor),Has regular medical doctor,Do you have a regular medical doctor?, -HCU_1AA,HCU_1AA_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Has regular medical doctor,Do you have a regular medical doctor?, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Has regular medical doctor,Do you have a regular medical doctor?, -HCU_1AA,HCU_1AA_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",cat,NA::b,2,missing,missing,N/A,else,else,Has regular medical doctor,Do you have a regular medical doctor?, -HUIDCOG,HUIDCOG_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,1,6,No cognit prob,No cognition problems,N/A,1,No cognit prob,Cognition prob. - function code - (D),Cognition prob. - function code - (D),CCHS 2007 onwards uses cognition levels which coincide with HUI Mark 3 -HUIDCOG,HUIDCOG_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,2,6,Little difficult,Little difficulty,N/A,2,Little difficulty,Cognition prob. - function code - (D),Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,3,6,Some forgetful,Some forgetful,N/A,3,Some forgetful,Cognition prob. - function code - (D),Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,4,6,Forget/dif think,Forgetful/difficulty thinking,N/A,4,Forget/dif think,Cognition prob. - function code - (D),Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,5,6,Very forgetful,Very forgetful,N/A,5,Very forgetful,Cognition prob. - function code - (D),Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,6,6,Can't remember,Can't remember,N/A,6,Can't remember,Cognition prob. - function code - (D),Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cognition prob. - function code - (D),Cognition prob. - function code - (D), -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cognition prob. - function code - (D),Cognition prob. - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (97) or refusal (98)" -HUIDCOG,HUIDCOG_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",cat,NA::b,6,missing,missing,N/A,else,else,Cognition prob. - function code - (D),Cognition prob. - function code - (D), -HUIDEMO,HUIDEMO_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,1,5,Happy in life,Happy in life,N/A,1,Happy in life,Emotional problems - function code - (D),Emotional problems - function code - (D),CCHS 2007 onwards uses emotional levels which coincide with HUI Mark 3 -HUIDEMO,HUIDEMO_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,2,5,Somewhat happy,Somewhat happy,N/A,2,Somewhat happy,Emotional problems - function code - (D),Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,3,5,Somewhat unhappy,Somewhat unhappy,N/A,3,Somewhat unhappy,Emotional problems - function code - (D),Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,4,5,Very unhappy,Very unhappy,N/A,4,Very unhappy,Emotional problems - function code - (D),Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,5,5,Life not worth,Life not worth,N/A,5,Life not worth,Emotional problems - function code - (D),Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Emotional problems - function code - (D),Emotional problems - function code - (D), -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Emotional problems - function code - (D),Emotional problems - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (7) or refusal (8)" -HUIDEMO,HUIDEMO_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",cat,NA::b,5,missing,missing,N/A,else,else,Emotional problems - function code - (D),Emotional problems - function code - (D), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,copy,N/A,HUI score,Health Utility Index (HUI3) - (D),N/A,"[-0.359,1]",Health Utility Index (HUI3) - (D),Health Utility Index (HUI3) - (D),Health Utility Index (HUI3) - (D), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,N/A,not applicable,not applicable,N/A,99.996,not applicable (99.996),Health Utility Index (HUI3) - (D),Health Utility Index (HUI3) - (D), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,N/A,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Health Utility Index (HUI3) - (D),Health Utility Index (HUI3) - (D), -HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,N/A,missing,missing,N/A,else,else,Health Utility Index (HUI3) - (D),Health Utility Index (HUI3) - (D), -HUIDHSI_cat10,HUIDHSI_cat10_1,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,1,10,Decile 1,Decile 1,N/A,"[-0.359,-0.2231)",Decile 1,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_2,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,2,10,Decile 2,Decile 2,N/A,"[-0.2231,-0.0872)",Decile 2,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_3,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,3,10,Decile 3,Decile 3,N/A,"[-0.0872,0.0487)",Decile 3,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_4,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,4,10,Decile 4,Decile 4,N/A,"[0.0487,0.1846)",Decile 4,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_5,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,5,10,Decile 5,Decile 5,N/A,"[0.1846,0.3205)",Decile 5,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_6,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,6,10,Decile 6,Decile 6,N/A,"[0.3205,0.4564)",Decile 6,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_7,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,7,10,Decile 7,Decile 7,N/A,"[0.4564,0.5923)",Decile 7,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_8,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,8,10,Decile 8,Decile 8,N/A,"[0.5923,0.7282)",Decile 8,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_9,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,9,10,Decile 9,Decile 9,N/A,"[0.7282,0.8641)",Decile 9,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_10,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,10,10,Decile 10,Decile 10,N/A,"[0.8641,1]",Decile 10,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_NA::a,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,10,not applicable,not applicable,N/A,99.996,not applicable (99.996),Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,10,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat10,HUIDHSI_cat10_NA::b,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,10,missing,missing,N/A,else,else,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_1,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,1,20,Group 1,Group 1,N/A,"[-0.359,-0.29105)",Group 1,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_2,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,2,20,Group 2,Group 2,N/A,"[-0.29105,-0.2231)",Group 2,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_3,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,3,20,Group 3,Group 3,N/A,"[-0.2231,-0.15515)",Group 3,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_4,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,4,20,Group 4,Group 4,N/A,"[-0.15515,-0.0872)",Group 4,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_5,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,5,20,Group 5,Group 5,N/A,"[-0.0872,-0.01925)",Group 5,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_6,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,6,20,Group 6,Group 6,N/A,"[-0.01925,0.0487)",Group 6,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_7,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,7,20,Group 7,Group 7,N/A,"[0.0487,0.11665)",Group 7,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_8,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,8,20,Group 8,Group 8,N/A,"[0.11665,0.1846)",Group 8,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_9,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,9,20,Group 9,Group 9,N/A,"[0.1846,0.25255)",Group 9,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_10,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,10,20,Group 10,Group 10,N/A,"[0.25255,0.3205)",Group 10,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_11,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,11,20,Group 11,Group 11,N/A,"[0.3205,0.38845)",Group 11,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_12,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,12,20,Group 12,Group 12,N/A,"[0.38845,0.4564)",Group 12,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_13,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,13,20,Group 13,Group 13,N/A,"[0.4564,0.52435)",Group 13,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_14,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,14,20,Group 14,Group 14,N/A,"[0.52435,0.5923)",Group 14,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_15,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,15,20,Group 15,Group 15,N/A,"[0.5923,0.66025)",Group 15,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_16,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,16,20,Group 16,Group 16,N/A,"[0.66025,0.7282)",Group 16,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_17,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,17,20,Group 17,Group 17,N/A,"[0.7282,0.79615)",Group 17,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_18,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,18,20,Group 18,Group 18,N/A,"[0.79615,0.8641)",Group 18,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_19,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,19,20,Group 19,Group 19,N/A,"[0.8641,0.93205)",Group 19,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_20,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,20,20,Group 20,Group 20,N/A,"[0.93205,1]",Group 20,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_NA::a,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,20,not applicable,not applicable,N/A,99.996,not applicable (99.996),Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,20,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat20,HUIDHSI_cat20_NA::b,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,20,missing,missing,N/A,else,else,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_1,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,1,50,Group 1,Group 1,N/A,"[-0.359,-0.33182)",Group 1,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_2,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,2,50,Group 2,Group 2,N/A,"[-0.33182,-0.30464)",Group 2,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_3,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,3,50,Group 3,Group 3,N/A,"[-0.30464,-0.27746)",Group 3,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_4,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,4,50,Group 4,Group 4,N/A,"[-0.27746,-0.25028)",Group 4,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_5,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,5,50,Group 5,Group 5,N/A,"[-0.25028,-0.2231)",Group 5,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_6,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,6,50,Group 6,Group 6,N/A,"[-0.2231,-0.19592)",Group 6,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_7,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,7,50,Group 7,Group 7,N/A,"[-0.19592,-0.16874)",Group 7,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_8,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,8,50,Group 8,Group 8,N/A,"[-0.16874,-0.14156)",Group 8,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_9,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,9,50,Group 9,Group 9,N/A,"[-0.14156,-0.11438)",Group 9,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_10,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,10,50,Group 10,Group 10,N/A,"[-0.11438,-0.0872)",Group 10,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_11,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,11,50,Group 11,Group 11,N/A,"[-0.0872,-0.06002)",Group 11,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_12,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,12,50,Group 12,Group 12,N/A,"[-0.06002,-0.03284)",Group 12,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_13,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,13,50,Group 13,Group 13,N/A,"[-0.03284,-0.00566000000000004)",Group 13,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_14,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,14,50,Group 14,Group 14,N/A,"[-0.00566000000000004,0.02152)",Group 14,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_15,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,15,50,Group 15,Group 15,N/A,"[0.02152,0.0487)",Group 15,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_16,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,16,50,Group 16,Group 16,N/A,"[0.0487,0.07588)",Group 16,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_17,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,17,50,Group 17,Group 17,N/A,"[0.07588,0.10306)",Group 17,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_18,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,18,50,Group 18,Group 18,N/A,"[0.10306,0.13024)",Group 18,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_19,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,19,50,Group 19,Group 19,N/A,"[0.13024,0.15742)",Group 19,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_20,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,20,50,Group 20,Group 20,N/A,"[0.15742,0.1846)",Group 20,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_21,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,21,50,Group 21,Group 21,N/A,"[0.1846,0.21178)",Group 21,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_22,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,22,50,Group 22,Group 22,N/A,"[0.21178,0.23896)",Group 22,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_23,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,23,50,Group 23,Group 23,N/A,"[0.23896,0.26614)",Group 23,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_24,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,24,50,Group 24,Group 24,N/A,"[0.26614,0.29332)",Group 24,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_25,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,25,50,Group 25,Group 25,N/A,"[0.29332,0.3205)",Group 25,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_26,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,26,50,Group 26,Group 26,N/A,"[0.3205,0.34768)",Group 26,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_27,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,27,50,Group 27,Group 27,N/A,"[0.34768,0.37486)",Group 27,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_28,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,28,50,Group 28,Group 28,N/A,"[0.37486,0.40204)",Group 28,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_29,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,29,50,Group 29,Group 29,N/A,"[0.40204,0.42922)",Group 29,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_30,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,30,50,Group 30,Group 30,N/A,"[0.42922,0.4564)",Group 30,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_31,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,31,50,Group 31,Group 31,N/A,"[0.4564,0.48358)",Group 31,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_32,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,32,50,Group 32,Group 32,N/A,"[0.48358,0.51076)",Group 32,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_33,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,33,50,Group 33,Group 33,N/A,"[0.51076,0.53794)",Group 33,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_34,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,34,50,Group 34,Group 34,N/A,"[0.53794,0.56512)",Group 34,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_35,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,35,50,Group 35,Group 35,N/A,"[0.56512,0.5923)",Group 35,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_36,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,36,50,Group 36,Group 36,N/A,"[0.5923,0.61948)",Group 36,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_37,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,37,50,Group 37,Group 37,N/A,"[0.61948,0.64666)",Group 37,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_38,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,38,50,Group 38,Group 38,N/A,"[0.64666,0.67384)",Group 38,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_39,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,39,50,Group 39,Group 39,N/A,"[0.67384,0.70102)",Group 39,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_40,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,40,50,Group 40,Group 40,N/A,"[0.70102,0.7282)",Group 40,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_41,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,41,50,Group 41,Group 41,N/A,"[0.7282,0.75538)",Group 41,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_42,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,42,50,Group 42,Group 42,N/A,"[0.75538,0.78256)",Group 42,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_43,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,43,50,Group 43,Group 43,N/A,"[0.78256,0.80974)",Group 43,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_44,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,44,50,Group 44,Group 44,N/A,"[0.80974,0.83692)",Group 44,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_45,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,45,50,Group 45,Group 45,N/A,"[0.83692,0.8641)",Group 45,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_46,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,46,50,Group 46,Group 46,N/A,"[0.8641,0.89128)",Group 46,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_47,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,47,50,Group 47,Group 47,N/A,"[0.89128,0.91846)",Group 47,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_48,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,48,50,Group 48,Group 48,N/A,"[0.91846,0.94564)",Group 48,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_49,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,49,50,Group 49,Group 49,N/A,"[0.94564,0.97282)",Group 49,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_50,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,50,50,Group 50,Group 50,N/A,"[0.97282,1]",Group 50,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_NA::a,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::a,50,not applicable,not applicable,N/A,99.996,not applicable (99.996),Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,50,missing,missing,N/A,"[99.997,99.999]","don't know (99.997), refusal (99.998), not stated (99.999)",Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIDHSI_cat50,HUIDHSI_cat50_NA::b,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",cont,NA::b,50,missing,missing,N/A,else,else,Categorical Health Utility Index (HUI3),Categorical Health Utility Index (HUI3), -HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,1,3,No dext prob,No problems,N/A,1,No dext prob,"Dexterity trouble - function code (D, G)","Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,"Dexterity trouble - function code (D, G)","Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,3,3,Dext/need help,Needs help,N/A,3,Dext/need help,"Dexterity trouble - function code (D, G)","Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,"Dexterity trouble - function code (D, G)","Dexterity trouble - function code (D, G)", -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),"Dexterity trouble - function code (D, G)","Dexterity trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGDEX,HUIGDEX_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",cat,NA::b,3,missing,missing,N/A,else,else,"Dexterity trouble - function code (D, G)","Dexterity trouble - function code (D, G)", -HUIGHER,HUIGHER_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,"Hearing problems - function code (D, G)","Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,2,3,Hear corrected,Hearing corrected,N/A,2,Hear corrected,"Hearing problems - function code (D, G)","Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,3,Hear n-corrected,"Hearing problems - function code (D, G)","Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,"Hearing problems - function code (D, G)","Hearing problems - function code (D, G)", -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),"Hearing problems - function code (D, G)","Hearing problems - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGHER,HUIGHER_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",cat,NA::b,3,missing,missing,N/A,else,else,"Hearing problems - function code (D, G)","Hearing problems - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,"Mobility trouble - function code (D, G)","Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,"Mobility trouble - function code (D, G)","Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,3,4,Need mech supp.,Need mech supp.,N/A,3,Need mech supp.,"Mobility trouble - function code (D, G)","Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,4,4,Can't walk,Can't walk,N/A,4,Can't walk,"Mobility trouble - function code (D, G)","Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,"Mobility trouble - function code (D, G)","Mobility trouble - function code (D, G)", -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),"Mobility trouble - function code (D, G)","Mobility trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGMOB,HUIGMOB_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",cat,NA::b,4,missing,missing,N/A,else,else,"Mobility trouble - function code (D, G)","Mobility trouble - function code (D, G)", -HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,"Speech trouble - function code - (D, G)","Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,2,2,Part/not underst,Part/not underst,N/A,2,Part/not underst,"Speech trouble - function code - (D, G)","Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,"Speech trouble - function code - (D, G)","Speech trouble - function code - (D, G)", -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),"Speech trouble - function code - (D, G)","Speech trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGSPE,HUIGSPE_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",cat,NA::b,2,missing,missing,N/A,else,else,"Speech trouble - function code - (D, G)","Speech trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,5,Myopia & hypermet,"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)", -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8) -HUIGVIS,HUIGVIS_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",cat,NA::b,5,missing,missing,N/A,else,else,"Vision trouble - function code - (D, G)","Vision trouble - function code - (D, G)", -HUPDPAD,HUPDPAD_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,1,5,No pain/discomf,No pain/discomf,N/A,1,No pain/discomf,Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,2,5,Doesn't prev act,Doesn't prev act,N/A,2,Doesn't prev act,Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,3,5,Prevents few act,Prevents few act,N/A,3,Prevents few act,Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,4,5,Prev. some act,Prev. some act,N/A,4,Prev. some act,Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,5,5,Prev. most act,Prev. most act,N/A,5,Prev. most act,Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D), -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D),CCHS 2001 does not include don't know (7) or refusal (8) -HUPDPAD,HUPDPAD_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",cat,NA::b,5,missing,missing,N/A,else,else,Act. prevent/pain - function code - (D),Act. prevent/pain - function code - (D), -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, [HWTGBMI]",cont,copy,N/A,BMI,Body Mass Index,kg/m2,"[11.91,57.9]","BMI / self-report - (D,G)",BMI,"BMI / self-report - (D,G)","CCHS 2001 restricts BMI to ages 20-64. CCHS 2015-2016 uses adjusted BMI. Consider using using HWTGBMI_der for the most concistent BMI variable across all CCHS cycles. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console." -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI",cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.6,Not applicable,BMI,"BMI / self-report - (D,G)","CCHS 2001 and 2003 codes not applicable and missing variables as 999.6 and 999.7-999.9 respectively, while CCHS 2005 onwards codes not applicable and missing variables as 999.96 and 999.7-999.99 respectively" -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI",cont,NA::b,N/A,missing,missing,kg/m2,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,"BMI / self-report - (D,G)",Don't know (999.7) and refusal (999.8) not included in 2001 CCHS -HWTGBMI,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, [HWTGBMI]",cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,BMI,"BMI / self-report - (D,G)", -HWTGBMI,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, [HWTGBMI]",cont,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,"BMI / self-report - (D,G)", -HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, [HWTGBMI]",cont,NA::b,N/A,missing,missing,kg/m2,else,else,BMI,"BMI / self-report - (D,G)", -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[HWTGHTM, HWTGWTK]",N/A,Func::bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,"BMI variable derived from the harmonized height and weight variables. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console." -HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[HWTGHTM, HWTGWTK]",N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index, -HWTGBMI_der_cat4,HWTGBMI_der_cat4N/A_Func::bmi_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],N/A,Func::bmi_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical BMI (int'l),Categorical body mass index (international standard), -HWTGBMI_der_cat4,HWTGBMI_der_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],N/A,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI (int'l),Categorical body mass index (international standard), -HWTGBMI_der_cat4,HWTGBMI_der_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],N/A,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI (int'l),Categorical body mass index (international standard), -HWTGBMI_der_cat4,HWTGBMI_der_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],N/A,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI (int'l),Categorical body mass index (international standard), -HWTGBMI_der_cat4,HWTGBMI_der_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],N/A,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI (int'l),Categorical body mass index (international standard), -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],N/A,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI (int'l),Categorical body mass index (international standard), -HWTGBMI_der_cat4,HWTGBMI_der_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],N/A,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI (int'l),Categorical body mass index (international standard), -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,copy,N/A,Adjusted BMI,Adjusted body mass index,kg/m2,"[14.23,56.72]",Adjusted BMI,Adjusted BMI,Adjusted body mass index, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,Adjusted BMI,Adjusted body mass index, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Adjusted BMI,Adjusted body mass index, -HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[HWTDGCOR],N/A,NA::b,N/A,missing,missing,kg/m2,else,else,Adjusted BMI,Adjusted body mass index, -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]",N/A,Func::adjusted_bmi_fun,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted body mass index,"Adjusted BMI variable derived from the harmonized sex, height and weight variables. See documentation for adjusted_bmi_fun() in derived variables for more details, or type ?adjusted_bmi_fun in the console." -HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX,HWTGHTM, HWTGWTK]",N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted body mass index, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.118,N/A,Height,converted height (3'8 IN - 44 inches),meters,1,3'8 IN - 44 inches,Height,Height,"2001 and 2003 CCHS use inches, values converted to meters to 3 decimal points" -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.143,N/A,Height,converted height (3'9 IN - 45 inches),meters,2,3'9 IN - 45 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.168,N/A,Height,converted height (3'10 IN - 46 inches),meters,3,3'10 IN - 46 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.194,N/A,Height,converted height (3'11 IN - 47 inches),meters,4,3'11 IN - 47 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.219,N/A,Height,converted height (4'0 IN - 48 inches),meters,5,4'0 IN - 48 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.245,N/A,Height,converted height (4'1 IN - 49 inches),meters,6,4'1 IN - 49 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.27,N/A,Height,converted height (4'2 IN - 50 inches),meters,7,4'2 IN - 50 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.295,N/A,Height,converted height (4'3 IN - 51 inches),meters,8,4'3 IN - 51 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.321,N/A,Height,converted height (4'4 IN - 52 inches),meters,9,4'4 IN - 52 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.346,N/A,Height,converted height (4'5 IN - 53 inches),meters,10,4'5 IN - 53 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.372,N/A,Height,converted height (4'6 IN - 54 inches),meters,11,4'6 IN - 54 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.397,N/A,Height,converted height (4'7 IN - 55 inches),meters,12,4'7 IN - 55 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.422,N/A,Height,converted height (4'8 IN - 56 inches),meters,13,4'8 IN - 56 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.448,N/A,Height,converted height (4'9 IN - 57 inches),meters,14,4'9 IN - 57 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.473,N/A,Height,converted height (4'10 IN - 58 inches),meters,15,4'10 IN - 58 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.499,N/A,Height,converted height (4'11 in - 59 inches),meters,16,4'11 in - 59 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.524,N/A,Height,converted height (5'0 IN - 60 inches),meters,17,5'0 IN - 60 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.549,N/A,Height,converted height (5'1 IN - 61 inches),meters,18,5'1 IN - 61 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.575,N/A,Height,converted height (5'2 IN - 62 inches),meters,19,5'2 IN - 62 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.6,N/A,Height,converted height (5'3 IN - 63 inches),meters,20,5'3 IN - 63 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.626,N/A,Height,converted height (5'4 IN - 64 inches),meters,21,5'4 IN - 64 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.651,N/A,Height,converted height (5'5 IN - 65 inches),meters,22,5'5 IN - 65 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.676,N/A,Height,converted height (5'6 IN - 66 inches),meters,23,5'6 IN - 66 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.702,N/A,Height,converted height (5'7 IN - 67 inches),meters,24,5'7 IN - 67 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.727,N/A,Height,converted height (5'8 IN - 68 inches),meters,25,5'8 IN - 68 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.753,N/A,Height,converted height (5'9 IN - 69 inches),meters,26,5'9 IN - 69 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.778,N/A,Height,converted height (5'10 IN - 70 inches),meters,27,5'10 IN - 70 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.803,N/A,Height,converted height (5'11 IN - 71 inches),meters,28,5'11 IN - 71 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.829,N/A,Height,converted height (6'0 IN - 72 inches),meters,29,6'0 IN - 72 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.854,N/A,Height,converted height (6'1 IN - 73 inches),meters,30,6'1 IN - 73 inches,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,1.93,N/A,Height,converted height (6'2 IN+ - 74+ inches),meters,31,6'2 IN+ - 74+ inches,Height,Height,74+ inches converted to 76 inches -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,NA::a,N/A,not applicable,not applicable,meters,96,not applicable,Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,NA::b,N/A,missing,missing,meters,99,not stated (99),Height,Height, -HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",cat,NA::b,N/A,missing,missing,meters,else,else,Height,Height, -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, [HWTGHTM]",cont,copy,N/A,Height,Height,meters,"[0.914,2.134]",Height,Height,"Height (metres)/self-reported - (D,G)",Height is a reported in meters from 2005 CCHS onwards -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, [HWTGHTM]",cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, [HWTGHTM]",cont,NA::b,N/A,missing,missing,meters,"[9.997,9.999]","don't know (9.997), refusal (9.998), not stated (9.999)",Height,"Height (metres)/self-reported - (D,G)", -HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, [HWTGHTM]",cont,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, [HWTGWTK]",cont,copy,N/A,Weight,Weight - kilograms,kg,"[27.0,135.0]","Weight - kilograms (D, G)",Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, [HWTGWTK]",cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, [HWTGWTK]",cont,NA::b,N/A,missing,missing,kg,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,cont,NA::a,N/A,not applicable,not applicable,kg,996,not applicable,Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,cchs2003_p,cchs2003_p::HWTCGWTK,cont,NA::b,N/A,missing,missing,kg,"[997,999]",don't know (997); refusal (998); not stated (999),Weight,"Weight - kilograms (D, G)", -HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, [HWTGWTK]",cont,NA::b,N/A,missing,missing,kg,else,else,Weight,"Weight - kilograms (D, G)", -id_year,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[data_name, ADM_RNO]",N/A,id_from::unite,N/A,N/A,N/A,N/A,N/A,N/A,Unique ID,Unique ID,Variable appends data_name to sequential random number to generate a unique identifier for all respondents -immigration_der,immigration_derN/A_Func::immigration_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,Func::immigration_fun,N/A,N/A,N/A,N/A,N/A,N/A,Immigration category,Immigration category,"Derived from SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES" -immigration_der,immigration_der_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,1,6,White Canada-born,White Canada-born,N/A,1,White Canada-born,Immigration category,Immigration category, -immigration_der,immigration_der_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,2,6,Non-white Canadian born,Non-white Canadian born,N/A,2,Non-white Canadian born,Immigration category,Immigration category, -immigration_der,immigration_der_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,3,6,White immigrant born outside of Canada (0-9 years in Canada),White immigrant born outside of Canada (0-9 years in Canada),N/A,3,White immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,4,6,Non-white immigrant born outside of Canada (0-9 years in Canada),Non-white immigrant born outside of Canada (0-9 years in Canada),N/A,4,Non-white immigrant born outside of Canada (0-9 years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,5,6,White immigrant born outside of Canada (10+ years in Canada),White immigrant born outside of Canada (10+ years in Canada),N/A,5,White immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,6,6,Non-white immigrant born outside of Canada (10+ years in Canada),Non-white immigrant born outside of Canada (10+ years in Canada),N/A,6,Non-white immigrant born outside of Canada (10+ years in Canada),Immigration category,Immigration category, -immigration_der,immigration_der_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,NA::a,6,not applicable,not applicable,N/A,NA::a,not applicable,Immigration category,Immigration category, -immigration_der,immigration_der_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES]",N/A,NA::b,6,missing,missing,N/A,NA::b,missing,Immigration category,Immigration category, -INCDRCA,INCDRCA_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution,Household income distribution - (D), -INCDRCA,INCDRCA_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution,Household income distribution - (D), -INCDRPR,INCDRPR_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRPR,INCDRPR_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution provincial level,household inc. distribution-prov. level - (D), -INCDRRS,INCDRRS_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution health region level,household inc. distribution- hr level - (D), -INCDRRS,INCDRRS_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution health region level,household inc. distribution- hr level - (D), -INCGHH_A,INCGHH_A_cat6_1,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories" -INCGHH_A,INCGHH_A_cat6_2,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_3,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_4,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_5,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_6,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::a,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,6,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,"Total household income from all sources (D, G)", -INCGHH_A,INCGHH_A_cat6_NA::b,cat,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2003 and 2005 classifies no income and less than $15,000 as one category" -INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::a,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)", -INCGHH_B,INCGHH_B_cat5_NA::b,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,5,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,"Total household income from all sources (D, G)", -INCGHH_C,INCGHH_C_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)", -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,7500,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,N/A,missing,missing,$/year,"[97,99]","don't know (97), refusal (98), not stated (99)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,7500,N/A,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,10000,N/A,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,30000,N/A,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,N/A,missing,missing,$/year,"[7,9]","don't know (7), refusal (8), not stated (9)",Household income,Total household income from all sources - continuous, -INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous, -INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,1,6,No income,No income,$/year,1,No income,Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal income,"Total pers. inc. from all sources (D, G)",CCHS 2001 missing 97 (don't know) and 98 (refusal) -INCGPER_A,INCGPER_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,6,missing,missing,$/year,else,else,Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,1,6,No income,No income,$/year,1,No income,Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,2,6,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_B,INCGPER_B_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,6,missing,missing,$/year,else,else,Personal income,"Total pers. inc. from all sources (D, G)", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,0,N/A,No income,No income,$/year,1,No income,Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,22500,N/A,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",cat,NA::b,N/A,missing,missing,$/year,else,else,Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,0,N/A,No income,No income,$/year,1,No income,Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,10000,N/A,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,30000,N/A,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal income,"Total pers. inc. from all sources (D, G) - continuous", -INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",cat,NA::b,N/A,missing,missing,$/year,else,else,Personal income,"Total pers. inc. from all sources (D, G) - continuous", -LBFA_31A,LBFA_31A_cat9_1,cat,cchs2001_p,[LBFA_31A],cat,1,9,Management,Management,N/A,1,Management,Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_2,cat,cchs2001_p,[LBFA_31A],cat,2,9,Professional (including accountants),Professional (including accountants),N/A,2,Professional (including accountants),Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_3,cat,cchs2001_p,[LBFA_31A],cat,3,9,"Technologist, Technician or Tech Occ","Technologist, Technician or Tech Occ",N/A,3,"Technologist, Technician or Tech Occ",Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_4,cat,cchs2001_p,[LBFA_31A],cat,4,9,"Administrative, Financial or Clerical","Administrative, Financial or Clerical",N/A,4,"Administrative, Financial or Clerical",Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_5,cat,cchs2001_p,[LBFA_31A],cat,5,9,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_6,cat,cchs2001_p,[LBFA_31A],cat,6,9,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_7,cat,cchs2001_p,[LBFA_31A],cat,7,9,"Farming, Forestry, Fishing, Mining","Farming, Forestry, Fishing, Mining",N/A,7,"Farming, Forestry, Fishing, Mining",Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_8,cat,cchs2001_p,[LBFA_31A],cat,8,9,"Processing, Manufacturing, Utilities","Processing, Manufacturing, Utilities",N/A,8,"Processing, Manufacturing, Utilities",Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_9,cat,cchs2001_p,[LBFA_31A],cat,9,9,Other,Other,N/A,9,Other,Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_NA::a,cat,cchs2001_p,[LBFA_31A],cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation,Which of the following best describes your occupation?, -LBFA_31A,LBFA_31A_cat9_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,9,missing,missing,N/A,else,else,Occupation,Which of the following best describes your occupation?, -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,3,5,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,5,missing,missing,N/A,9,not stated,Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,5,missing,missing,N/A,else,else,Occupation,Occupation group - (G), -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation,Which of the following best describes your occupation?,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2007-2014" -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation,Which of the following best describes your occupation?,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2007-2015" -LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation,Which of the following best describes your occupation?,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2007-2016" -LBFA_31A_a,LBFA_31A_a_cat5_2,cat,cchs2001_p,[LBFA_31A],cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation,Which of the following best describes your occupation?, -LBFA_31A_a,LBFA_31A_a_cat5_3,cat,cchs2001_p,[LBFA_31A],cat,3,5,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation,Which of the following best describes your occupation?, -LBFA_31A_a,LBFA_31A_a_cat5_4,cat,cchs2001_p,[LBFA_31A],cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation,Which of the following best describes your occupation?, -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation,Which of the following best describes your occupation?,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2007-2014" -LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation,Which of the following best describes your occupation?,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2007-2015" -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,5,missing,missing,N/A,9,Other,Occupation,Which of the following best describes your occupation?,"""Other"" has no equivalent in LBSGSOC recoded to 'NA::b' missing" -LBFA_31A_a,LBFA_31A_a_cat5_NA::a,cat,cchs2001_p,[LBFA_31A],cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Occupation,Which of the following best describes your occupation?, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation,Which of the following best describes your occupation?, -LBFA_31A_a,LBFA_31A_a_cat5_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,5,missing,missing,N/A,else,else,Occupation,Which of the following best describes your occupation?, -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,3,6,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,6,missing,missing,N/A,9,not stated,Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",cat,NA::b,6,missing,missing,N/A,else,else,Occupation,Occupation group - (G), -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation,Which of the following best describes your occupation?,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2007-2014" -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation,Which of the following best describes your occupation?,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2007-2015" -LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation,Which of the following best describes your occupation?,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2007-2016" -LBFA_31A_b,LBFA_31A_b_cat6_2,cat,cchs2001_p,[LBFA_31A],cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation,Which of the following best describes your occupation?, -LBFA_31A_b,LBFA_31A_b_cat6_3,cat,cchs2001_p,[LBFA_31A],cat,3,6,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation,Which of the following best describes your occupation?, -LBFA_31A_b,LBFA_31A_b_cat6_4,cat,cchs2001_p,[LBFA_31A],cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation,Which of the following best describes your occupation?, -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation,Which of the following best describes your occupation?,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2007-2014" -LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation,Which of the following best describes your occupation?,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2007-2015" -LBFA_31A_b,LBFA_31A_b_cat6_6,cat,cchs2001_p,[LBFA_31A],cat,6,6,Other,Other,N/A,9,Other,Occupation,Which of the following best describes your occupation?, -LBFA_31A_b,LBFA_31A_b_cat6_NA::a,cat,cchs2001_p,[LBFA_31A],cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Occupation,Which of the following best describes your occupation?, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation,Which of the following best describes your occupation?, -LBFA_31A_b,LBFA_31A_b_cat6_NA::b,cat,cchs2001_p,[LBFA_31A],cat,NA::b,6,missing,missing,N/A,else,else,Occupation,Which of the following best describes your occupation?, -low_drink_score,low_drink_score_cat4N/A_Func::low_drink_score_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,Func::low_drink_score_fun,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/eprg7/ . Derived from DHH_SEX, ALWDWKY." -low_drink_score,low_drink_score_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,1,4,Low risk,Low risk,N/A,1,Low risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,2,4,Marginal risk,Marginal risk,N/A,2,Marginal risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,3,4,Medium risk,Medium risk,N/A,3,Medium risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,4,4,High risk,High risk,N/A,4,High risk,Low risk drinking score,Low risk drinking score, -low_drink_score,low_drink_score_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY]",N/A,NA::b,4,missing,missing,N/A,N/A,N/A,Low risk drinking score,Low risk drinking score, -low_drink_score1,low_drink_score1_cat5N/A_Func::low_drink_score_fun1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,Func::low_drink_score_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,1,5,Low risk - never drank,Low risk - never drank,N/A,1,Low risk - never drank,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,2,5,Low risk - former drinker,Low risk - former drinker,N/A,2,Low risk - former drinker,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,3,5,Marginal risk,Marginal risk,N/A,3,Marginal risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,4,5,Medium risk,Medium risk,N/A,4,Medium risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,5,5,High risk,High risk,N/A,5,High risk,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -low_drink_score1,low_drink_score1_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHH_SEX, ALWDWKY, ALC_005, ALC_1]",N/A,NA::b,5,missing,missing,N/A,N/A,N/A,Low risk drinking score - former/never drinking categories,Low risk drinking score - former/never drinking categories, -MED_1P,MED_1P_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,1,2,Yes,Yes,N/A,1,Yes,Medication - sleeping pills,"In the past month, did you take sleeping pills such as Imovane, Nytol or Starnoc?",CCHS 2001 does not provide examples of sleeping pills in its literal question -MED_1P,MED_1P_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,2,2,No,No,N/A,2,No,Medication - sleeping pills,"In the past month, did you take sleeping pills such as Imovane, Nytol or Starnoc?", -MED_1P,MED_1P_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Medication - sleeping pills,"In the past month, did you take sleeping pills such as Imovane, Nytol or Starnoc?", -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Medication - sleeping pills,"In the past month, did you take sleeping pills such as Imovane, Nytol or Starnoc?", -MED_1P,MED_1P_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",cat,NA::b,2,missing,missing,N/A,else,else,Medication - sleeping pills,"In the past month, did you take sleeping pills such as Imovane, Nytol or Starnoc?", -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun1,cat,cchs2001_p,"DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",N/A,Func::multiple_conditions_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Number of chronic conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, resp_condition, CCC_050" -number_conditions,number_conditions_catN/A_Func::multiple_conditions_fun2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,Func::multiple_conditions_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Number of chronic conditions,Number of chronic conditions,"This variable is derived from CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition, CCC_051. Variable can be extended to 2018 when bowel condition not included." -number_conditions,number_conditions_cat6_0,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,0,6,0,0,N/A,N/A,0,Number of chronic conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,1,6,1,1,N/A,N/A,1,Number of chronic conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,2,6,2,2,N/A,N/A,2,Number of chronic conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,3,6,3,3,N/A,N/A,3,Number of chronic conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,4,6,4,4,N/A,N/A,4,Number of chronic conditions,Number of chronic conditions, -number_conditions,number_conditions_cat6_5+,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",N/A,5+,6,5+,5+,N/A,N/A,5+,Number of chronic conditions,Number of chronic conditions, -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,160]",No. hours sweat,Sports / fitness / rec phys act - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sports / fitness / rec phys act - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sports / fitness / rec phys act - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_045],cat,NA::b,N/A,missing,missing,hours/week,else,else,Sports / fitness / rec phys act - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,1680]",No. minutes sweat,Sports / fitness / rec phys act - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sports / fitness / rec phys act - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sports / fitness / rec phys act - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_050],cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sports / fitness / rec phys act - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,168]",No. hours sweat,Other physical activities - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Other physical activities - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Other physical activities - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_075],cat,NA::b,N/A,missing,missing,hours/week,else,else,Other physical activities - 7 d - total - hours,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,4880]",No. minutes sweat,Other physical activities - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Other physical activities - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Other physical activities - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAA_080],cat,NA::b,N/A,missing,missing,minutes/week,else,else,Other physical activities - 7 d - total - minutes,"(18+ years old) In the last 7 days, how much time in total did you spend doing these activities that made you sweat at least a little and breathe harder?", -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,copy,N/A,No. minutes - vigorous physical activity - 7d,No. minutes - vigorous physical activity - 7d,minutes/week,"[0,6000]",No. minutes - vigorous physical activity - 7d,Total minutes of vigorous activity over a week,(18+ years old) Total minutes of vigorous activity - 7 d - (D), -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Total minutes of vigorous activity over a week,(18+ years old) Total minutes of vigorous activity - 7 d - (D), -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Total minutes of vigorous activity over a week,(18+ years old) Total minutes of vigorous activity - 7 d - (D), -PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVVIG],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Total minutes of vigorous activity over a week,(18+ years old) Total minutes of vigorous activity - 7 d - (D), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,copy,N/A,No. active days - 7d,No. active days - 7d,days,"[0,7]",No. active days - 7d,No. active days - 7d,(18+ years old) Number of active days - 7 d - (D), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,No. active days - 7d,(18+ years old) Number of active days - 7 d - (D), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),No. active days - 7d,(18+ years old) Number of active days - 7 d - (D), -PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAADVDYS],cont,NA::b,N/A,missing,missing,days,else,else,No. active days - 7d,(18+ years old) Number of active days - 7 d - (D), -PAC_4A,PAC_4A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,1,6,None,None,hours/week,1,None,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4A,PAC_4A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A",cat,NA::b,6,missing,missing,hours/week,else,else,No./hours spent - walking work/school,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,1,6,None,None,hours/week,1,None,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_4B,PAC_4B_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B",cat,NA::b,6,missing,missing,hours/week,else,else,No. of hrs. biking - to work/school,"In a typical week, how much time did you usually spend bicycling to work or to school or while doing errands?", -PAC_7,PAC_7_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7],cat,1,3,Yes,Yes,N/A,1,Yes,Walked to work or school / last 3 mo.,[Other than the ( X ) times you already reported walking for exercise was there any other time / Was there any time] in the past 3 months when you walked to and from work or school?, -PAC_7,PAC_7_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7],cat,2,3,No,No,N/A,2,No,Walked to work or school / last 3 mo.,[Other than the ( X ) times you already reported walking for exercise was there any other time / Was there any time] in the past 3 months when you walked to and from work or school?, -PAC_7,PAC_7_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7],cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Walked to work or school / last 3 mo.,[Other than the ( X ) times you already reported walking for exercise was there any other time / Was there any time] in the past 3 months when you walked to and from work or school?, -PAC_7,PAC_7_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Walked to work or school / last 3 mo.,[Other than the ( X ) times you already reported walking for exercise was there any other time / Was there any time] in the past 3 months when you walked to and from work or school?, -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Walked to work or school / last 3 mo.,[Other than the ( X ) times you already reported walking for exercise was there any other time / Was there any time] in the past 3 months when you walked to and from work or school?, -PAC_7,PAC_7_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7],cat,NA::b,3,missing,missing,N/A,else,else,Walked to work or school / last 3 mo.,[Other than the ( X ) times you already reported walking for exercise was there any other time / Was there any time] in the past 3 months when you walked to and from work or school?, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7A],cont,copy,N/A,No. of times/3 mo./walking work/school,No. of times walking work/school,N/A,"[1,270]",No. of times walking work/school,No. of times/3 mo./walking work/school,No. of times/3 mo./walking work/school, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7A],cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,No. of times/3 mo./walking work/school,No. of times/3 mo./walking work/school, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7A],cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),No. of times/3 mo./walking work/school,No. of times/3 mo./walking work/school, -PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7A],cont,NA::b,N/A,missing,missing,N/A,else,else,No. of times/3 mo./walking work/school,No. of times/3 mo./walking work/school, -PAC_7B,PAC_7B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7B],cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time spent - walking to go work/school,About how much time did you spend on each occasion?, -PAC_7B,PAC_7B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7B],cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time spent - walking to go work/school,About how much time did you spend on each occasion?, -PAC_7B,PAC_7B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7B],cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time spent - walking to go work/school,About how much time did you spend on each occasion?, -PAC_7B,PAC_7B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7B],cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time spent - walking to go work/school,About how much time did you spend on each occasion?, -PAC_7B,PAC_7B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7B],cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time spent - walking to go work/school,About how much time did you spend on each occasion?, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7B],cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time spent - walking to go work/school,About how much time did you spend on each occasion?, -PAC_7B,PAC_7B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_7B],cat,NA::b,4,missing,missing,mins,else,else,Time spent - walking to go work/school,About how much time did you spend on each occasion?, -PAC_8,PAC_8_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8],cat,1,3,Yes,Yes,N/A,1,Yes,Bicycled to work or school / last 3 mo.,[Other than the ( X ) times you already reported bicycling was there any other time / Was there any other time] in the past 3 months when you bicycled to and from work or school?, -PAC_8,PAC_8_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8],cat,2,3,No,No,N/A,2,No,Bicycled to work or school / last 3 mo.,[Other than the ( X ) times you already reported bicycling was there any other time / Was there any other time] in the past 3 months when you bicycled to and from work or school?, -PAC_8,PAC_8_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8],cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Bicycled to work or school / last 3 mo.,[Other than the ( X ) times you already reported bicycling was there any other time / Was there any other time] in the past 3 months when you bicycled to and from work or school?, -PAC_8,PAC_8_cat3_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Bicycled to work or school / last 3 mo.,[Other than the ( X ) times you already reported bicycling was there any other time / Was there any other time] in the past 3 months when you bicycled to and from work or school?, -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bicycled to work or school / last 3 mo.,[Other than the ( X ) times you already reported bicycling was there any other time / Was there any other time] in the past 3 months when you bicycled to and from work or school?, -PAC_8,PAC_8_cat3_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8],cat,NA::b,3,missing,missing,N/A,else,else,Bicycled to work or school / last 3 mo.,[Other than the ( X ) times you already reported bicycling was there any other time / Was there any other time] in the past 3 months when you bicycled to and from work or school?, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8A],cont,copy,N/A,No. of times/3 mo./biking work/school,No. of times biking work/school,times/3 mos.,"[1,270]",No. of times biking work/school,No. of times/3 mo./bicycl. work/school,No. of times/3 mo./bicycl. work/school, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8A],cont,NA::a,N/A,not applicable,not applicable,times/3 mos.,996,not applicable,No. of times/3 mo./bicycl. work/school,No. of times/3 mo./bicycl. work/school, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8A],cont,NA::b,N/A,missing,missing,times/3 mos.,"[997,999]",don't know (997); refusal (998); not stated (999),No. of times/3 mo./bicycl. work/school,No. of times/3 mo./bicycl. work/school, -PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8A],cont,NA::b,N/A,missing,missing,times/3 mos.,else,else,No. of times/3 mo./bicycl. work/school,No. of times/3 mo./bicycl. work/school, -PAC_8B,PAC_8B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8B],cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time spent - bicycl. to go work/school,About how much time did you spend on each occasion?, -PAC_8B,PAC_8B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8B],cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time spent - bicycl. to go work/school,About how much time did you spend on each occasion?, -PAC_8B,PAC_8B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8B],cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time spent - bicycl. to go work/school,About how much time did you spend on each occasion?, -PAC_8B,PAC_8B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8B],cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time spent - bicycl. to go work/school,About how much time did you spend on each occasion?, -PAC_8B,PAC_8B_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8B],cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time spent - bicycl. to go work/school,About how much time did you spend on each occasion?, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8B],cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time spent - bicycl. to go work/school,About how much time did you spend on each occasion?, -PAC_8B,PAC_8B_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",[PAC_8B],cat,NA::b,4,missing,missing,mins,else,else,Time spent - bicycl. to go work/school,About how much time did you spend on each occasion?, -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,copy,N/A,Physical Activity,Average daily leisure time energy expenditure in METs,METS,"[0,43.5]",Daily energy expenditure - (D),Physical Activity,Daily energy expenditure - (D),Refer to energy_exp for PACDEE all cycles -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::a,N/A,not applicable,not applicable,METS,99.6,Not applicable,Physical Activity,Daily energy expenditure - (D), -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Physical Activity,Daily energy expenditure - (D),Don't know (99.7) and refusal (99.8) not included in 2001 CCHS -PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,N/A,missing,missing,METS,else,else,Physical Activity,Daily energy expenditure - (D), -PACDEE_cat3,PACDEE_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,1,3,Inactive,Inactive - leisure activity,METS,"[0,1.5)",Inactive - leisure activity,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,2,3,Moderately active,Moderately active - leisure activity,METS,"[1.5,3)",Moderately active - leisure activity,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,3,3,Active,Active - leisure activity,METS,"[3,43.5]",Active - leisure activity,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::a,3,not applicable,not applicable,METS,99.6,Not applicable,Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,3,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Categorical physical activity,Categorical daily energy expenditure, -PACDEE_cat3,PACDEE_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",cont,NA::b,3,missing,missing,METS,else,else,Categorical physical activity,Categorical daily energy expenditure, -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",N/A,Func::pack_years_fun,N/A,N/A,N/A,Years,N/A,N/A,Smoking pack-years,Smoking pack-years,PackYears variable derived from various harmonized smoking variables -pack_years_der,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",N/A,NA::b,N/A,missing,missing,Years,N/A,N/A,Smoking pack-years,Smoking pack-years, -pack_years_cat,pack_years_catN/A_Func::pack_years_fun_cat,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,Func::pack_years_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,1,8,0,0 pack-years,pack-years,1,0 pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,2,8,0 to 0.01,0 to 0.01 pack-years,pack-years,2,0 to 0.01 pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,3,8,0.01 to 3.0,0.01 to 3.0 pack-years,pack-years,3,0.01 to 3.0 pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,4,8,3.0 to 9.0,3.0 to 9.0 pack-years,pack-years,4,3.0 to 9.0 pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,5,8,9.0 to 16.2,9.0 to 16.2 pack-years,pack-years,5,9.0 to 16.2 pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,6,8,16.2 to 25.7,16.2 to 25.7 pack-years,pack-years,6,16.2 to 25.7 pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_7,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,7,8,25.7 to 40.0,25.7 to 40.0 pack-years,pack-years,7,25.7 to 40.0 pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_8,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,8,8,40.0+,40.0+ pack-years,pack-years,8,40.0+ pack-years,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,NA::a,8,not applicable,not applicable,pack-years,NA::a,not applicable,Categorical smoking pack-years,Categorical smoking pack-years, -pack_years_cat,pack_years_cat_cat8_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],N/A,NA::b,8,missing,missing,pack-years,NA::b,missing,Categorical smoking pack-years,Categorical smoking pack-years, -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,copy,N/A,No. minutes of other activities,No. minutes of other activities,minutes/week,"[0,4980]",No. minutes of other activities,Total minutes of other activities - 7 d,Total minutes of other activities - 7 d - (D), -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Total minutes of other activities - 7 d,Total minutes of other activities - 7 d - (D), -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Total minutes of other activities - 7 d,Total minutes of other activities - 7 d - (D), -PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVTOA],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Total minutes of other activities - 7 d,Total minutes of other activities - 7 d - (D), -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,copy,N/A,No. minutes of leisure activities,No. minutes of leisure activities,minutes/week,"[0,4140]",No. minutes of leisure activities,Total minutes of physical activities during leisure over a week,Total minutes - physical activities during leisure - 7 d - (D), -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Total minutes of physical activities during leisure over a week,Total minutes - physical activities during leisure - 7 d - (D), -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Total minutes of physical activities during leisure over a week,Total minutes - physical activities during leisure - 7 d - (D), -PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVADL],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Total minutes of physical activities during leisure over a week,Total minutes - physical activities during leisure - 7 d - (D), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,copy,N/A,No. minutes of vigorous activities,No. minutes of vigorous activities,minutes/week,"[0,2880]",No. minutes of vigorous activities,Total minutes of vigorous physical activity over a week,Total minutes - vigorous physical activity - 7 d - (D), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Total minutes of vigorous physical activity over a week,Total minutes - vigorous physical activity - 7 d - (D), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Total minutes of vigorous physical activity over a week,Total minutes - vigorous physical activity - 7 d - (D), -PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVVIG],cont,NA::b,N/A,missing,missing,minutes/week,else,else,Total minutes of vigorous physical activity over a week,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,copy,N/A,No. physically active days,No. physically active days,days,"[0,7]",No. physically active days,Number of days - physically active over a week,, -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Number of days - physically active over a week,Number of days - physically active - 7 d - (D), -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Number of days - physically active over a week,Number of days - physically active - 7 d - (D), -PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[PAYDVDYS],cont,NA::b,N/A,missing,missing,days,else,else,Number of days - physically active over a week,Number of days - physically active - 7 d - (D), -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",N/A,Func::pct_time_fun,N/A,N/A,N/A,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,"Percent time in Canada derived from Age, immigration status, and time in Canada variables" -pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",N/A,NA::b,N/A,missing,missing,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10N/A_Func::pct_time_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,Func::pct_time_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical percent time in Canada,Categorical percentage of time in Canada,Categorical percent time in Canada derived from pct_time_der -pct_time_der_cat10,pct_time_der_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,1,10,10%,10% time in Canada,%,1,10% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,2,10,20%,20% time in Canada,%,2,20% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,3,10,30%,30% time in Canada,%,3,30% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,4,10,40%,40% time in Canada,%,4,40% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,5,10,50%,50% time in Canada,%,5,50% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,6,10,60%,60% time in Canada,%,6,60% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,7,10,70%,70% time in Canada,%,7,70% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,8,10,80%,80% time in Canada,%,8,80% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,9,10,90%,90% time in Canada,%,9,90% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,10,10,100%,100% time in Canada,%,10,100% time in Canada,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,NA::a,10,not applicable,not applicable,%,NA::a,not applicable,Categorical percent time in Canada,Categorical percentage of time in Canada, -pct_time_der_cat10,pct_time_der_cat10_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[pct_time_der],N/A,NA::b,10,missing,missing,%,NA::b,missing,Categorical percent time in Canada,Categorical percentage of time in Canada, -RAC_1,RAC_1_cat3_1,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_1,RAC_1_cat3_2,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",cat,2,3,Often,Often,N/A,2,Often,Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_1,RAC_1_cat3_3,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",cat,3,3,Never,Never,N/A,3,Never,Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_1,RAC_1_cat3_NA::a,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_1,RAC_1_cat3_NA::b,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",cat,NA::b,3,missing,missing,N/A,else,else,Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_1,RAC_1_cat3_NA::a,cat,cchs2003_p,cchs2003_p::RACC_1,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?",CCHS 2003 codes N/A as 96 and missing as 97-99 -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_1,RAC_1_cat3_NA::b,cat,cchs2003_p,cchs2003_p::RACC_1,cat,NA::b,3,missing,missing,N/A,else,else,Has difficulty with activities,"Do you have any difficulty hearing, seeing, communicating, walking, climbing stairs, bending, learning or doing any similar activities?", -RAC_2A,RAC_2A_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction - activities at home,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at home?, -RAC_2A,RAC_2A_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,2,3,Often,Often,N/A,2,Often,Reduction - activities at home,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at home?, -RAC_2A,RAC_2A_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,3,3,Never,Never,N/A,3,Never,Reduction - activities at home,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at home?, -RAC_2A,RAC_2A_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction - activities at home,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at home?, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction - activities at home,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at home?, -RAC_2A,RAC_2A_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",cat,NA::b,3,missing,missing,N/A,else,else,Reduction - activities at home,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at home?, -RAC_2B,RAC_2B_cat3_1,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction - activities at work or school,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at work or at school?,"In CCHS 2001, work and school reduction were combined into one variable. From CCHS 2003 onwards they were split into 2 variables (RAC_2B1 & RAC_2B2)" -RAC_2B,RAC_2B_cat3_2,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,2,3,Often,Often,N/A,2,Often,Reduction - activities at work or school,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at work or at school?, -RAC_2B,RAC_2B_cat3_3,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,3,3,Never,Never,N/A,3,Never,Reduction - activities at work or school,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at work or at school?, -RAC_2B,RAC_2B_cat3_NA::a,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,NA::a,3,not applicable,not applicable,N/A,4,not applicable,Reduction - activities at work or school,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at work or at school?, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction - activities at work or school,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at work or at school?, -RAC_2B,RAC_2B_cat3_NA::b,cat,cchs2001_p,cchs2001_p::RACA_2B,cat,NA::b,3,missing,missing,N/A,else,else,Reduction - activities at work or school,Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do at work or at school?, -RAC_2B1,RAC_2B1_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Long-term cond. reduces act. - school,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at school?", -RAC_2B1,RAC_2B1_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,2,4,Often,Often,N/A,2,Often,Long-term cond. reduces act. - school,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at school?", -RAC_2B1,RAC_2B1_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,3,4,Never,Never,N/A,3,Never,Long-term cond. reduces act. - school,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at school?", -RAC_2B1,RAC_2B1_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,4,4,Not attend school,Not attend school,N/A,4,Not attend school,Long-term cond. reduces act. - school,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at school?", -RAC_2B1,RAC_2B1_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Long-term cond. reduces act. - school,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at school?", -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Long-term cond. reduces act. - school,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at school?", -RAC_2B1,RAC_2B1_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",cat,NA::b,4,missing,missing,N/A,else,else,Long-term cond. reduces act. - school,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at school?", -RAC_2B2,RAC_2B2_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,1,4,Sometimes,missing,N/A,1,Sometimes,Reduction kind/amount act. - at work,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at work?", -RAC_2B2,RAC_2B2_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,2,4,Often,Often,N/A,2,Often,Reduction kind/amount act. - at work,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at work?", -RAC_2B2,RAC_2B2_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,3,4,Never,Never,N/A,3,Never,Reduction kind/amount act. - at work,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at work?", -RAC_2B2,RAC_2B2_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,4,4,Has no job,Has no job,N/A,4,Has no job,Reduction kind/amount act. - at work,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at work?", -RAC_2B2,RAC_2B2_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction kind/amount act. - at work,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at work?", -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction kind/amount act. - at work,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at work?", -RAC_2B2,RAC_2B2_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",cat,NA::b,4,missing,missing,N/A,else,else,Reduction kind/amount act. - at work,"Does a long-term physical condition or mental condition or health problem, reduce the amount or the kind of activity you can do at work?", -RAC_2C,RAC_2C_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction - other activities,"Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do in other activities, for example, transportation or leisure?", -RAC_2C,RAC_2C_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,2,3,Often,Often,N/A,2,Often,Reduction - other activities,"Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do in other activities, for example, transportation or leisure?", -RAC_2C,RAC_2C_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,3,3,Never,Never,N/A,3,Never,Reduction - other activities,"Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do in other activities, for example, transportation or leisure?", -RAC_2C,RAC_2C_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction - other activities,"Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do in other activities, for example, transportation or leisure?", -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction - other activities,"Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do in other activities, for example, transportation or leisure?", -RAC_2C,RAC_2C_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",cat,NA::b,3,missing,missing,N/A,else,else,Reduction - other activities,"Does a long-term physical condition or mental condition or health problem reduce the amount or the kind of activity you can do in other activities, for example, transportation or leisure?", -RACAG5,RACAG5_cat4_1,cat,cchs2001_p,cchs2001_p::RACAG5,cat,1,4,Injury,Injury,N/A,1,Injury,Cause of health problem - (G),Cause of health problem - (G),"CCHS 2001 has different categories from other cycles, hence a new variable created" -RACAG5,RACAG5_cat4_2,cat,cchs2001_p,cchs2001_p::RACAG5,cat,2,4,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause of health problem - (G),Cause of health problem - (G), -RACAG5,RACAG5_cat4_3,cat,cchs2001_p,cchs2001_p::RACAG5,cat,3,4,Aging,Aging,N/A,3,Aging,Cause of health problem - (G),Cause of health problem - (G), -RACAG5,RACAG5_cat4_4,cat,cchs2001_p,cchs2001_p::RACAG5,cat,4,4,Other,Other,N/A,4,Other,Cause of health problem - (G),Cause of health problem - (G), -RACAG5,RACAG5_cat4_NA::a,cat,cchs2001_p,cchs2001_p::RACAG5,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Cause of health problem - (G),Cause of health problem - (G), -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Cause of health problem - (G),Cause of health problem - (G), -RACAG5,RACAG5_cat4_NA::b,cat,cchs2001_p,cchs2001_p::RACAG5,cat,NA::b,4,missing,missing,N/A,else,else,Cause of health problem - (G),Cause of health problem - (G), -RACDIMP,RACDIMP_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Impact of health problems,Impact of health problems, -RACDIMP,RACDIMP_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,2,3,Often,Often,N/A,2,Often,Impact of health problems,Impact of health problems, -RACDIMP,RACDIMP_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,3,3,Never,Never,N/A,3,Never,Impact of health problems,Impact of health problems, -RACDIMP,RACDIMP_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Impact of health problems,Impact of health problems, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Impact of health problems,Impact of health problems, -RACDIMP,RACDIMP_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",cat,NA::b,3,missing,missing,N/A,else,else,Impact of health problems,Impact of health problems, -RACDPAL,RACDPAL_catN/A_Func::RACDPAL_fun,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,Func::RACDPAL_fun,N/A,N/A,N/A,N/A,N/A,N/A,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_1,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,1,3,Sometimes,Sometimes,N/A,N/A,Participation and activity limitation,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_2,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,2,3,Often,Often,N/A,N/A,Participation and activity limitation,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_3,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,3,3,Never,Never,N/A,N/A,Participation and activity limitation,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::b,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",N/A,NA::b,3,missing,missing,N/A,N/A,Participation and activity limitation,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,2,3,Often,Often,N/A,2,Often,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,3,3,Never,Never,N/A,3,Never,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Participation and activity limitation,Participation and activity limitation, -RACDPAL,RACDPAL_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",cat,NA::b,3,missing,missing,N/A,else,else,Participation and activity limitation,Participation and activity limitation, -RACG5,RACG5_cat6_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,1,6,Injury,Injury,N/A,1,Injury,Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,2,6,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,3,6,Aging,Aging,N/A,3,Aging,Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,4,6,Existed at birth,Existed at birth,N/A,4,Existed at birth,Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,5,6,Work conditions,Work conditions,N/A,5,Work conditions,Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,6,6,Other,Other,N/A,6,Other,Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause of health problem,Cause of health problem, -RACG5,RACG5_cat6_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",cat,NA::b,6,missing,missing,N/A,else,else,Cause of health problem,Cause of health problem, -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",N/A,Func::resp_condition_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory Condition,Respiratory Condition,"Derived from Bronchitis, COPD and Emphysema variables" -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun2,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,Func::resp_condition_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory Condition,Respiratory Condition,"Derived from Bronchitis, COPD and Emphysema variables" -resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun3,cat,"cchs2001_p, cchs2003_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]",N/A,Func::resp_condition_fun3,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory Condition,Respiratory Condition,"Derived from Bronchitis, COPD and Emphysema variables" -resp_condition_der,resp_condition_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -resp_condition_der,resp_condition_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -resp_condition_der,resp_condition_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -resp_condition_der,resp_condition_der_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -resp_condition_der,resp_condition_der_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91E, CCC_91F, CCC_91A, CCC_031]",N/A,NA::a,3,not applicable,not applicable,N/A,N/A,Respiratory Condition,Respiratory Condition,Respiratory Condition, -SDC_5A_1,SDC_5A_1_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,1,4,English ,English only,N/A,1,English ,Knowledge of official languages,"Of English or French, which language(s) do you speak well enough to conduct a conversation?", -SDC_5A_1,SDC_5A_1_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,2,4,French,French only,N/A,2,French,Knowledge of official languages,"Of English or French, which language(s) do you speak well enough to conduct a conversation?", -SDC_5A_1,SDC_5A_1_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,3,4,English & French,English & French,N/A,3,English & French,Knowledge of official languages,"Of English or French, which language(s) do you speak well enough to conduct a conversation?", -SDC_5A_1,SDC_5A_1_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,4,4,Neither,Neither English nor French,N/A,4,Neither,Knowledge of official languages,"Of English or French, which language(s) do you speak well enough to conduct a conversation?", -SDC_5A_1,SDC_5A_1_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Knowledge of official languages,"Of English or French, which language(s) do you speak well enough to conduct a conversation?", -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Knowledge of official languages,"Of English or French, which language(s) do you speak well enough to conduct a conversation?", -SDC_5A_1,SDC_5A_1_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, [SDC_5A_1]",cat,NA::b,4,missing,missing,N/A,else,else,Knowledge of official languages,"Of English or French, which language(s) do you speak well enough to conduct a conversation?", -SDCDFOLS,SDCDFOLS_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,1,4,English ,English only,N/A,1,English ,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,2,4,French,French only,N/A,2,French,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,3,4,English & French,English & French,N/A,3,English & French,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,4,4,Neither,Neither English nor French,N/A,4,Neither,First official language spoken,First official language spoken, -SDCDFOLS,SDCDFOLS_cat4_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)" -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)" -SDCDFOLS,SDCDFOLS_cat4_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, [SDCDFOLS]",cat,NA::b,4,missing,missing,N/A,else,else,First official language spoken,First official language spoken, -SDCFIMM,SDCFIMM_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,1,2,Yes,Yes,N/A,1,Yes,Immigrant status (D),Are you an immigrant?, -SDCFIMM,SDCFIMM_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,2,2,No,No,N/A,2,No,Immigrant status (D),Are you an immigrant?, -SDCFIMM,SDCFIMM_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Immigrant status (D),Are you an immigrant?, -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Immigrant status (D),Are you an immigrant?, -SDCFIMM,SDCFIMM_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, [SDCFIMM]",cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status (D),Are you an immigrant?, -SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth - (G),Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,2,2,Other,Other,N/A,2,Other,Country of birth - (G),Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Country of birth - (G),Country of birth - (G), -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Country of birth - (G),Country of birth - (G),CCHS 2001 does not have don't know (7) or refusal (8) -SDCGCBG,SDCGCBG_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",cat,NA::b,2,missing,missing,N/A,else,else,Country of birth - (G),Country of birth - (G), -SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,2,2,Non-white,Non-white,N/A,2,Visible minority,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ethnicity,"Cultural or racial origin - (D, G)","CCHS 2001 missing don't know (7), refusal (8)" -SDCGCGT,SDCGCGT_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)", -SDCGLHM,SDCGLHM_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,Language(s) spoken at home, -SDCGLHM,SDCGLHM_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Language(s) spoken at home,Language(s) spoken at home, -SDCGLHM,SDCGLHM_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Language(s) spoken at home,Language(s) spoken at home, -SDCGLHM,SDCGLHM_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Language(s) spoken at home,Language(s) spoken at home, -SDCGLHM,SDCGLHM_cat4_NA::a,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Language(s) spoken at home,Language(s) spoken at home, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Language(s) spoken at home,Language(s) spoken at home, -SDCGLHM,SDCGLHM_cat4_NA::b,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",cat,NA::b,4,missing,missing,N/A,else,else,Language(s) spoken at home,Language(s) spoken at home, -SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,Languages - can converse in, -SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,Languages - can converse in, -SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Languages - can converse in,Languages - can converse in, -SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Languages - can converse in,Languages - can converse in, -SDCGLNG,SDCGLNG_cat4_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Languages - can converse in,Languages - can converse in, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Languages - can converse in,Languages - can converse in, -SDCGLNG,SDCGLNG_cat4_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,Languages - can converse in, -SDCGRES,SDCGRES_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,1,2,0 to 9 years,0 to 9 years,N/A,1,0 to 9 years,Length in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,2,2,10 years or more,10 years or more,N/A,2,10 years or more,Length in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Length in Canada,"Length/time in Canada since imm. (D, G)", -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Length in Canada,"Length/time in Canada since imm. (D, G)","CCHS 2001 missing don't know (7), refusal (8)" -SDCGRES,SDCGRES_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",cat,NA::b,2,missing,missing,N/A,else,else,Length in Canada,"Length/time in Canada since imm. (D, G)", -SLP_02,SLP_02_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,1,5,None of the time,None of the time,N/A,1,None of the time,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02,SLP_02_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02,SLP_02_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02,SLP_02_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02,SLP_02_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,5,5,All the time,All the time,N/A,5,All the time,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02,SLP_02_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02,SLP_02_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, [SLP_02]",cat,NA::b,5,missing,missing,N/A,else,else,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02_A,SLP_02_A_cat3_1,cat,cchs2001_p,[GENA_04],cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?,CCHS 2001 has different categories from other cycles -SLP_02_A,SLP_02_A_cat3_2,cat,cchs2001_p,[GENA_04],cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02_A,SLP_02_A_cat3_3,cat,cchs2001_p,[GENA_04],cat,3,3,Never,Never,N/A,3,Never,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02_A,SLP_02_A_cat3_NA::a,cat,cchs2001_p,[GENA_04],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_02_A,SLP_02_A_cat3_NA::b,cat,cchs2001_p,[GENA_04],cat,NA::b,3,missing,missing,N/A,else,else,Freq. - trouble sleeping,How often do you have trouble going to sleep or staying asleep?, -SLP_03,SLP_03_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,1,5,None of the time,None of the time,N/A,1,None of the time,Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03,SLP_03_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03,SLP_03_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03,SLP_03_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03,SLP_03_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,5,5,All the time,All the time,N/A,5,All the time,Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03,SLP_03_cat3_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03,SLP_03_cat3_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, [SLP_03]",cat,NA::b,3,missing,missing,N/A,else,else,Frequency - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03_A,SLP_03_A_cat3_1,cat,cchs2001_p,[GENA_05],cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Freq. - find sleep refreshing,How often do you find your sleep refreshing?,CCHS 2001 has different categories from other cycles -SLP_03_A,SLP_03_A_cat3_2,cat,cchs2001_p,[GENA_05],cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Freq. - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03_A,SLP_03_A_cat3_3,cat,cchs2001_p,[GENA_05],cat,3,3,Never,Never,N/A,3,Never,Freq. - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03_A,SLP_03_A_cat3_NA::a,cat,cchs2001_p,[GENA_05],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Freq. - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,cchs2001_p,[GENA_05],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Freq. - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_03_A,SLP_03_A_cat3_NA::b,cat,cchs2001_p,[GENA_05],cat,NA::b,3,missing,missing,N/A,else,else,Freq. - find sleep refreshing,How often do you find your sleep refreshing?, -SLP_04,SLP_04_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,1,5,None of the time,None of the time,N/A,1,None of the time,Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04,SLP_04_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04,SLP_04_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04,SLP_04_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04,SLP_04_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,5,5,All the time,All the time,N/A,5,All the time,Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04,SLP_04_cat5_NA::a,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04,SLP_04_cat5_NA::b,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, [SLP_04]",cat,NA::b,5,missing,missing,N/A,else,else,Frequency - difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04_A,SLP_04_A_cat3_1,cat,cchs2001_p,[GENA_06],cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Freq. - find it difficult to stay awake,How often do you find it difficult to stay awake when you want to?,CCHS 2001 has different categories from other cycles -SLP_04_A,SLP_04_A_cat3_2,cat,cchs2001_p,[GENA_06],cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Freq. - find it difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04_A,SLP_04_A_cat3_3,cat,cchs2001_p,[GENA_06],cat,3,3,Never,Never,N/A,3,Never,Freq. - find it difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04_A,SLP_04_A_cat3_NA::a,cat,cchs2001_p,[GENA_06],cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Freq. - find it difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Freq. - find it difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLP_04_A,SLP_04_A_cat3_NA::b,cat,cchs2001_p,[GENA_06],cat,NA::b,3,missing,missing,N/A,else,else,Freq. - find it difficult to stay awake,How often do you find it difficult to stay awake when you want to?, -SLPG01,SLPG01_cat11_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,1,11,<3 hours,<3 hours,Hours,1,<3 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?,CCHS 2011-2012 onwards omitted 2-<3 hours category -SLPG01,SLPG01_cat11_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_5,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_6,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_7,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_8,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_9,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_10,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_11,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_NA::a,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01,SLPG01_cat11_NA::b,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,11,missing,missing,Hours,else,else,Number of hours spent sleeping per night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_1,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,1,12,<2 hours,<2 hours,Hours,1,<2 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_2,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,2,12,2-<3 hours,2-<3 hours,Hours,2,2-<3 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_3,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,3,12,3-<4 hours,3-<4 hours,Hours,3,3-<4 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_4,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,4,12,4-<5 hours,4-<5 hours,Hours,4,4-<5 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_5,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,5,12,5-<6 hours,5-<6 hours,Hours,5,5-<6 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_6,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,6,12,6-<7 hours,6-<7 hours,Hours,6,6-<7 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_7,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,7,12,7-<8 hours,7-<8 hours,Hours,7,7-<8 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_8,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,8,12,8-<9 hours,8-<9 hours,Hours,8,8-<9 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_9,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,9,12,9-<10 hours,9-<10 hours,Hours,9,9-<10 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_10,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,10,12,10-<11 hours,10-<11 hours,Hours,10,10-<11 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_11,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,11,12,11-<12 hours,11-<12 hours,Hours,11,11-<12 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_12,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,12,12,>= 12 hours,>= 12 hours,Hours,12,>= 12 hours,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_NA::a,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::a,12,not applicable,not applicable,Hours,96,not applicable,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,12,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_A,SLPG01_A_cat12_NA::b,cat,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,12,missing,missing,Hours,else,else,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,1,N/A,Hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,2.5,N/A,Hours,convereted hours (2-<3 hours),Hours,2,convereted hours (2-<3 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,3.5,N/A,Hours,converted hours (3-<4 hours),Hours,3,converted hours (3-<4 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,4.5,N/A,Hours,converted hours (4-<5 hours),Hours,4,converted hours (4-<5 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,5.5,N/A,Hours,converted hours (5-<6 hours),Hours,5,converted hours (5-<6 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,6.5,N/A,Hours,converted hours (6-<7 hours),Hours,6,converted hours (6-<7 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,7.5,N/A,Hours,converted hours (7-<8 hours),Hours,7,converted hours (7-<8 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,8.5,N/A,Hours,converted hours (8-<9 hours),Hours,8,converted hours (8-<9 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,9.5,N/A,Hours,converted hours (9-<10 hours),Hours,9,converted hours (9-<10 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,10.5,N/A,Hours,converted hours (10-<11 hours),Hours,10,converted hours (10-<11 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,11.5,N/A,Hours,converted hours (11-<12 hours),Hours,11,converted hours (11-<12 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,13,N/A,Hours,converted hours (>= 12 hours),Hours,12,converted hours (>= 12 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p","cchs2001_p::GENA_03, cchs2007_2008_p::SLP_01",cat,NA::b,N/A,missing,missing,Hours,else,else,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,1.5,11,<3 hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,3.5,11,3-<4 hours,converted hours (3-<4 hours),Hours,2,converted hours (3-<4 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,4.5,11,4-<5 hours,converted hours (4-<5 hours),Hours,3,converted hours (4-<5 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,5.5,11,5-<6 hours,converted hours (5-<6 hours),Hours,4,converted hours (5-<6 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,6.5,11,6-<7 hours,converted hours (6-<7 hours),Hours,5,converted hours (6-<7 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,7.5,11,7-<8 hours,converted hours (7-<8 hours),Hours,6,converted hours (7-<8 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,8.5,11,8-<9 hours,converted hours (8-<9 hours),Hours,7,converted hours (8-<9 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,9.5,11,9-<10 hours,converted hours (9-<10 hours),Hours,8,converted hours (9-<10 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,10.5,11,10-<11 hours,converted hours (10-<11 hours),Hours,9,converted hours (10-<11 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,11.5,11,11-<12 hours,converted hours (11-<12 hours),Hours,10,converted hours (11-<12 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,13,11,>= 12 hours,converted hours (>= 12 hours),Hours,11,converted hours (>= 12 hours),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",cat,NA::b,11,missing,missing,Hours,else,else,No./hours spent sleeping each night,How long do you usually spend sleeping each night?, -SMK_01A,SMK_01A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,1,2,yes,yes,N/A,1,Yes,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,2,2,no,no,N/A,2,No,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),s100,"In lifetime, smoked 100 or more cigarettes", -SMK_01A,SMK_01A_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, [SMK_01A]",cat,NA::b,2,missing,missing,N/A,else,else,s100,"In lifetime, smoked 100 or more cigarettes", -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,copy,N/A,Cigarettes/day - occasional,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - occasional smoker,cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B]",cont,NA::b,N/A,missing,missing,cigarettes,else,else,cigdayo,# of cigarettes smoked daily - occasional smoker, -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,copy,N/A,# days smoked at least 1 cigarette,# days smoked at least 1 cigarette,days,"[0,31]",# days smoked at least 1 cigarette,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C]",cont,NA::b,N/A,missing,missing,days,else,else,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?", -SMK_05D,SMK_05D_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,1,2,yes,Occasional smoker who previously smoked daily,N/A,1,Yes,evd,Ever smoked cigarettes daily - occasional smoker,2015 onward looks at occasional/former smokers -SMK_05D,SMK_05D_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,2,2,no,Occasional smoker never daily,N/A,2,No,evd,Ever smoked cigarettes daily - occasional smoker, -SMK_05D,SMK_05D_cat2_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,evd,Ever smoked cigarettes daily - occasional smoker, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),evd,Ever smoked cigarettes daily - occasional smoker, -SMK_05D,SMK_05D_cat2_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",cat,NA::b,2,missing,missing,N/A,else,else,evd,Ever smoked cigarettes daily - occasional smoker, -SMK_06A_A,SMK_06A_A_cat4_1,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_A,SMK_06A_A_cat4_2,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_A,SMK_06A_A_cat4_3,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_A,SMK_06A_A_cat4_4,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_A,SMK_06A_A_cat4_NA::a,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_A,SMK_06A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,4,missing,missing,years,else,else,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_B,SMK_06A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,1,4,<1 year,Less than one year ago,years,1,Less than one year,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_B,SMK_06A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,2,4,1 to 2 years,1 year to less than 2 years ago,years,2,1 year to < 2 years,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_B,SMK_06A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,3,4,2 to 3 years,2 years to less than 3 years ago,years,3,2 years to < 3 years,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_B,SMK_06A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,4,4,>= 3 years,3 or more years ago,years,4,3 or more years,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_B,SMK_06A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_B,SMK_06A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,4,missing,missing,years,else,else,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,1.5,N/A,stpn,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,4,N/A,stpn,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,6,N/A,stpn,converted age - More than 5 years ago,years,4,More than 5 years ago,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_06A,cat,NA::b,N/A,missing,missing,years,else,else,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,0.5,N/A,stpn,converted age - Less than one year ago,years,1,Less than one year,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,1.5,N/A,stpn,converted age - 1 year to less than 2 years ago,years,2,1 year to < 2 years,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,2.5,N/A,stpn,converted age - 2 years to less than 3 years ago,years,3,2 years to < 3 years,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,4,N/A,stpn,converted age - 3 or more years ago,years,4,3 or more years,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",cat,NA::b,N/A,missing,missing,years,else,else,Stopped smoking - when (was never a daily smoker),"When did you stop smoking? Was it: (less than one year ago, 1 year to less than 2 years ago, 2 years to less than 3 years ago, 3 or more years ago)?", -SMK_09A_A,SMK_09A_A_cat4_1,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_A,SMK_09A_A_cat4_2,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_A,SMK_09A_A_cat4_3,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_A,SMK_09A_A_cat4_4,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_A,SMK_09A_A_cat4_NA::a,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_A,SMK_09A_A_cat4_NA::b,cat,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_B,SMK_09A_B_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,1,4,<1 year,Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_B,SMK_09A_B_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,2,4,1 to <2 years,1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_B,SMK_09A_B_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,3,4,2 to <3 years,2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_B,SMK_09A_B_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,4,4,>= 3 years,3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_B,SMK_09A_B_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::a,4,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_B,SMK_09A_B_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,4,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than one year ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,1.5,N/A,stpo,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,4,N/A,stpo,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,6,N/A,stpo,converted age - More than 5 years ago,years,4,More than 5 years ago,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,cchs2001_p,cchs2001_p::SMKA_09A,cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,0.5,N/A,stpo,converted age - Less than one year ago,years,1,Less than 1 year,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,1.5,N/A,stpo,converted age - 1 year to less than 2 years ago,years,2,1 to <2 years,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,2.5,N/A,stpo,converted age - 2 years to less than 3 years ago,years,3,2 to <3 years,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,4,N/A,stpo,converted age - 3 or more years ago,years,4,3 years or more,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",cat,NA::b,N/A,missing,missing,years,else,else,stpd,When did you stop smoking daily - former daily smoker - (G), -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,copy,N/A,Cigarettes/day - daily,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - daily smoker,# of cigarettes smoked daily - daily smoker,How many cigarettes did you usually smoke each day?, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,# of cigarettes smoked daily - daily smoker,How many cigarettes did you usually smoke each day?, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),# of cigarettes smoked daily - daily smoker,How many cigarettes did you usually smoke each day?, -SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",cont,NA::b,N/A,missing,missing,cigarettes,else,else,# of cigarettes smoked daily - daily smoker,How many cigarettes did you usually smoke each day?, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, [SMK_208]",cont,copy,N/A,Cigarettes/day - former daily,Cigarettes/day - former daily,cigarettes,"[1,80]",# of cigarettes smoke each day - former daily,# of cigarettes smoked daily - former daily smoker,How many cigarettes did you usually smoke each day?, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, [SMK_208]",cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,# of cigarettes smoked daily - former daily smoker,How many cigarettes did you usually smoke each day?, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, [SMK_208]",cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),# of cigarettes smoked daily - former daily smoker,How many cigarettes did you usually smoke each day?, -SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, [SMK_208]",cont,NA::b,N/A,missing,missing,cigarettes,else,else,# of cigarettes smoked daily - former daily smoker,How many cigarettes did you usually smoke each day?, -SMKDSTY_A,SMKDSTY_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,1,6,Daily,Daily smoker,N/A,1,Daily,Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,2,6,Occasional (former daily),Former daily current occasional smoker,N/A,2,Occasional,Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,3,6,Always occasional,Never daily current occasional smoker,N/A,3,Always occasional,Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,4,6,Former daily,Former daily current nonsmoker,N/A,4,Former daily,Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,5,Former occasional,Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoke status,Type of smoker - (D), -SMKDSTY_A,SMKDSTY_A_cat6_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,6,missing,missing,N/A,else,else,Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,1,3,Current,Current smoker,N/A,"[1,3]",Daily (1); Occasional (2); Always occasional (3),Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,2,3,Former,Former smoker,N/A,"[4,5]",Former daily(4); Former occasional (5),Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,3,missing,missing,N/A,else,else,Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"ccsh2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,1,3,Current,Current smoker,N/A,"[1,2]",Daily (1); Occasional (2),Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"ccsh2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,2,3,Former,Former smoker,N/A,"[3,5]",Former daily (3); Former occasional (4); Experimental (5),Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"ccsh2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_NA::a,cat,"ccsh2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"ccsh2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoke status,Type of smoker - (D), -SMKDSTY_cat3,SMKDSTY_cat3_NA::b,cat,"ccsh2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,3,missing,missing,N/A,else,else,Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,1,6,Daily,Current daily smoker,N/A,1,Daily,Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,2,6,Occasional,Current occasional smoker,N/A,2,Occasional,Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,3,6,Former daily,Former daily smoker (non-smoker now),N/A,3,Former daily,Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,4,6,Former occasional,Former occasional (non-smoker now),N/A,4,Former occasional,Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,5,6,Experimental,"Experimental smoker (at least 1 cig, non-smoker now)",N/A,5,Experimental,Smoke status,Type of smoker - (D),"2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)" -SMKDSTY_B,SMKDSTY_B_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoke status,Type of smoker - (D), -SMKDSTY_B,SMKDSTY_B_cat6_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,6,missing,missing,N/A,else,else,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,2,5,Occasional,Current occasional smoker,N/A,"[2,3]",Occasional,Smoke status,Type of smoker - (D),"SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category" -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,3,5,Former daily,Former daily smoker,N/A,4,Former daily,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,4,5,Former occasional,Former occasional,N/A,5,Former occasional,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",cat,NA::b,5,missing,missing,N/A,else,else,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,2,5,Occasional,Current occasional smoker,N/A,2,Occasional,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,3,5,Former daily,Former daily smoker,N/A,3,Former daily,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,4,5,Former occasional,Former occasional,N/A,"[4,5]",Former occasional,Smoke status,Type of smoker - (D),"SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category" -SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoke status,Type of smoker - (D), -SMKDSTY_cat5,SMKDSTY_cat5_NA::b,cat,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",cat,NA::b,5,missing,missing,N/A,else,else,Smoke status,Type of smoker - (D), -SMKG01C_A,SMKG01C_A_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,3,10,15 To 19 Years,age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first whole cigarette - (G), -SMKG01C_A,SMKG01C_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,10,missing,missing,years,else,else,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat10_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat10_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first whole cigarette - (G), -SMKG01C_B,SMKG01C_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,11,missing,missing,years,else,else,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,17,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,10,50 Years or more,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,8,N/A,agec1,converted categorical age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,13,N/A,agec1,converted categorical age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,16,N/A,agec1,converted categorical age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,18.5,N/A,agec1,converted categorical age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,22,N/A,agec1,converted categorical age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,27,N/A,agec1,converted categorical age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,32,N/A,agec1,converted categorical age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,37,N/A,agec1,converted categorical age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,42,N/A,agec1,converted categorical age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,47,N/A,agec1,converted categorical age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,55,N/A,agec1,converted categorical age smoked first whole cigarette (50 plus),years,11,50 Years or more,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agec1,Age smoked first whole cigarette - (G), -SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, [SMKG01C]",cat,NA::b,N/A,missing,missing,years,else,else,agec1,Age smoked first whole cigarette - (G), -SMKG06C,SMKG06C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpny,Years since stopped smoking daily - never daily, -SMKG06C,SMKG06C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",cat,NA::b,3,missing,missing,years,else,else,stpny,Years since stopped smoking daily - never daily, -SMKG09C,SMKG09C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,3,3,11+ years,11 or more years,years,3,11 or more years,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,NA::a,3,not applicable,not applicable,years,6,not applicable,stpdy,Years since stopped smoking daily - former daily, -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),stpdy,Years since stopped smoking daily - former daily,Don't know (7) and refusal (8) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG09C,SMKG09C_cat3_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, [SMKG09C]",cat,NA::b,3,missing,missing,years,else,else,stpdy,Years since stopped smoking daily - former daily, -SMKG203_A,SMKG203_A_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_A,SMKG203_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,10,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::a,11,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G),Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG203_B,SMKG203_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,11,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),agecigd,Age started to smoke daily - daily smoker (G), -SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",cat,NA::b,N/A,missing,missing,years,else,else,agecigd,Age started to smoke daily - daily smoker (G), -SMKG207_A,SMKG207_A_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,3,10,15 to 19 Years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_NA::a,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::a,10,not applicable,not applicable,years,96,not applicable,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_A,SMKG207_A_cat10_NA::b,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,10,missing,missing,years,else,else,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,1,5 To 11 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,2,12 To 14 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,3,15 To 17 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,4,18 To 19 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,5,20 To 24 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,6,25 To 29 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,7,30 To 34 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,8,35 To 39 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,9,40 To 44 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,10,45 To 49 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,11,50 Years or more,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_NA::a,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_B,SMKG207_B_cat11_NA::b,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,11,missing,missing,years,else,else,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,17,N/A,agecigd,converted categorical age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,55,N/A,agecigd,converted categorical age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",cat,NA::b,N/A,missing,missing,years,else,else,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,8,N/A,agecigd,converted categorical age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,13,N/A,agecigd,converted categorical age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,16,N/A,agecigd,converted categorical age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,18.5,N/A,agecigd,converted categorical age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,22,N/A,agecigd,converted categorical age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,27,N/A,agecigd,converted categorical age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,32,N/A,agecigd,converted categorical age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,37,N/A,agecigd,converted categorical age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,42,N/A,agecigd,converted categorical age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,47,N/A,agecigd,converted categorical age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,55,N/A,agecigd,converted categorical age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?,Missing 2001 Data -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",cat,NA::b,N/A,missing,missing,years,else,else,Age started to smoke daily - former daily (G),At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_7,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_8,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_9,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_10,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_11,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,11,11,50 Years or more,age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG040,SMKG040_cat11_NA::a,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,11,missing,missing,years,else,else,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",N/A,Func::SMKG040_fun,N/A,N/A,N/A,years,N/A,N/A,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",N/A,NA::b,N/A,missing,missing,years,N/A,N/A,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,8,N/A,agecigdfd,converted categorical age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,13,N/A,agecigdfd,converted categorical age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,16,N/A,agecigdfd,converted categorical age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,18.5,N/A,agecigdfd,converted categorical age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,22,N/A,agecigdfd,converted categorical age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,27,N/A,agecigdfd,converted categorical age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,32,N/A,agecigdfd,converted categorical age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,37,N/A,agecigdfd,converted categorical age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,42,N/A,agecigdfd,converted categorical age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,47,N/A,agecigdfd,converted categorical age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,55,N/A,agecigdfd,converted categorical age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?,Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018 -SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],cat,NA::b,N/A,missing,missing,years,else,else,Age started to smoke daily - daily/former daily,At what age did you begin to smoke cigarettes daily?, -smoke_simple,smoke_simple_catN/A_Func::smoke_simple_fun,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,Func::smoke_simple_fun,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -smoke_simple,smoke_simple_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,1,4,Non-smoker (never smoked),Non-smoker (never smoked),N/A,N/A,N/A,N/A,N/A, -smoke_simple,smoke_simple_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,2,4,Current smoker (daily and occasional),Current smoker (daily and occasional),N/A,N/A,N/A,N/A,N/A, -smoke_simple,smoke_simple_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,3,4,Former daily smoker quit less than 5 years or former occasional smoker ,Former daily smoker quit less than 5 years or former occasional smoker ,N/A,N/A,N/A,N/A,N/A, -smoke_simple,smoke_simple_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,4,4,Former daily smoker quit >5 years,Former daily smoker quit >5 years,N/A,N/A,N/A,N/A,N/A, -smoke_simple,smoke_simple_cat4_NA::a,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,NA::a,4,not applicable,not applicable,N/A,N/A,N/A,N/A,N/A, -smoke_simple,smoke_simple_cat4_NA::b,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",N/A,NA::b,4,missing,missing,N/A,N/A,N/A,N/A,N/A, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",N/A,Func::time_quit_smoking_fun,N/A,N/A,N/A,Years,N/A,N/A,Time since quit,Time since quit smoking,Variable derived from various harmonized smoking variables -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",N/A,NA::a,N/A,not applicable,not applicable,Years,N/A,N/A,Time since quit,Time since quit smoking, -time_quit_smoking,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMK_09A_B, SMKG09C]",N/A,NA::b,N/A,missing,missing,Years,N/A,N/A,Time since quit,Time since quit smoking, -WTS_M,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]",N/A,copy,N/A,N/A,N/A,N/A,"[1.07,26332.62]",N/A,Weights,Weights - Master, +variable,dummyVariable,typeEnd,databaseStart,variableStart,ICES.confirmation,typeStart,recEnd,numValidCat,catLabel,catLabelLong,units,recStart,catStartLabel,variableStartShortLabel,variableStartLabel,notes,version,lastUpdated,status,reviewNotes,versionNotes,review +active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","DerivedVar::[PAC_4A_cont, PAC_4B_cont]",NA,N/A,Func::active_transport1_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,NA,3.0.0,2026-01-18,active,NA,NA,NA +active_transport,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont]",NA,N/A,Func::active_transport2_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,NA,3.0.0,2026-01-18,active,NA,NA,NA +active_transport,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[PAYDVTTR, PAADVTRV]",NA,N/A,Func::active_transport3_fun,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,NA,3.0.0,2026-01-18,active,NA,NA,NA +active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::[PAC_4A_cont, PAC_4B_cont], cchs2003_p::[PAC_4A_cont, PAC_4B_cont], cchs2005_p::[PAC_4A_cont, PAC_4B_cont], cchs2007_2008_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2009_2010_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2010_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2011_2012_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2012_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2013_2014_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2014_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2015_2016_p::[PAYDVTTR, PAADVTRV], cchs2017_2018_p::[PAYDVTTR, PAADVTRV], cchs2019_2020_p::[PAYDVTTR, PAADVTRV], cchs2001_m::[PAC_4A_cont, PAC_4B_cont], cchs2003_m::[PAC_4A_cont, PAC_4B_cont], cchs2005_m::[PAC_4A_cont, PAC_4B_cont], cchs2007_2008_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2009_2010_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2009_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2010_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2011_2012_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2012_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2013_2014_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2015_2016_m::[PAYDVTTR, PAADVTRV], cchs2017_2018_m::[PAYDVTTR, PAADVTRV], cchs2019_2020_m::[PAYDVTTR, PAADVTRV]",NA,N/A,NA::a,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,NA,3.0.0,2026-01-18,active,NA,NA,NA +active_transport,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::[PAC_4A_cont, PAC_4B_cont], cchs2003_p::[PAC_4A_cont, PAC_4B_cont], cchs2005_p::[PAC_4A_cont, PAC_4B_cont], cchs2007_2008_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2009_2010_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2010_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2011_2012_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2012_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2013_2014_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2014_p::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2015_2016_p::[PAYDVTTR, PAADVTRV], cchs2017_2018_p::[PAYDVTTR, PAADVTRV], cchs2019_2020_p::[PAYDVTTR, PAADVTRV], cchs2001_m::[PAC_4A_cont, PAC_4B_cont], cchs2003_m::[PAC_4A_cont, PAC_4B_cont], cchs2005_m::[PAC_4A_cont, PAC_4B_cont], cchs2007_2008_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2009_2010_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2009_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2010_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2011_2012_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2012_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2013_2014_m::[PAC_7, PAC_7A, PAC_7B_cont, PAC_8, PAC_8A, PAC_8B_cont], cchs2015_2016_m::[PAYDVTTR, PAADVTRV], cchs2017_2018_m::[PAYDVTTR, PAADVTRV], cchs2019_2020_m::[PAYDVTTR, PAADVTRV]",NA,N/A,NA::b,N/A,N/A,N/A,mins,N/A,Daily active transportation,Daily active transportation,Time spent - active transportation daily,NA,3.0.0,2026-01-18,active,NA,NA,NA +ADL_01,ADL_01_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2001_m::RACA_6A, cchs2003_m::RACC_6A, cchs2005_m::RACE_6A, [ADL_01]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_01,ADL_01_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2001_m::RACA_6A, cchs2003_m::RACC_6A, cchs2005_m::RACE_6A, [ADL_01]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_01,ADL_01_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2001_m::RACA_6A, cchs2003_m::RACC_6A, cchs2005_m::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_01,ADL_01_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2001_m::RACA_6A, cchs2003_m::RACC_6A, cchs2005_m::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_01,ADL_01_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, cchs2001_m::RACA_6A, cchs2003_m::RACC_6A, cchs2005_m::RACE_6A, [ADL_01]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_01,ADL_01_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_01,ADL_01_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,2,2,No,No,N/A,"[1,2]",No,Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_01,ADL_01_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_01,ADL_01_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_01,ADL_01_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,NA::b,2,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_01_cat4,ADL_01_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help preparing meals,Needs help - preparing meals,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with preparing meals?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",2.1.0,2026-03-27,active,NA,NA,NA +ADL_01_cat4,ADL_01_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help preparing meals,Needs help - preparing meals,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_01_cat4,ADL_01_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help preparing meals,Needs help - preparing meals,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_01_cat4,ADL_01_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help preparing meals,Needs help - preparing meals,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_01_cat4,ADL_01_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help preparing meals,Needs help - preparing meals,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_01_cat4,ADL_01_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help preparing meals,Needs help - preparing meals,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_01_cat4,ADL_01_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_005],NA,cat,NA::b,4,missing,missing,N/A,else,else,Help preparing meals,Needs help - preparing meals,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_02,ADL_02_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_m::RACA_6B, cchs2003_m::RACC_6B1, cchs2005_m::RACE_6B1, cchs2007_2008_m::RAC_6B1, [ADL_02]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help appointments/errands,Needs help - getting to appointments/errands,"In the 2001 CCHS, respondents were asked, ""Because of any condition or health problem, do you need the help of another person in shopping for groceries or other necessities?""",3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_02,ADL_02_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_m::RACA_6B, cchs2003_m::RACC_6B1, cchs2005_m::RACE_6B1, cchs2007_2008_m::RAC_6B1, [ADL_02]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help appointments/errands,Needs help - getting to appointments/errands,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_02,ADL_02_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_m::RACA_6B, cchs2003_m::RACC_6B1, cchs2005_m::RACE_6B1, cchs2007_2008_m::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_02,ADL_02_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_m::RACA_6B, cchs2003_m::RACC_6B1, cchs2005_m::RACE_6B1, cchs2007_2008_m::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_02,ADL_02_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, cchs2001_m::RACA_6B, cchs2003_m::RACC_6B1, cchs2005_m::RACE_6B1, cchs2007_2008_m::RAC_6B1, [ADL_02]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_02,ADL_02_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_02,ADL_02_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,2,2,No,No,N/A,"[1,2]",No,Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_02,ADL_02_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_02,ADL_02_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_02,ADL_02_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,NA::b,2,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_02_cat4,ADL_02_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help appointments/errands,Needs help - getting to appointments/errands,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with running errands such as shopping for groceries?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",2.1.0,2026-03-27,active,NA,NA,NA +ADL_02_cat4,ADL_02_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help appointments/errands,Needs help - getting to appointments/errands,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_02_cat4,ADL_02_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help appointments/errands,Needs help - getting to appointments/errands,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_02_cat4,ADL_02_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help appointments/errands,Needs help - getting to appointments/errands,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_02_cat4,ADL_02_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help appointments/errands,Needs help - getting to appointments/errands,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_02_cat4,ADL_02_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help appointments/errands,Needs help - getting to appointments/errands,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_02_cat4,ADL_02_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_010],NA,cat,NA::b,4,missing,missing,N/A,else,else,Help appointments/errands,Needs help - getting to appointments/errands,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_03,ADL_03_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_m::RACA_6C, cchs2003_m::RACC_6C, cchs2005_m::RACE_6C, cchs2007_2008_m::RAC_6C, [ADL_03]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_03,ADL_03_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_m::RACA_6C, cchs2003_m::RACC_6C, cchs2005_m::RACE_6C, cchs2007_2008_m::RAC_6C, [ADL_03]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_03,ADL_03_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_m::RACA_6C, cchs2003_m::RACC_6C, cchs2005_m::RACE_6C, cchs2007_2008_m::RAC_6C, [ADL_03]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_03,ADL_03_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_m::RACA_6C, cchs2003_m::RACC_6C, cchs2005_m::RACE_6C, cchs2007_2008_m::RAC_6C, [ADL_03]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_03,ADL_03_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, cchs2001_m::RACA_6C, cchs2003_m::RACC_6C, cchs2005_m::RACE_6C, cchs2007_2008_m::RAC_6C, [ADL_03]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_03,ADL_03_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_03,ADL_03_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,2,2,No,No,N/A,"[1,2]",No,Help housework,Needs help - doing housework,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_03,ADL_03_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_03,ADL_03_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_03,ADL_03_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,NA::b,2,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_03_cat4,ADL_03_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help housework,Needs help - doing housework,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with doing everyday housework?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",2.1.0,2026-03-27,active,NA,NA,NA +ADL_03_cat4,ADL_03_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help housework,Needs help - doing housework,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_03_cat4,ADL_03_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help housework,Needs help - doing housework,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_03_cat4,ADL_03_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help housework,Needs help - doing housework,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_03_cat4,ADL_03_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help housework,Needs help - doing housework,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_03_cat4,ADL_03_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help housework,Needs help - doing housework,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_03_cat4,ADL_03_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_015],NA,cat,NA::b,4,missing,missing,N/A,else,else,Help housework,Needs help - doing housework,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_04,ADL_04_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_m::RACA_6E, cchs2003_m::RACC_6E, cchs2005_m::RACE_6E, cchs2007_2008_m::RAC_6E, [ADL_04]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_04,ADL_04_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_m::RACA_6E, cchs2003_m::RACC_6E, cchs2005_m::RACE_6E, cchs2007_2008_m::RAC_6E, [ADL_04]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_04,ADL_04_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_m::RACA_6E, cchs2003_m::RACC_6E, cchs2005_m::RACE_6E, cchs2007_2008_m::RAC_6E, [ADL_04]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_04,ADL_04_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_m::RACA_6E, cchs2003_m::RACC_6E, cchs2005_m::RACE_6E, cchs2007_2008_m::RAC_6E, [ADL_04]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_04,ADL_04_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, cchs2001_m::RACA_6E, cchs2003_m::RACC_6E, cchs2005_m::RACE_6E, cchs2007_2008_m::RAC_6E, [ADL_04]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_04,ADL_04_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_04,ADL_04_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,2,2,No,No,N/A,"[1,2]",No,Help personal care,Needs help - personal care,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_04,ADL_04_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_04,ADL_04_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_04,ADL_04_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,NA::b,2,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_04_cat4,ADL_04_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal care,Needs help - personal care,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with personal care such as bathing, dressing, eating or taking medication?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",2.1.0,2026-03-27,active,NA,NA,NA +ADL_04_cat4,ADL_04_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal care,Needs help - personal care,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_04_cat4,ADL_04_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal care,Needs help - personal care,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_04_cat4,ADL_04_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal care,Needs help - personal care,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_04_cat4,ADL_04_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal care,Needs help - personal care,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_04_cat4,ADL_04_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal care,Needs help - personal care,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_04_cat4,ADL_04_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_020],NA,cat,NA::b,4,missing,missing,N/A,else,else,Help personal care,Needs help - personal care,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_05,ADL_05_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_m::RACA_6F, cchs2003_m::RACC_6F, cchs2005_m::RACE_6F, cchs2007_2008_m::RAC_6F, [ADL_05]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_05,ADL_05_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_m::RACA_6F, cchs2003_m::RACC_6F, cchs2005_m::RACE_6F, cchs2007_2008_m::RAC_6F, [ADL_05]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_05,ADL_05_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_m::RACA_6F, cchs2003_m::RACC_6F, cchs2005_m::RACE_6F, cchs2007_2008_m::RAC_6F, [ADL_05]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_05,ADL_05_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_m::RACA_6F, cchs2003_m::RACC_6F, cchs2005_m::RACE_6F, cchs2007_2008_m::RAC_6F, [ADL_05]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_05,ADL_05_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, cchs2001_m::RACA_6F, cchs2003_m::RACC_6F, cchs2005_m::RACE_6F, cchs2007_2008_m::RAC_6F, [ADL_05]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_05,ADL_05_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_05,ADL_05_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,2,2,No,No,N/A,"[1,2]",No,Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_05,ADL_05_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_05,ADL_05_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_05,ADL_05_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,NA::b,2,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_05_cat4,ADL_05_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help move inside house,Needs help - moving about inside house,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with moving about inside the house?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",2.1.0,2026-03-27,active,NA,NA,NA +ADL_05_cat4,ADL_05_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help move inside house,Needs help - moving about inside house,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_05_cat4,ADL_05_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help move inside house,Needs help - moving about inside house,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_05_cat4,ADL_05_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help move inside house,Needs help - moving about inside house,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_05_cat4,ADL_05_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help move inside house,Needs help - moving about inside house,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_05_cat4,ADL_05_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help move inside house,Needs help - moving about inside house,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_05_cat4,ADL_05_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_025],NA,cat,NA::b,4,missing,missing,N/A,else,else,Help move inside house,Needs help - moving about inside house,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_06,ADL_06_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_m::RACC_6G, cchs2005_m::RACE_6G, cchs2007_2008_m::RAC_6G, [ADL_06]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_06,ADL_06_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_m::RACC_6G, cchs2005_m::RACE_6G, cchs2007_2008_m::RAC_6G, [ADL_06]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_06,ADL_06_cat2_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_m::RACC_6G, cchs2005_m::RACE_6G, cchs2007_2008_m::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_06,ADL_06_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_m::RACC_6G, cchs2005_m::RACE_6G, cchs2007_2008_m::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_06,ADL_06_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::RACC_6G, cchs2005_p::RACE_6G, cchs2007_2008_p::RAC_6G, cchs2003_m::RACC_6G, cchs2005_m::RACE_6G, cchs2007_2008_m::RAC_6G, [ADL_06]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,Only available for 2003 onwards,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_06,ADL_06_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,1,2,Yes,Yes,N/A,"[3,4]",Yes,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_06,ADL_06_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,2,2,No,No,N/A,"[1,2]",No,Help personal finances,Needs help - looking after finances,"For 2015 onwards, question is changed from ""Because of condition, do you need the help of another person in X"" to ""Because of condition, do you have any difficulty with X?""; however, the answer categories indicate if they had the help of another person. 'Yes, difficulty, but can do it with the help of others' and 'Cannot do it all' are combined for 'Yes'. 'No, no difficulty' and 'Yes, difficulty, but do not require help of others' are combined for 'No'. In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",3.0.0,2026-03-27,active,NA,NA,NA +ADL_06,ADL_06_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_06,ADL_06_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_06,ADL_06_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,NA::b,2,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,NA,3.0.0,2026-03-27,active,NA,NA,NA +ADL_06_cat4,ADL_06_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,1,4,"Yes difficulty, need help","Yes difficulty, need help",N/A,3,"Yes difficulty, need help",Help personal finances,Needs help - looking after finances,"For 2015 onwards, question was reword to 'Because of any physical condition, mental condition or health problem, do you have any difficulty with looking after your personal finances such as making bank transactions or paying bills?' If they needed help from another person, it is indicated in the answer categories (Yes need help or Yes no help). In the universe, respondents must said yes to ""Activities of daily living"" before answering this question, therefore the sample size is small.",2.1.0,2026-03-27,active,NA,NA,NA +ADL_06_cat4,ADL_06_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,2,4,"Yes difficulty, no help","Yes difficulty, no help",N/A,2,"Yes difficulty, no help",Help personal finances,Needs help - looking after finances,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_06_cat4,ADL_06_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,3,4,No difficulty,No difficulty,N/A,1,No difficulty,Help personal finances,Needs help - looking after finances,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_06_cat4,ADL_06_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,4,4,Cannot do it at all,Cannot do it at all,N/A,4,Cannot do it at all,Help personal finances,Needs help - looking after finances,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_06_cat4,ADL_06_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Help personal finances,Needs help - looking after finances,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_06_cat4,ADL_06_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help personal finances,Needs help - looking after finances,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_06_cat4,ADL_06_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[ADL_030],NA,cat,NA::b,4,missing,missing,N/A,else,else,Help personal finances,Needs help - looking after finances,NA,2.1.0,2026-03-27,active,NA,NA,NA +ADL_07,ADL_07_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_m::RACA_6D, cchs2003_m::RACC_6D, cchs2005_m::RACE_6D",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Help heavy household chores,Needs help - heavy household chores,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_07,ADL_07_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_m::RACA_6D, cchs2003_m::RACC_6D, cchs2005_m::RACE_6D",ICES confirmed,cat,2,2,No,No,N/A,2,No,Help heavy household chores,Needs help - heavy household chores,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_07,ADL_07_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_m::RACA_6D, cchs2003_m::RACC_6D, cchs2005_m::RACE_6D",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Help heavy household chores,Needs help - heavy household chores,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_07,ADL_07_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_m::RACA_6D, cchs2003_m::RACC_6D, cchs2005_m::RACE_6D",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Help heavy household chores,Needs help - heavy household chores,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_07,ADL_07_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::RACA_6D, cchs2003_p::RACC_6D, cchs2005_p::RACE_6D, cchs2001_m::RACA_6D, cchs2003_m::RACC_6D, cchs2005_m::RACE_6D",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Help heavy household chores,Needs help - heavy household chores,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ADL_der,ADL_der_catN/A_Func::assess_adl,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,Func::assess_adl,N/A,N/A,N/A,N/A,N/A,N/A,Needs help with tasks,Needs help with at least one task - (derived),"Derived variable based on ADL_01, ADL_02, ADL_03, ADL_04, ADL_05",2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_der,ADL_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,1,2,Needs help with tasks,Needs help with tasks,N/A,N/A,Needs help with tasks,Needs help with tasks,Needs help with at least one task - (derived),NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_der,ADL_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,2,2,Does not need help with tasks,Does need help with tasks,N/A,N/A,Does need help with tasks,Needs help with tasks,Needs help with at least one task - (derived),NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_der,ADL_der_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,NA::a,2,not applicable,not applicable,N/A,N/A,Does need help with tasks,Needs help with tasks,Needs help with at least one task - (derived),NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_der,ADL_der_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,NA::b,2,missing,missing,N/A,N/A,Does need help with tasks,Needs help with tasks,Needs help with at least one task - (derived),NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_catN/A_Func::score_adl,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,Func::score_adl,N/A,N/A,N/A,N/A,N/A,N/A,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,"Derived variable based on ADL_01, ADL_02, ADL_03, ADL_04, ADL_05",2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,0,6,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,Needs help with 0 tasks,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,1,6,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,Needs help with at least 1 task,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,2,6,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,Needs help with at least 2 tasks,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,3,6,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,Needs help with at least 3 tasks,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,4,6,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,Needs help with at least 4 tasks,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,5,6,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,Needs help with at least 5 tasks,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_5,ADL_score_5_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",NA,N/A,NA::b,6,missing,missing,N/A,N/A,missing,ADL score,How many of the 5 tasks (ADL_01-05) does the person need help with?,NA,2.2.0,2026-03-27,active,NA,NA,No typeStart +ADL_score_6,ADL_score_6_catN/A_Func::score_adl_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,Func::score_adl_6,N/A,N/A,N/A,N/A,N/A,N/A,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,"Derived variable based on ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06",3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,0,7,Needs help with 0 tasks,Needs help with 0 tasks,N/A,N/A,Needs help with 0 tasks,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,1,7,Needs help with at least 1 task,Needs help with at least 1 task,N/A,N/A,Needs help with at least 1 task,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,2,7,Needs help with at least 2 tasks,Needs help with at least 2 tasks,N/A,N/A,Needs help with at least 2 tasks,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,3,7,Needs help with at least 3 tasks,Needs help with at least 3 tasks,N/A,N/A,Needs help with at least 3 tasks,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,4,7,Needs help with at least 4 tasks,Needs help with at least 4 tasks,N/A,N/A,Needs help with at least 4 tasks,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,5,7,Needs help with at least 5 tasks,Needs help with at least 5 tasks,N/A,N/A,Needs help with at least 5 tasks,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_7,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,6,7,Needs help with at least 6 tasks,Needs help with at least 6 tasks,N/A,N/A,Needs help with at least 6 tasks,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,NA::a,7,not applicable,not applicable,N/A,N/A,not applicable,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADL_score_6,ADL_score_6_cat7_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05, ADL_06]",ICES specifc,N/A,NA::b,7,missing,missing,N/A,N/A,missing,ADL score,How many of the 6 tasks (ADL_01-06) does the person need help with?,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,No typeStart +ADLF6R,ADLF6R_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, cchs2001_m::RACAF6, cchs2003_m::RACCF6R, cchs2005_m::RACEF6R, cchs2007_2008_m::RACF6R, [ADLF6R]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Needs help with tasks,Needs help with at least one task - (F),NA,2.2.0,2026-03-27,active,NA,NA,NA +ADLF6R,ADLF6R_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, cchs2001_m::RACAF6, cchs2003_m::RACCF6R, cchs2005_m::RACEF6R, cchs2007_2008_m::RACF6R, [ADLF6R]",NA,cat,2,2,No,No,N/A,2,No,Needs help with tasks,Needs help with at least one task - (F),NA,2.2.0,2026-03-27,active,NA,NA,NA +ADLF6R,ADLF6R_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, cchs2001_m::RACAF6, cchs2003_m::RACCF6R, cchs2005_m::RACEF6R, cchs2007_2008_m::RACF6R, [ADLF6R]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Needs help with tasks,Needs help with at least one task - (F),NA,2.2.0,2026-03-27,active,NA,NA,NA +ADLF6R,ADLF6R_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, cchs2001_m::RACAF6, cchs2003_m::RACCF6R, cchs2005_m::RACEF6R, cchs2007_2008_m::RACF6R, [ADLF6R]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Needs help with tasks,Needs help with at least one task - (F),NA,2.2.0,2026-03-27,active,NA,NA,NA +ADLF6R,ADLF6R_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::RACAF6, cchs2003_p::RACCF6R, cchs2005_p::RACEF6R, cchs2007_2008_p::RACF6R, cchs2001_m::RACAF6, cchs2003_m::RACCF6R, cchs2005_m::RACEF6R, cchs2007_2008_m::RACF6R, [ADLF6R]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Needs help with tasks,Needs help with at least one task - (F),NA,2.2.0,2026-03-27,active,NA,NA,NA +ADM_RNO,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]",NA,cont,copy,N/A,Sequential record number,Sequential record number,N/A,"[1,999998]",Sequential record number,Sequential record number,Sequential record number,NA,2.2.0,2025-06-30,active,NA,NA,NA +age_first_cigarette,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[SMKG01C_cont],,cont,Func::calculate_age_first_cigarette,,N/A,,years,N/A,Age smoked first whole cigarette (years),,,,3.0.0-alpha,2026-02-23,active,,, +age_first_cigarette,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[SMKG01C_cont],,cont,NA::a,,not applicable,not applicable,years,N/A,not applicable,,,,3.0.0-alpha,2026-02-23,active,,, +age_first_cigarette,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[SMKG01C_cont],,cont,NA::b,,missing,missing,years,N/A,missing,,,,3.0.0-alpha,2026-02-23,active,,, +age_first_cigarette,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_01C],,cont,Func::calculate_age_first_cigarette,,N/A,,years,N/A,Age smoked first whole cigarette (years),,,,3.0.0-alpha,2026-02-23,active,,, +age_first_cigarette,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_01C],,cont,NA::a,,not applicable,not applicable,years,N/A,not applicable,,,,3.0.0-alpha,2026-02-23,active,,, +age_first_cigarette,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_01C],,cont,NA::b,,missing,missing,years,N/A,missing,,,,3.0.0-alpha,2026-02-23,active,,, +age_start_smoking,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[SMKG040_cont],,cont,Func::calculate_age_start_smoking,,N/A,,years,N/A,Age started smoking daily (years),,,"PUMF: midpoint estimation from SMKG040_cont (~+/-3 yr). Universe: ever-daily smokers (SMKDSTY 1, 2, 4).",3.0.0-alpha,2026-02-23,active,,, +age_start_smoking,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[SMKG040_cont],,cont,NA::a,,not applicable,not applicable,years,N/A,not applicable,,,"Valid skip - never smoked daily (SMKDSTY 3, 5, 6)",3.0.0-alpha,2026-02-23,active,,, +age_start_smoking,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[SMKG040_cont],,cont,NA::b,,missing,missing,years,N/A,missing,,,Missing required input,3.0.0-alpha,2026-02-23,active,,, +age_start_smoking,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_040],,cont,Func::calculate_age_start_smoking,,N/A,,years,N/A,Age started smoking daily (years),,,"Master: exact continuous from SMK_040. Universe: ever-daily smokers (SMKDSTY 1, 2, 4).",3.0.0-alpha,2026-02-23,active,,, +age_start_smoking,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_040],,cont,NA::a,,not applicable,not applicable,years,N/A,not applicable,,,"Valid skip - never smoked daily (SMKDSTY 3, 5, 6)",3.0.0-alpha,2026-02-23,active,,, +age_start_smoking,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_040],,cont,NA::b,,missing,missing,years,N/A,missing,,,Missing required input,3.0.0-alpha,2026-02-23,active,,, +ALC_005,ALC_005_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, cchs2001_m::ALCA_5B, cchs2003_m::ALCC_5B, cchs2005_m::ALCE_5B, cchs2007_2008_m::ALN_1, [ALC_005]",NA,cat,1,2,yes,alcohol in the lifetime,N/A,1,Yes,Alcohol in lifetime,"In lifetime, ever drank alcohol?",NA,2.1.0,2026-03-27,active,NA,NA,NA +ALC_005,ALC_005_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, cchs2001_m::ALCA_5B, cchs2003_m::ALCC_5B, cchs2005_m::ALCE_5B, cchs2007_2008_m::ALN_1, [ALC_005]",NA,cat,2,2,no,no alcohol in lifetime,N/A,2,No,Alcohol in lifetime,"In lifetime, ever drank alcohol?",NA,2.1.0,2026-03-27,active,NA,NA,NA +ALC_005,ALC_005_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, cchs2001_m::ALCA_5B, cchs2003_m::ALCC_5B, cchs2005_m::ALCE_5B, cchs2007_2008_m::ALN_1, [ALC_005]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Alcohol in lifetime,"In lifetime, ever drank alcohol?",NA,2.1.0,2026-03-27,active,NA,NA,NA +ALC_005,ALC_005_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, cchs2001_m::ALCA_5B, cchs2003_m::ALCC_5B, cchs2005_m::ALCE_5B, cchs2007_2008_m::ALN_1, [ALC_005]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol in lifetime,"In lifetime, ever drank alcohol?",NA,2.1.0,2026-03-27,active,NA,NA,NA +ALC_005,ALC_005_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5B, cchs2003_p::ALCC_5B, cchs2005_p::ALCE_5B, cchs2007_2008_p::ALN_1, cchs2001_m::ALCA_5B, cchs2003_m::ALCC_5B, cchs2005_m::ALCE_5B, cchs2007_2008_m::ALN_1, [ALC_005]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Alcohol in lifetime,"In lifetime, ever drank alcohol?",NA,2.1.0,2026-03-27,active,NA,NA,NA +ALC_1,ALC_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, cchs2019_2020_p::ALC_010, cchs2001_m::ALCA_1, cchs2003_m::ALCC_1, cchs2005_m::ALCE_1, cchs2015_2016_m::ALC_010, cchs2017_2018_m::ALC_010, cchs2019_2020_m::ALC_010, [ALC_1]",NA,cat,1,2,yes,alcohol in the past year,N/A,1,Yes,Alcohol past year,"Past year, have you drank alcohol?",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALC_1,ALC_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, cchs2019_2020_p::ALC_010, cchs2001_m::ALCA_1, cchs2003_m::ALCC_1, cchs2005_m::ALCE_1, cchs2015_2016_m::ALC_010, cchs2017_2018_m::ALC_010, cchs2019_2020_m::ALC_010, [ALC_1]",NA,cat,2,2,no,no alcohol in past year,N/A,2,No,Alcohol past year,"Past year, have you drank alcohol?",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALC_1,ALC_1_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, cchs2019_2020_p::ALC_010, cchs2001_m::ALCA_1, cchs2003_m::ALCC_1, cchs2005_m::ALCE_1, cchs2015_2016_m::ALC_010, cchs2017_2018_m::ALC_010, cchs2019_2020_m::ALC_010, [ALC_1]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Alcohol past year,"Past year, have you drank alcohol?",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALC_1,ALC_1_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, cchs2019_2020_p::ALC_010, cchs2001_m::ALCA_1, cchs2003_m::ALCC_1, cchs2005_m::ALCE_1, cchs2015_2016_m::ALC_010, cchs2017_2018_m::ALC_010, cchs2019_2020_m::ALC_010, [ALC_1]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alcohol past year,"Past year, have you drank alcohol?",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALC_1,ALC_1_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_1, cchs2003_p::ALCC_1, cchs2005_p::ALCE_1, cchs2015_2016_p::ALC_010, cchs2017_2018_p::ALC_010, cchs2019_2020_p::ALC_010, cchs2001_m::ALCA_1, cchs2003_m::ALCC_1, cchs2005_m::ALCE_1, cchs2015_2016_m::ALC_010, cchs2017_2018_m::ALC_010, cchs2019_2020_m::ALC_010, [ALC_1]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Alcohol past year,"Past year, have you drank alcohol?",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALCDTTM,ALCDTTM_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES altered,cat,1,3,Regular,Regular Drinker,N/A,1,Regular Drinker,Drinker type (last 12 months),Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM,ALCDTTM_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES altered,cat,2,3,Occasional,Occasional Drinker,N/A,2,Occasional drinker,Drinker type (last 12 months),Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM,ALCDTTM_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES altered,cat,3,3,No drink in last 12 months,No drink in last 12 months,N/A,3,No drink in the last 12 months,Drinker type (last 12 months),Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM,ALCDTTM_cat3_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Drinker type (last 12 months),Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM,ALCDTTM_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (last 12 months),Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM,ALCDTTM_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Drinker type (last 12 months),Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM_A,ALCDTTM_A_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES specific,cat,1,2,Former,Former drinker,N/A,3,Former drinker,Former drinker,Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM_A,ALCDTTM_A_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES specific,cat,2,2,Other,Other drinker,N/A,"[1,2]",Other drinker,Former drinker,Type of drinker (12 months),"""Other"" drinker type derived from combining ""Regular"" and ""Occasional"" drinker categories",3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM_A,ALCDTTM_A_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES specific,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Former drinker,Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM_A,ALCDTTM_A_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES specific,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Former drinker,Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALCDTTM_A,ALCDTTM_A_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::ALCDVTTM, cchs2017_2018_p::ALCDVTTM, cchs2019_2020_p::ALCDVTTM, cchs2015_2016_m::ALCDVTTM, cchs2017_2018_m::ALCDVTTM, cchs2019_2020_m::ALCDVTTM, [ALCDTTM]",ICES specific,cat,NA::b,2,missing,missing,N/A,else,else,Former drinker,Type of drinker (12 months),NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALNDTYP,ALNDTYP_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_m::ALCADTYP, cchs2003_m::ALCCDTYP, cchs2005_m::ALCEDTYP, [ALNDTYP]",NA,cat,1,4,Regular,Regular drinker,N/A,1,Regular drinker,Drinker type (lifetime),Type of drinker - (D),NA,2.1.0,2026-03-27,active,NA,NA,NA +ALNDTYP,ALNDTYP_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_m::ALCADTYP, cchs2003_m::ALCCDTYP, cchs2005_m::ALCEDTYP, [ALNDTYP]",NA,cat,2,4,Occasional,Occasional drinker,N/A,2,Occasional drinker,Drinker type (lifetime),Type of drinker - (D),NA,2.1.0,2026-03-27,active,NA,NA,NA +ALNDTYP,ALNDTYP_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_m::ALCADTYP, cchs2003_m::ALCCDTYP, cchs2005_m::ALCEDTYP, [ALNDTYP]",NA,cat,3,4,Former,Former drinker,N/A,3,Former drinker,Drinker type (lifetime),Type of drinker - (D),NA,2.1.0,2026-03-27,active,NA,NA,NA +ALNDTYP,ALNDTYP_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_m::ALCADTYP, cchs2003_m::ALCCDTYP, cchs2005_m::ALCEDTYP, [ALNDTYP]",NA,cat,4,4,Never drank,Never drank,N/A,4,Never drank,Drinker type (lifetime),Type of drinker - (D),NA,2.1.0,2026-03-27,active,NA,NA,NA +ALNDTYP,ALNDTYP_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_m::ALCADTYP, cchs2003_m::ALCCDTYP, cchs2005_m::ALCEDTYP, [ALNDTYP]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Drinker type (lifetime),Type of drinker - (D),NA,2.1.0,2026-03-27,active,NA,NA,NA +ALNDTYP,ALNDTYP_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_m::ALCADTYP, cchs2003_m::ALCCDTYP, cchs2005_m::ALCEDTYP, [ALNDTYP]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinker type (lifetime),Type of drinker - (D),Don't know (7) and refusal (8) not included in 2001 CCHS,2.1.0,2026-03-27,active,NA,NA,NA +ALNDTYP,ALNDTYP_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, cchs2001_m::ALCADTYP, cchs2003_m::ALCCDTYP, cchs2005_m::ALCEDTYP, [ALNDTYP]",NA,cat,NA::b,4,missing,missing,N/A,else,else,Drinker type (lifetime),Type of drinker - (D),NA,2.1.0,2026-03-27,active,NA,NA,NA +ALW_1,ALW_1_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, cchs2019_2020_p::ALW_005, cchs2001_m::ALCA_5, cchs2003_m::ALCC_5, cchs2005_m::ALCE_5, cchs2015_2016_m::ALW_005, cchs2017_2018_m::ALW_005, cchs2019_2020_m::ALW_005, [ALW_1]",NA,cat,1,2,yes,alcohol in the past week,N/A,1,Yes,Any alcohol past week,"Past week, had any alcohol",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_1,ALW_1_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, cchs2019_2020_p::ALW_005, cchs2001_m::ALCA_5, cchs2003_m::ALCC_5, cchs2005_m::ALCE_5, cchs2015_2016_m::ALW_005, cchs2017_2018_m::ALW_005, cchs2019_2020_m::ALW_005, [ALW_1]",NA,cat,2,2,no,no alcohol in past week,N/A,2,No,Any alcohol past week,"Past week, had any alcohol",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_1,ALW_1_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, cchs2019_2020_p::ALW_005, cchs2001_m::ALCA_5, cchs2003_m::ALCC_5, cchs2005_m::ALCE_5, cchs2015_2016_m::ALW_005, cchs2017_2018_m::ALW_005, cchs2019_2020_m::ALW_005, [ALW_1]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Any alcohol past week,"Past week, had any alcohol",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_1,ALW_1_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, cchs2019_2020_p::ALW_005, cchs2001_m::ALCA_5, cchs2003_m::ALCC_5, cchs2005_m::ALCE_5, cchs2015_2016_m::ALW_005, cchs2017_2018_m::ALW_005, cchs2019_2020_m::ALW_005, [ALW_1]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Any alcohol past week,"Past week, had any alcohol",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_1,ALW_1_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, cchs2015_2016_p::ALW_005, cchs2017_2018_p::ALW_005, cchs2019_2020_p::ALW_005, cchs2001_m::ALCA_5, cchs2003_m::ALCC_5, cchs2005_m::ALCE_5, cchs2015_2016_m::ALW_005, cchs2017_2018_m::ALW_005, cchs2019_2020_m::ALW_005, [ALW_1]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Any alcohol past week,"Past week, had any alcohol",NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2019_2020_p::ALW_010, cchs2001_m::ALCA_5A1, cchs2003_m::ALCC_5A1, cchs2005_m::ALCE_5A1, cchs2015_2016_m::ALW_010, cchs2017_2018_m::ALW_010, cchs2019_2020_m::ALW_010 , [ALW_2A1]",NA,cont,copy,N/A,# of drinks - Sunday,Number of drinks on Sunday,drinks,"[0,50]",Number of drinks on Sunday,# of drinks - Sunday,Number of drinks on Sunday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2019_2020_p::ALW_010, cchs2001_m::ALCA_5A1, cchs2003_m::ALCC_5A1, cchs2005_m::ALCE_5A1, cchs2015_2016_m::ALW_010, cchs2017_2018_m::ALW_010, cchs2019_2020_m::ALW_010 , [ALW_2A1]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Sunday,Number of drinks on Sunday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2019_2020_p::ALW_010, cchs2001_m::ALCA_5A1, cchs2003_m::ALCC_5A1, cchs2005_m::ALCE_5A1, cchs2015_2016_m::ALW_010, cchs2017_2018_m::ALW_010, cchs2019_2020_m::ALW_010 , [ALW_2A1]",NA,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Sunday,Number of drinks on Sunday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A1,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, cchs2015_2016_p::ALW_010, cchs2017_2018_p::ALW_010, cchs2019_2020_p::ALW_010, cchs2001_m::ALCA_5A1, cchs2003_m::ALCC_5A1, cchs2005_m::ALCE_5A1, cchs2015_2016_m::ALW_010, cchs2017_2018_m::ALW_010, cchs2019_2020_m::ALW_010 , [ALW_2A1]",NA,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Sunday,Number of drinks on Sunday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2019_2020_p::ALW_015, cchs2001_m::ALCA_5A2, cchs2003_m::ALCC_5A2, cchs2005_m::ALCE_5A2, cchs2015_2016_m::ALW_015, cchs2017_2018_m::ALW_015, cchs2019_2020_m::ALW_015, [ALW_2A2]",NA,cont,copy,N/A,# of drinks - Monday,Number of drinks on Monday,drinks,"[0,50]",Number of drinks on Monday,# of drinks - Monday,Number of drinks on Monday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2019_2020_p::ALW_015, cchs2001_m::ALCA_5A2, cchs2003_m::ALCC_5A2, cchs2005_m::ALCE_5A2, cchs2015_2016_m::ALW_015, cchs2017_2018_m::ALW_015, cchs2019_2020_m::ALW_015, [ALW_2A2]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Monday,Number of drinks on Monday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2019_2020_p::ALW_015, cchs2001_m::ALCA_5A2, cchs2003_m::ALCC_5A2, cchs2005_m::ALCE_5A2, cchs2015_2016_m::ALW_015, cchs2017_2018_m::ALW_015, cchs2019_2020_m::ALW_015, [ALW_2A2]",NA,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Monday,Number of drinks on Monday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A2,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, cchs2015_2016_p::ALW_015, cchs2017_2018_p::ALW_015, cchs2019_2020_p::ALW_015, cchs2001_m::ALCA_5A2, cchs2003_m::ALCC_5A2, cchs2005_m::ALCE_5A2, cchs2015_2016_m::ALW_015, cchs2017_2018_m::ALW_015, cchs2019_2020_m::ALW_015, [ALW_2A2]",NA,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Monday,Number of drinks on Monday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2019_2020_p::ALW_020, cchs2001_m::ALCA_5A3, cchs2003_m::ALCC_5A3, cchs2005_m::ALCE_5A3, cchs2015_2016_m::ALW_020, cchs2017_2018_m::ALW_020, cchs2019_2020_m::ALW_020, [ALW_2A3]",NA,cont,copy,N/A,# of drinks - Tuesday,Number of drinks on Tuesday,drinks,"[0,50]",Number of drinks on Tuesday,# of drinks - Tuesday,Number of drinks on Tuesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2019_2020_p::ALW_020, cchs2001_m::ALCA_5A3, cchs2003_m::ALCC_5A3, cchs2005_m::ALCE_5A3, cchs2015_2016_m::ALW_020, cchs2017_2018_m::ALW_020, cchs2019_2020_m::ALW_020, [ALW_2A3]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Tuesday,Number of drinks on Tuesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2019_2020_p::ALW_020, cchs2001_m::ALCA_5A3, cchs2003_m::ALCC_5A3, cchs2005_m::ALCE_5A3, cchs2015_2016_m::ALW_020, cchs2017_2018_m::ALW_020, cchs2019_2020_m::ALW_020, [ALW_2A3]",NA,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Tuesday,Number of drinks on Tuesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A3,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, cchs2015_2016_p::ALW_020, cchs2017_2018_p::ALW_020, cchs2019_2020_p::ALW_020, cchs2001_m::ALCA_5A3, cchs2003_m::ALCC_5A3, cchs2005_m::ALCE_5A3, cchs2015_2016_m::ALW_020, cchs2017_2018_m::ALW_020, cchs2019_2020_m::ALW_020, [ALW_2A3]",NA,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Tuesday,Number of drinks on Tuesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2019_2020_p::ALW_025, cchs2001_m::ALCA_5A4, cchs2003_m::ALCC_5A4, cchs2005_m::ALCE_5A4, cchs2015_2016_m::ALW_025, cchs2017_2018_m::ALW_025, cchs2019_2020_m::ALW_025, [ALW_2A4]",NA,cont,copy,N/A,# of drinks - Wednesday,Number of drinks on Wednesday,drinks,"[0,90]",Number of drinks on Wednesday,# of drinks - Wednesday,Number of drinks on Wednesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2019_2020_p::ALW_025, cchs2001_m::ALCA_5A4, cchs2003_m::ALCC_5A4, cchs2005_m::ALCE_5A4, cchs2015_2016_m::ALW_025, cchs2017_2018_m::ALW_025, cchs2019_2020_m::ALW_025, [ALW_2A4]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Wednesday,Number of drinks on Wednesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2019_2020_p::ALW_025, cchs2001_m::ALCA_5A4, cchs2003_m::ALCC_5A4, cchs2005_m::ALCE_5A4, cchs2015_2016_m::ALW_025, cchs2017_2018_m::ALW_025, cchs2019_2020_m::ALW_025, [ALW_2A4]",NA,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Wednesday,Number of drinks on Wednesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A4,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, cchs2015_2016_p::ALW_025, cchs2017_2018_p::ALW_025, cchs2019_2020_p::ALW_025, cchs2001_m::ALCA_5A4, cchs2003_m::ALCC_5A4, cchs2005_m::ALCE_5A4, cchs2015_2016_m::ALW_025, cchs2017_2018_m::ALW_025, cchs2019_2020_m::ALW_025, [ALW_2A4]",NA,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Wednesday,Number of drinks on Wednesday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2019_2020_p::ALW_030, cchs2001_m::ALCA_5A5, cchs2003_m::ALCC_5A5, cchs2005_m::ALCE_5A5, cchs2015_2016_m::ALW_030, cchs2017_2018_m::ALW_030, cchs2019_2020_m::ALW_030, [ALW_2A5]",NA,cont,copy,N/A,# of drinks - Thursday,Number of drinks on Thursday,drinks,"[0,90]",Number of drinks on Thursday,# of drinks - Thursday,Number of drinks on Thursday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2019_2020_p::ALW_030, cchs2001_m::ALCA_5A5, cchs2003_m::ALCC_5A5, cchs2005_m::ALCE_5A5, cchs2015_2016_m::ALW_030, cchs2017_2018_m::ALW_030, cchs2019_2020_m::ALW_030, [ALW_2A5]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Thursday,Number of drinks on Thursday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2019_2020_p::ALW_030, cchs2001_m::ALCA_5A5, cchs2003_m::ALCC_5A5, cchs2005_m::ALCE_5A5, cchs2015_2016_m::ALW_030, cchs2017_2018_m::ALW_030, cchs2019_2020_m::ALW_030, [ALW_2A5]",NA,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Thursday,Number of drinks on Thursday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A5,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, cchs2015_2016_p::ALW_030, cchs2017_2018_p::ALW_030, cchs2019_2020_p::ALW_030, cchs2001_m::ALCA_5A5, cchs2003_m::ALCC_5A5, cchs2005_m::ALCE_5A5, cchs2015_2016_m::ALW_030, cchs2017_2018_m::ALW_030, cchs2019_2020_m::ALW_030, [ALW_2A5]",NA,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Thursday,Number of drinks on Thursday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2019_2020_p::ALW_035, cchs2001_m::ALCA_5A6, cchs2003_m::ALCC_5A6, cchs2005_m::ALCE_5A6, cchs2015_2016_m::ALW_035, cchs2017_2018_m::ALW_035, cchs2019_2020_m::ALW_035, [ALW_2A6]",NA,cont,copy,N/A,# of drinks - Friday,Number of drinks on Friday,drinks,"[0,60]",Number of drinks on Friday,# of drinks - Friday,Number of drinks on Friday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2019_2020_p::ALW_035, cchs2001_m::ALCA_5A6, cchs2003_m::ALCC_5A6, cchs2005_m::ALCE_5A6, cchs2015_2016_m::ALW_035, cchs2017_2018_m::ALW_035, cchs2019_2020_m::ALW_035, [ALW_2A6]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Friday,Number of drinks on Friday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2019_2020_p::ALW_035, cchs2001_m::ALCA_5A6, cchs2003_m::ALCC_5A6, cchs2005_m::ALCE_5A6, cchs2015_2016_m::ALW_035, cchs2017_2018_m::ALW_035, cchs2019_2020_m::ALW_035, [ALW_2A6]",NA,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Friday,Number of drinks on Friday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A6,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, cchs2015_2016_p::ALW_035, cchs2017_2018_p::ALW_035, cchs2019_2020_p::ALW_035, cchs2001_m::ALCA_5A6, cchs2003_m::ALCC_5A6, cchs2005_m::ALCE_5A6, cchs2015_2016_m::ALW_035, cchs2017_2018_m::ALW_035, cchs2019_2020_m::ALW_035, [ALW_2A6]",NA,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Friday,Number of drinks on Friday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2019_2020_p::ALW_040, cchs2001_m::ALCA_5A7, cchs2003_m::ALCC_5A7, cchs2005_m::ALCE_5A7, cchs2015_2016_m::ALW_040, cchs2017_2018_m::ALW_040, cchs2019_2020_m::ALW_040, [ALW_2A7]",NA,cont,copy,N/A,# of drinks - Saturday,Number of drinks on Saturday,drinks,"[0,50]",Number of drinks on Saturday,# of drinks - Saturday,Number of drinks on Saturday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2019_2020_p::ALW_040, cchs2001_m::ALCA_5A7, cchs2003_m::ALCC_5A7, cchs2005_m::ALCE_5A7, cchs2015_2016_m::ALW_040, cchs2017_2018_m::ALW_040, cchs2019_2020_m::ALW_040, [ALW_2A7]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks,996,not applicable,# of drinks - Saturday,Number of drinks on Saturday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2019_2020_p::ALW_040, cchs2001_m::ALCA_5A7, cchs2003_m::ALCC_5A7, cchs2005_m::ALCE_5A7, cchs2015_2016_m::ALW_040, cchs2017_2018_m::ALW_040, cchs2019_2020_m::ALW_040, [ALW_2A7]",NA,cont,NA::b,N/A,missing,missing,drinks,"[997,999]",don't know (997); refusal (998); not stated (999),# of drinks - Saturday,Number of drinks on Saturday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALW_2A7,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, cchs2015_2016_p::ALW_040, cchs2017_2018_p::ALW_040, cchs2019_2020_p::ALW_040, cchs2001_m::ALCA_5A7, cchs2003_m::ALCC_5A7, cchs2005_m::ALCE_5A7, cchs2015_2016_m::ALW_040, cchs2017_2018_m::ALW_040, cchs2019_2020_m::ALW_040, [ALW_2A7]",NA,cont,NA::b,N/A,missing,missing,drinks,else,else,# of drinks - Saturday,Number of drinks on Saturday,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADDLY, cchs2003_p::ALCCDDLY, cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, cchs2019_2020_p::ALWDVDLY, cchs2001_m::ALCADDLY, cchs2003_m::ALCCDDLY, cchs2005_m::ALCEDDLY, cchs2015_2016_m::ALWDVDLY, cchs2017_2018_m::ALWDVDLY, cchs2019_2020_m::ALWDVDLY, [ALWDDLY]",NA,cont,copy,N/A,drinks/day,drinks/day,drinks/day,"[0,40]",drinks per day,Average daily consumption,Average daily alcohol consumption,"2007-08, 09-10, 2010, 2012 cycles are categorical",2.2.0,2026-03-27,active,NA,NA,NA +ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADDLY, cchs2003_p::ALCCDDLY, cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, cchs2019_2020_p::ALWDVDLY, cchs2001_m::ALCADDLY, cchs2003_m::ALCCDDLY, cchs2005_m::ALCEDDLY, cchs2015_2016_m::ALWDVDLY, cchs2017_2018_m::ALWDVDLY, cchs2019_2020_m::ALWDVDLY, [ALWDDLY]",NA,cont,NA::a,N/A,not applicable,not applicable,drinks/day,996,not applicable,Average daily consumption,Average daily alcohol consumption,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADDLY, cchs2003_p::ALCCDDLY, cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, cchs2019_2020_p::ALWDVDLY, cchs2001_m::ALCADDLY, cchs2003_m::ALCCDDLY, cchs2005_m::ALCEDDLY, cchs2015_2016_m::ALWDVDLY, cchs2017_2018_m::ALWDVDLY, cchs2019_2020_m::ALWDVDLY, [ALWDDLY]",NA,cont,NA::b,N/A,missing,missing,drinks/day,"[997,999]",don't know (997); refusal (998); not stated (999),Average daily consumption,Average daily alcohol consumption,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALWDDLY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADDLY, cchs2003_p::ALCCDDLY, cchs2005_p::ALCEDDLY, cchs2015_2016_p::ALWDVDLY, cchs2017_2018_p::ALWDVDLY, cchs2019_2020_p::ALWDVDLY, cchs2001_m::ALCADDLY, cchs2003_m::ALCCDDLY, cchs2005_m::ALCEDDLY, cchs2015_2016_m::ALWDVDLY, cchs2017_2018_m::ALWDVDLY, cchs2019_2020_m::ALWDVDLY, [ALWDDLY]",NA,cont,NA::b,N/A,missing,missing,drinks/day,else,else,Average daily consumption,Average daily alcohol consumption,NA,2.2.0,2026-03-27,active,NA,NA,NA +ALWDVLTR_der,ALWDVLTR_der_catN/A_Func::calculate_drinking_risk_long,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,Func::calculate_drinking_risk_long,N/A,N/A,N/A,N/A,N/A,N/A,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +ALWDVLTR_der,ALWDVLTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,1,2,Increased long term health risk,Increased long term health risk due to drinking,N/A,1,Increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7.",3.0.0,2026-03-27,active,NA,NA,NA +ALWDVLTR_der,ALWDVLTR_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,2,2,No increased long term health risk,No increased long term health risk due to drinking,N/A,2,No increased long term health risk due to drinking,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,NA +ALWDVLTR_der,ALWDVLTR_der_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,NA::a,2,not applicable,not applicable,N/A,N/A,not applicable,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +ALWDVLTR_der,ALWDVLTR_der_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +ALWDVSTR_der,ALWDVSTR_der_catN/A_Func::calculate_drinking_risk_short,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,Func::calculate_drinking_risk_short,N/A,N/A,N/A,N/A,N/A,N/A,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,"Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ . Derived from DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7.",3.0.0,2026-03-27,active,NA,NA,No typeStart +ALWDVSTR_der,ALWDVSTR_der_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,1,2,Increased short term health risk,Increased short term health risk due to drinking,N/A,1,Increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,NA +ALWDVSTR_der,ALWDVSTR_der_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,2,2,No increased short term health risk,No increased short term health risk due to drinking,N/A,2,No increased short term health risk due to drinking,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,NA +ALWDVSTR_der,ALWDVSTR_der_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,NA::a,2,not applicable,not applicable,N/A,N/A,not applicable,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +ALWDVSTR_der,ALWDVSTR_der_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2019_2020_p::ALWDVWKY, cchs2001_m::ALCADWKY, cchs2003_m::ALCCDWKY, cchs2005_m:: ALCEDWKY, cchs2015_2016_m::ALWDVWKY, cchs2017_2018_m::ALWDVWKY, cchs2019_2020_m::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,copy,N/A,drinks/week,drinks/week,drinks/week,"[0,449]",drinks per week,Drinks last week,Weekly consumption of alcohol,shown as categorical variable in CCHS 2014 cycle,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2019_2020_p::ALWDVWKY, cchs2001_m::ALCADWKY, cchs2003_m::ALCCDWKY, cchs2005_m:: ALCEDWKY, cchs2015_2016_m::ALWDVWKY, cchs2017_2018_m::ALWDVWKY, cchs2019_2020_m::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,drinks/week,996,not applicable (996),Drinks last week,Weekly consumption of alcohol,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2019_2020_p::ALWDVWKY, cchs2001_m::ALCADWKY, cchs2003_m::ALCCDWKY, cchs2005_m:: ALCEDWKY, cchs2015_2016_m::ALWDVWKY, cchs2017_2018_m::ALWDVWKY, cchs2019_2020_m::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::b,N/A,missing,missing,drinks/week,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks last week,Weekly consumption of alcohol,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +ALWDWKY,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, cchs2015_2016_p::ALWDVWKY, cchs2017_2018_p::ALWDVWKY, cchs2019_2020_p::ALWDVWKY, cchs2001_m::ALCADWKY, cchs2003_m::ALCCDWKY, cchs2005_m:: ALCEDWKY, cchs2015_2016_m::ALWDVWKY, cchs2017_2018_m::ALWDVWKY, cchs2019_2020_m::ALWDVWKY, [ALWDWKY]",ICES confirmed,cont,NA::b,N/A,missing,missing,drinks/week,else,else,Drinks last week,Weekly consumption of alcohol,NA,3.0.0,2026-03-27,active,v3.0.0alpha,NA,NA +binge_drinker,binge_drinker_catN/A_Func::calculate_binge_drinking,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,Func::calculate_binge_drinking,N/A,N/A,N/A,N/A,N/A,N/A,Binge Drinker,Binge Drinker,"Derived from DHH_SEX, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7",3.0.0,2026-03-27,active,NA,NA,No typeStart +binge_drinker,binge_drinker_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,1,2,Binge drinker,Binge drinker,N/A,N/A,Binge drinker,Binge Drinker,Binge Drinker,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +binge_drinker,binge_drinker_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,2,2,Regular drinker,Regular drinker,N/A,N/A,Regular drinker,Binge Drinker,Binge Drinker,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +binge_drinker,binge_drinker_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,NA::a,2,not applicable,not applicable,N/A,N/A,not applicable,Binge Drinker,Binge Drinker,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +binge_drinker,binge_drinker_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",NA,N/A,NA::b,2,missing,missing,N/A,N/A,missing,Binge Drinker,Binge Drinker,NA,3.0.0,2026-03-27,active,NA,NA,No typeStart +CCC_031,CCC_031_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, cchs2019_2020_p::CCC_015, cchs2001_m::CCCA_031, cchs2003_m::CCCC_031, cchs2005_m::CCCE_031, cchs2015_2016_m::CCC_015, cchs2017_2018_m::CCC_015, cchs2019_2020_m::CCC_015, [CCC_031]",NA,cat,1,2,Asthma,Asthma,N/A,1,Yes (Do you have asthma?),Asthma,Do you have asthma?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_031,CCC_031_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, cchs2019_2020_p::CCC_015, cchs2001_m::CCCA_031, cchs2003_m::CCCC_031, cchs2005_m::CCCE_031, cchs2015_2016_m::CCC_015, cchs2017_2018_m::CCC_015, cchs2019_2020_m::CCC_015, [CCC_031]",NA,cat,2,2,No asthma,No asthma,N/A,2,No (Do you have asthma?),Asthma,Do you have asthma?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_031,CCC_031_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, cchs2019_2020_p::CCC_015, cchs2001_m::CCCA_031, cchs2003_m::CCCC_031, cchs2005_m::CCCE_031, cchs2015_2016_m::CCC_015, cchs2017_2018_m::CCC_015, cchs2019_2020_m::CCC_015, [CCC_031]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma,Do you have asthma?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_031,CCC_031_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, cchs2019_2020_p::CCC_015, cchs2001_m::CCCA_031, cchs2003_m::CCCC_031, cchs2005_m::CCCE_031, cchs2015_2016_m::CCC_015, cchs2017_2018_m::CCC_015, cchs2019_2020_m::CCC_015, [CCC_031]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma,Do you have asthma?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_031,CCC_031_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, cchs2015_2016_p::CCC_015, cchs2017_2018_p::CCC_015, cchs2019_2020_p::CCC_015, cchs2001_m::CCCA_031, cchs2003_m::CCCC_031, cchs2005_m::CCCE_031, cchs2015_2016_m::CCC_015, cchs2017_2018_m::CCC_015, cchs2019_2020_m::CCC_015, [CCC_031]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Asthma,Do you have asthma?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_035,CCC_035_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, cchs2019_2020_p::CCC_020, cchs2001_m::CCCA_035, cchs2003_m::CCCC_035, cchs2005_m::CCCE_035, cchs2015_2016_m::CCC_020, cchs2017_2018_m::CCC_020, cchs2019_2020_m::CCC_020, [CCC_035]",NA,cat,1,2,Asthma symptoms,Asthma symptoms,N/A,1,Yes,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_035,CCC_035_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, cchs2019_2020_p::CCC_020, cchs2001_m::CCCA_035, cchs2003_m::CCCC_035, cchs2005_m::CCCE_035, cchs2015_2016_m::CCC_020, cchs2017_2018_m::CCC_020, cchs2019_2020_m::CCC_020, [CCC_035]",NA,cat,2,2,No asthma symptoms/attacks,No asthma symptoms/attacks,N/A,2,No,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_035,CCC_035_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, cchs2019_2020_p::CCC_020, cchs2001_m::CCCA_035, cchs2003_m::CCCC_035, cchs2005_m::CCCE_035, cchs2015_2016_m::CCC_020, cchs2017_2018_m::CCC_020, cchs2019_2020_m::CCC_020, [CCC_035]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_035,CCC_035_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, cchs2019_2020_p::CCC_020, cchs2001_m::CCCA_035, cchs2003_m::CCCC_035, cchs2005_m::CCCE_035, cchs2015_2016_m::CCC_020, cchs2017_2018_m::CCC_020, cchs2019_2020_m::CCC_020, [CCC_035]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_035,CCC_035_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_035, cchs2003_p::CCCC_035, cchs2005_p::CCCE_035, cchs2015_2016_p::CCC_020, cchs2017_2018_p::CCC_020, cchs2019_2020_p::CCC_020, cchs2001_m::CCCA_035, cchs2003_m::CCCC_035, cchs2005_m::CCCE_035, cchs2015_2016_m::CCC_020, cchs2017_2018_m::CCC_020, cchs2019_2020_m::CCC_020, [CCC_035]",NA,cat,NA::b,2,else,else,N/A,else,else,Asthma - had symptoms/ attacks,Have you had any asthma symptoms or asthma attacks in the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_036,CCC_036_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, cchs2019_2020_p::CCC_025, cchs2001_m::CCCA_036, cchs2003_m::CCCC_036, cchs2005_m::CCCE_036, cchs2015_2016_m::CCC_025, cchs2017_2018_m::CCC_025, cchs2019_2020_m::CCC_025, [CCC_036]",NA,cat,1,2,Yes asthma medication,Yes asthma medication,N/A,1,Yes,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_036,CCC_036_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, cchs2019_2020_p::CCC_025, cchs2001_m::CCCA_036, cchs2003_m::CCCC_036, cchs2005_m::CCCE_036, cchs2015_2016_m::CCC_025, cchs2017_2018_m::CCC_025, cchs2019_2020_m::CCC_025, [CCC_036]",NA,cat,2,2,No asthma medication,No asthma medication,N/A,2,No,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_036,CCC_036_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, cchs2019_2020_p::CCC_025, cchs2001_m::CCCA_036, cchs2003_m::CCCC_036, cchs2005_m::CCCE_036, cchs2015_2016_m::CCC_025, cchs2017_2018_m::CCC_025, cchs2019_2020_m::CCC_025, [CCC_036]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_036,CCC_036_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, cchs2019_2020_p::CCC_025, cchs2001_m::CCCA_036, cchs2003_m::CCCC_036, cchs2005_m::CCCE_036, cchs2015_2016_m::CCC_025, cchs2017_2018_m::CCC_025, cchs2019_2020_m::CCC_025, [CCC_036]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_036,CCC_036_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_036, cchs2003_p::CCCC_036, cchs2005_p::CCCE_036, cchs2015_2016_p::CCC_025, cchs2017_2018_p::CCC_025, cchs2019_2020_p::CCC_025, cchs2001_m::CCCA_036, cchs2003_m::CCCC_036, cchs2005_m::CCCE_036, cchs2015_2016_m::CCC_025, cchs2017_2018_m::CCC_025, cchs2019_2020_m::CCC_025, [CCC_036]",NA,cat,NA::b,2,else,else,N/A,else,else,Asthma - took medication,"In the past 12 months, have you taken any medicine for asthma such as inhalers, nebulizers, pills, liquids or injections?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_041,CCC_041_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, cchs2019_2020_p::CCC_045, cchs2001_m::CCCA_041, cchs2003_m::CCCC_041, cchs2005_m::CCCE_041, cchs2015_2016_m::CCC_045, cchs2017_2018_m::CCC_045, cchs2019_2020_m::CCC_045, [CCC_041]",NA,cat,1,2,Fibromyalgia,Fibromyalgia,N/A,1,Yes (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/14,2.2.0,2025-06-30,active,NA,NA,NA +CCC_041,CCC_041_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, cchs2019_2020_p::CCC_045, cchs2001_m::CCCA_041, cchs2003_m::CCCC_041, cchs2005_m::CCCE_041, cchs2015_2016_m::CCC_045, cchs2017_2018_m::CCC_045, cchs2019_2020_m::CCC_045, [CCC_041]",NA,cat,2,2,No Fibromyalgia,Fibromyalgia,N/A,2,No (Do you have Fibromyalgia?),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/15,2.2.0,2025-06-30,active,NA,NA,NA +CCC_041,CCC_041_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, cchs2019_2020_p::CCC_045, cchs2001_m::CCCA_041, cchs2003_m::CCCC_041, cchs2005_m::CCCE_041, cchs2015_2016_m::CCC_045, cchs2017_2018_m::CCC_045, cchs2019_2020_m::CCC_045, [CCC_041]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/16,2.2.0,2025-06-30,active,NA,NA,NA +CCC_041,CCC_041_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, cchs2019_2020_p::CCC_045, cchs2001_m::CCCA_041, cchs2003_m::CCCC_041, cchs2005_m::CCCE_041, cchs2015_2016_m::CCC_045, cchs2017_2018_m::CCC_045, cchs2019_2020_m::CCC_045, [CCC_041]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/17,2.2.0,2025-06-30,active,NA,NA,NA +CCC_041,CCC_041_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_041, cchs2003_p::CCCC_041, cchs2005_p::CCCE_041, cchs2015_2016_p::CCC_045, cchs2017_2018_p::CCC_045, cchs2019_2020_p::CCC_045, cchs2001_m::CCCA_041, cchs2003_m::CCCC_041, cchs2005_m::CCCE_041, cchs2015_2016_m::CCC_045, cchs2017_2018_m::CCC_045, cchs2019_2020_m::CCC_045, [CCC_041]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Fibromyalgia,Do you have Fibromyalgia?,Missing data 2007-2013/18,2.2.0,2025-06-30,active,NA,NA,NA +CCC_051,CCC_051_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, cchs2019_2020_p::CCC_050, cchs2001_m::CCCA_051, cchs2003_m::CCCC_051, cchs2005_m::CCCE_051, cchs2015_2016_m::CCC_050, cchs2017_2018_m::CCC_050, cchs2019_2020_m::CCC_050, [CCC_051]",NA,cat,1,2,Arthritis/Rheumatism,Arthritis/Rheumatism,N/A,1,Yes (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_051,CCC_051_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, cchs2019_2020_p::CCC_050, cchs2001_m::CCCA_051, cchs2003_m::CCCC_051, cchs2005_m::CCCE_051, cchs2015_2016_m::CCC_050, cchs2017_2018_m::CCC_050, cchs2019_2020_m::CCC_050, [CCC_051]",NA,cat,2,2,No Arthritis/Rheumatism,No Arthritis/Rheumatism,N/A,2,No (Do you have arthritis or rheumatism?),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_051,CCC_051_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, cchs2019_2020_p::CCC_050, cchs2001_m::CCCA_051, cchs2003_m::CCCC_051, cchs2005_m::CCCE_051, cchs2015_2016_m::CCC_050, cchs2017_2018_m::CCC_050, cchs2019_2020_m::CCC_050, [CCC_051]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_051,CCC_051_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, cchs2019_2020_p::CCC_050, cchs2001_m::CCCA_051, cchs2003_m::CCCC_051, cchs2005_m::CCCE_051, cchs2015_2016_m::CCC_050, cchs2017_2018_m::CCC_050, cchs2019_2020_m::CCC_050, [CCC_051]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Arthritis/Rheumatism,Do you have arthritis or rheumatism?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_051,CCC_051_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, cchs2015_2016_p::CCC_050, cchs2017_2018_p::CCC_050, cchs2019_2020_p::CCC_050, cchs2001_m::CCCA_051, cchs2003_m::CCCC_051, cchs2005_m::CCCE_051, cchs2015_2016_m::CCC_050, cchs2017_2018_m::CCC_050, cchs2019_2020_m::CCC_050, [CCC_051]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_061,CCC_061_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, cchs2019_2020_p::CCC_055, cchs2001_m::CCCA_061, cchs2003_m::CCCC_061, cchs2005_m::CCCE_061, cchs2015_2016_m::CCC_055, cchs2017_2018_m::CCC_055, cchs2019_2020_m::CCC_055, [CCC_061]",NA,cat,1,2,Back Problems,Back Problems,N/A,1,Yes (Do you have back problems?),Back problems,Do you have back problems?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_061,CCC_061_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, cchs2019_2020_p::CCC_055, cchs2001_m::CCCA_061, cchs2003_m::CCCC_061, cchs2005_m::CCCE_061, cchs2015_2016_m::CCC_055, cchs2017_2018_m::CCC_055, cchs2019_2020_m::CCC_055, [CCC_061]",NA,cat,2,2,No Back Problems,No Back Problems,N/A,2,No (Do you have back problems?),Back problems,Do you have back problems?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_061,CCC_061_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, cchs2019_2020_p::CCC_055, cchs2001_m::CCCA_061, cchs2003_m::CCCC_061, cchs2005_m::CCCE_061, cchs2015_2016_m::CCC_055, cchs2017_2018_m::CCC_055, cchs2019_2020_m::CCC_055, [CCC_061]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Back problems,Do you have back problems?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_061,CCC_061_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, cchs2019_2020_p::CCC_055, cchs2001_m::CCCA_061, cchs2003_m::CCCC_061, cchs2005_m::CCCE_061, cchs2015_2016_m::CCC_055, cchs2017_2018_m::CCC_055, cchs2019_2020_m::CCC_055, [CCC_061]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Back problems,Do you have back problems?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_061,CCC_061_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_061, cchs2003_p::CCCC_061, cchs2005_p::CCCE_061, cchs2015_2016_p::CCC_055, cchs2017_2018_p::CCC_055, cchs2019_2020_p::CCC_055, cchs2001_m::CCCA_061, cchs2003_m::CCCC_061, cchs2005_m::CCCE_061, cchs2015_2016_m::CCC_055, cchs2017_2018_m::CCC_055, cchs2019_2020_m::CCC_055, [CCC_061]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Back problems,Do you have back problems?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_071,CCC_071_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2019_2020_p::CCC_065, cchs2001_m::CCCA_071, cchs2003_m::CCCC_071, cchs2005_m::CCCE_071, cchs2015_2016_m::CCC_065, cchs2017_2018_m::CCC_065, cchs2019_2020_m::CCC_065, [CCC_071]",ICES confirmed,cat,1,2,Hypertension,Hypertension,N/A,1,Yes (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_071,CCC_071_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2019_2020_p::CCC_065, cchs2001_m::CCCA_071, cchs2003_m::CCCC_071, cchs2005_m::CCCE_071, cchs2015_2016_m::CCC_065, cchs2017_2018_m::CCC_065, cchs2019_2020_m::CCC_065, [CCC_071]",ICES confirmed,cat,2,2,No Hypertension,No Hypertension,N/A,2,No (Do you have high blood pressure?),Hypertension,Do you have high blood pressure?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_071,CCC_071_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2019_2020_p::CCC_065, cchs2001_m::CCCA_071, cchs2003_m::CCCC_071, cchs2005_m::CCCE_071, cchs2015_2016_m::CCC_065, cchs2017_2018_m::CCC_065, cchs2019_2020_m::CCC_065, [CCC_071]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension,Do you have high blood pressure?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_071,CCC_071_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2019_2020_p::CCC_065, cchs2001_m::CCCA_071, cchs2003_m::CCCC_071, cchs2005_m::CCCE_071, cchs2015_2016_m::CCC_065, cchs2017_2018_m::CCC_065, cchs2019_2020_m::CCC_065, [CCC_071]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension,Do you have high blood pressure?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_071,CCC_071_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, cchs2015_2016_p::CCC_065, cchs2017_2018_p::CCC_065, cchs2019_2020_p::CCC_065, cchs2001_m::CCCA_071, cchs2003_m::CCCC_071, cchs2005_m::CCCE_071, cchs2015_2016_m::CCC_065, cchs2017_2018_m::CCC_065, cchs2019_2020_m::CCC_065, [CCC_071]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension,Do you have high blood pressure?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_072,CCC_072_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2005_p::CCCE_072, cchs2005_m::CCCE_072, [CCC_072]",NA,cat,1,2,Hypertension diagnosis,Hypertension diagnosis,N/A,1,Yes (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_072,CCC_072_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2005_p::CCCE_072, cchs2005_m::CCCE_072, [CCC_072]",NA,cat,2,2,No hypertension diagnosis,No hypertension diagnosis,N/A,2,No (Have you ever been diagnosed with high blood pressure?),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_072,CCC_072_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2005_p::CCCE_072, cchs2005_m::CCCE_072, [CCC_072]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_072,CCC_072_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2005_p::CCCE_072, cchs2005_m::CCCE_072, [CCC_072]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_072,CCC_072_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2005_p::CCCE_072, cchs2005_m::CCCE_072, [CCC_072]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension diagnosis,Have you ever been diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073,CCC_073_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, cchs2019_2020_p::CCC_070, cchs2005_m::CCCE_073, cchs2015_2016_m::CCC_070, cchs2017_2018_m::CCC_070, cchs2019_2020_m::CCC_070, [CCC_073]",NA,cat,1,2,Hypertension medication,Hypertension medication,N/A,1,Yes (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073,CCC_073_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, cchs2019_2020_p::CCC_070, cchs2005_m::CCCE_073, cchs2015_2016_m::CCC_070, cchs2017_2018_m::CCC_070, cchs2019_2020_m::CCC_070, [CCC_073]",NA,cat,2,2,No hypertension medication,No hypertension medication,N/A,2,No (In the past month have you taken any medicine for high blood pressure?),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073,CCC_073_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, cchs2019_2020_p::CCC_070, cchs2005_m::CCCE_073, cchs2015_2016_m::CCC_070, cchs2017_2018_m::CCC_070, cchs2019_2020_m::CCC_070, [CCC_073]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073,CCC_073_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, cchs2019_2020_p::CCC_070, cchs2005_m::CCCE_073, cchs2015_2016_m::CCC_070, cchs2017_2018_m::CCC_070, cchs2019_2020_m::CCC_070, [CCC_073]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Hypertension medication,In the past month have you taken any medicine for high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073,CCC_073_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_073, cchs2015_2016_p::CCC_070, cchs2017_2018_p::CCC_070, cchs2019_2020_p::CCC_070, cchs2005_m::CCCE_073, cchs2015_2016_m::CCC_070, cchs2017_2018_m::CCC_070, cchs2019_2020_m::CCC_070, [CCC_073]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Hypertension medication,In the past month have you taken any medicine for high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073A,CCC_073A_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073A],NA,cat,1,2,Pregnant when diagnosed with high blood pressure,Pregnant when diagnosed with high blood pressure,N/A,1,Yes,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073A,CCC_073A_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073A],NA,cat,2,2,Not pregnant when diagnosed with high blood pressure,Not pregnant when diagnosed with high blood pressure,N/A,2,No,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073A,CCC_073A_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073A],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073A,CCC_073A_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073A],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073A,CCC_073A_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073A],NA,cat,NA::b,2,else,else,N/A,else,else,Preg. when 1st diag. w/high blood press.,Were you pregnant when you were first diagnosed with high blood pressure?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073B,CCC_073B_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073B],NA,cat,1,2,Yes high blood pressure other than during pregnancy,Yes high blood pressure other than during pregnancy,N/A,1,Yes,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073B,CCC_073B_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073B],NA,cat,2,2,No high blood pressure other than during pregnancy,No high blood pressure other than during pregnancy,N/A,2,No,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073B,CCC_073B_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073B],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073B,CCC_073B_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073B],NA,cat,NA::b,2,else,else,N/A,else,else,Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_073B,CCC_073B_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[CCC_073B],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Not pregnant - Diag. w/high blood press,"Other than during pregnancy, has a health professional ever told you that you have high blood pressure?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_075,CCC_075_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[CCC_075],NA,cat,1,2,High blood cholesterol,High blood cholesterol,N/A,1,High blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,Respondent are 18+ years old to answer this question in CCHS 2015-2018,2.2.0,2025-06-30,active,NA,NA,NA +CCC_075,CCC_075_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[CCC_075],NA,cat,2,2,No high blood cholesterol,No high blood cholesterol,N/A,2,No high blood cholesterol,Blood cholesterol,Do you have high blood cholesterol or lipids?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_075,CCC_075_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[CCC_075],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Blood cholesterol,Do you have high blood cholesterol or lipids?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_075,CCC_075_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[CCC_075],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Blood cholesterol,Do you have high blood cholesterol or lipids?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_075,CCC_075_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[CCC_075],NA,cat,NA::b,2,missing,missing,N/A,else,else,Blood cholesterol,Do you have high blood cholesterol or lipids?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_081,CCC_081_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, cchs2019_2020_p::CCC_140, cchs2001_m::CCCA_081, cchs2003_m::CCCC_081, cchs2005_m::CCCE_081, cchs2015_2016_m::CCC_140, cchs2017_2018_m::CCC_140, cchs2019_2020_m::CCC_140, [CCC_081]",NA,cat,1,2,Migraine Headache,Migraine Headache,N/A,1,Yes (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?,"2011 onward asks, ""Remember, we are interested in conditions diagnosed by a health professional and that are expected to last or have already lasted 6 months or more. Do you have migraine headaches?""",2.2.0,2025-06-30,active,NA,NA,NA +CCC_081,CCC_081_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, cchs2019_2020_p::CCC_140, cchs2001_m::CCCA_081, cchs2003_m::CCCC_081, cchs2005_m::CCCE_081, cchs2015_2016_m::CCC_140, cchs2017_2018_m::CCC_140, cchs2019_2020_m::CCC_140, [CCC_081]",NA,cat,2,2,No Migraine Headache,No Migraine Headache,N/A,2,No (Do you have Migraine Headaches?),Migraine Headache,Do you have migraine headaches?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_081,CCC_081_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, cchs2019_2020_p::CCC_140, cchs2001_m::CCCA_081, cchs2003_m::CCCC_081, cchs2005_m::CCCE_081, cchs2015_2016_m::CCC_140, cchs2017_2018_m::CCC_140, cchs2019_2020_m::CCC_140, [CCC_081]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Migraine Headache,Do you have migraine headaches?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_081,CCC_081_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, cchs2019_2020_p::CCC_140, cchs2001_m::CCCA_081, cchs2003_m::CCCC_081, cchs2005_m::CCCE_081, cchs2015_2016_m::CCC_140, cchs2017_2018_m::CCC_140, cchs2019_2020_m::CCC_140, [CCC_081]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Migraine Headache,Do you have migraine headaches?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_081,CCC_081_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_081, cchs2003_p::CCCC_081, cchs2005_p::CCCE_081, cchs2015_2016_p::CCC_140, cchs2017_2018_p::CCC_140, cchs2019_2020_p::CCC_140, cchs2001_m::CCCA_081, cchs2003_m::CCCC_081, cchs2005_m::CCCE_081, cchs2015_2016_m::CCC_140, cchs2017_2018_m::CCC_140, cchs2019_2020_m::CCC_140, [CCC_081]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Migraine Headache,Do you have migraine headaches?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_091,CCC_091_catN/A_Func::CCC_091_fun1,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","DerivedVar::[CCC_91A, CCC_91B]",ICES confirmed,N/A,Func::CCC_091_fun1,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,No typeStart +CCC_091,CCC_091_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","DerivedVar::[CCC_91A, CCC_91B]",ICES confirmed,cat,1,2,COPD/emphysema/bronchitis,COPD/emphysema/bronchitis,N/A,N/A,"Yes (Do you have COPD (eg. bronchitis, emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","DerivedVar::[CCC_91A, CCC_91B]",ICES confirmed,cat,2,2,No COPD/emphysema/bronchitis,No COPD/emphysema/bronchitis,N/A,N/A,"No (Do you have COPD (eg. bronchitis, emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","DerivedVar::[CCC_91A, CCC_91B]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,N/A,not applicable,COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","DerivedVar::[CCC_91A, CCC_91B]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,N/A,don't know (7); refusal (8); not stated (9),COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_catN/A_Func::CCC_091_fun2,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","DerivedVar::[CCC_91A, CCC_91E, CCC_91F]",ICES confirmed,N/A,Func::CCC_091_fun2,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,No typeStart +CCC_091,CCC_091_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","DerivedVar::[CCC_91A, CCC_91E, CCC_91F]",ICES confirmed,cat,1,2,COPD/emphysema/bronchitis,COPD/emphysema/bronchitis,N/A,N/A,"Yes (Do you have COPD (eg. bronchitis, emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","DerivedVar::[CCC_91A, CCC_91E, CCC_91F]",ICES confirmed,cat,2,2,No COPD/emphysema/bronchitis,No COPD/emphysema/bronchitis,N/A,N/A,"No (Do you have COPD (eg. bronchitis, emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","DerivedVar::[CCC_91A, CCC_91E, CCC_91F]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,N/A,not applicable,COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","DerivedVar::[CCC_91A, CCC_91E, CCC_91F]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,N/A,don't know (7); refusal (8); not stated (9),COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2019_2020_p::CCC_030, cchs2015_2016_m::CCC_030, cchs2017_2018_m::CCC_030, cchs2019_2020_m::CCC_030, [CCC_091]",ICES confirmed,cat,1,2,COPD/emphysema/bronchitis,COPD/emphysema/bronchitis,N/A,1,"Yes (Do you have COPD (eg. bronchitis, emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2019_2020_p::CCC_030, cchs2015_2016_m::CCC_030, cchs2017_2018_m::CCC_030, cchs2019_2020_m::CCC_030, [CCC_091]",ICES confirmed,cat,2,2,No COPD/emphysema/bronchitis,No COPD/emphysema/bronchitis,N/A,2,"No (Do you have COPD (eg. bronchitis, emphysema)?)",COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2019_2020_p::CCC_030, cchs2015_2016_m::CCC_030, cchs2017_2018_m::CCC_030, cchs2019_2020_m::CCC_030, [CCC_091]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2019_2020_p::CCC_030, cchs2015_2016_m::CCC_030, cchs2017_2018_m::CCC_030, cchs2019_2020_m::CCC_030, [CCC_091]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_091,CCC_091_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::CCC_030, cchs2017_2018_p::CCC_030, cchs2019_2020_p::CCC_030, cchs2015_2016_m::CCC_030, cchs2017_2018_m::CCC_030, cchs2019_2020_m::CCC_030, [CCC_091]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,COPD/Emphysema/Bronchitis,"Do you have COPD (eg. bronchitis, emphysema)?",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_101,CCC_101_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2019_2020_p::CCC_095, cchs2001_m::CCCA_101, cchs2003_m::CCCC_101, cchs2005_m::CCCE_101, cchs2015_2016_m::CCC_095, cchs2017_2018_m::CCC_095, cchs2019_2020_m::CCC_095,[CCC_101]",ICES confirmed,cat,1,2,Diabetes,Diabetes,N/A,1,Yes (Do you have diabetes?),Diabetes,Do you have diabetes?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_101,CCC_101_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2019_2020_p::CCC_095, cchs2001_m::CCCA_101, cchs2003_m::CCCC_101, cchs2005_m::CCCE_101, cchs2015_2016_m::CCC_095, cchs2017_2018_m::CCC_095, cchs2019_2020_m::CCC_095,[CCC_101]",ICES confirmed,cat,2,2,No Diabetes,No Diabetes,N/A,2,No (Do you have diabetes?),Diabetes,Do you have diabetes?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_101,CCC_101_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2019_2020_p::CCC_095, cchs2001_m::CCCA_101, cchs2003_m::CCCC_101, cchs2005_m::CCCE_101, cchs2015_2016_m::CCC_095, cchs2017_2018_m::CCC_095, cchs2019_2020_m::CCC_095,[CCC_101]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes,Do you have diabetes?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_101,CCC_101_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2019_2020_p::CCC_095, cchs2001_m::CCCA_101, cchs2003_m::CCCC_101, cchs2005_m::CCCE_101, cchs2015_2016_m::CCC_095, cchs2017_2018_m::CCC_095, cchs2019_2020_m::CCC_095,[CCC_101]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes,Do you have diabetes?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_101,CCC_101_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, cchs2015_2016_p::CCC_095, cchs2017_2018_p::CCC_095, cchs2019_2020_p::CCC_095, cchs2001_m::CCCA_101, cchs2003_m::CCCC_101, cchs2005_m::CCCE_101, cchs2015_2016_m::CCC_095, cchs2017_2018_m::CCC_095, cchs2019_2020_m::CCC_095,[CCC_101]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Diabetes,Do you have diabetes?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,13,N/A,Age,converted categorical age (12 to 14),years,2,12 To 14 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,17.5,N/A,Age,converted categorical age (15 to 19),years,3,15 To 19 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,82,N/A,Age,converted categorical age (80 plus),years,16,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,cchs2003_p,[CCCCG102],NA,cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,5.5,N/A,Age,converted categorical age (0 to 11),years,1,0 To 11 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,14.5,N/A,Age,converted categorical age (12 to 17),years,2,12 To 17 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,21,N/A,Age,converted categorical age (18 to 24),years,3,18 To 24 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,82,N/A,Age,converted categorical age (80 plus),years,15,80 Years And Older,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, cchs2019_2020_p::CCCG100, [CCCG102]",NA,cat,NA::b,N/A,missing,missing,years,else,else,Age of diabetes diagnosis,Converted age of diabetes diagnosis,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_102, cchs2003_m::CCCC_102, cchs2005_m::CCCE_102, cchs2015_2016_m::CCC_100, cchs2017_2018_m::CCC_100, cchs2019_2020_m::CCC_100, [CCC_102]",NA,cont,copy,N/A,Age of diabetes diagnosis,Age of diabetes diagnosis,years,"[0,96]",Age of diabetes diagnosis,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_102, cchs2003_m::CCCC_102, cchs2005_m::CCCE_102, cchs2015_2016_m::CCC_100, cchs2017_2018_m::CCC_100, cchs2019_2020_m::CCC_100, [CCC_102]",NA,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_102, cchs2003_m::CCCC_102, cchs2005_m::CCCE_102, cchs2015_2016_m::CCC_100, cchs2017_2018_m::CCC_100, cchs2019_2020_m::CCC_100, [CCC_102]",NA,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_102,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_102, cchs2003_m::CCCC_102, cchs2005_m::CCCE_102, cchs2015_2016_m::CCC_100, cchs2017_2018_m::CCC_100, cchs2019_2020_m::CCC_100, [CCC_102]",NA,cont,NA::b,N/A,else,else,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_105,CCC_105_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, cchs2019_2020_p::CCC_120, cchs2001_m::CCCA_105, cchs2003_m::CCCC_105, cchs2005_m::CCCE_105, cchs2015_2016_m::CCC_120, cchs2017_2018_m::CCC_120, cchs2019_2020_m::CCC_120, [CCC_105]",NA,cat,1,2,Yes diabetes and currently taking insulin,Yes diabetes and currently taking insulin,N/A,1,Yes,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_105,CCC_105_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, cchs2019_2020_p::CCC_120, cchs2001_m::CCCA_105, cchs2003_m::CCCC_105, cchs2005_m::CCCE_105, cchs2015_2016_m::CCC_120, cchs2017_2018_m::CCC_120, cchs2019_2020_m::CCC_120, [CCC_105]",NA,cat,2,2,No diabetes and currently taking insulin,No diabetes and currently taking insulin,N/A,2,No,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_105,CCC_105_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, cchs2019_2020_p::CCC_120, cchs2001_m::CCCA_105, cchs2003_m::CCCC_105, cchs2005_m::CCCE_105, cchs2015_2016_m::CCC_120, cchs2017_2018_m::CCC_120, cchs2019_2020_m::CCC_120, [CCC_105]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_105,CCC_105_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, cchs2019_2020_p::CCC_120, cchs2001_m::CCCA_105, cchs2003_m::CCCC_105, cchs2005_m::CCCE_105, cchs2015_2016_m::CCC_120, cchs2017_2018_m::CCC_120, cchs2019_2020_m::CCC_120, [CCC_105]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_105,CCC_105_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_105, cchs2003_p::CCCC_105, cchs2005_p::CCCE_105, cchs2015_2016_p::CCC_120, cchs2017_2018_p::CCC_120, cchs2019_2020_p::CCC_120, cchs2001_m::CCCA_105, cchs2003_m::CCCC_105, cchs2005_m::CCCE_105, cchs2015_2016_m::CCC_120, cchs2017_2018_m::CCC_120, cchs2019_2020_m::CCC_120, [CCC_105]",NA,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - currently takes insulin,Do you currently take insulin for your diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_106,CCC_106_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, cchs2019_2020_p::CCC_125, cchs2005_m::CCCE_106, cchs2015_2016_m::CCC_125, cchs2017_2018_m::CCC_125, cchs2019_2020_m::CCC_125, [CCC_106]",NA,cat,1,2,Yes diabetes pills to control blood sugar,Yes diabetes pills to control blood sugar,N/A,1,Yes,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_106,CCC_106_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, cchs2019_2020_p::CCC_125, cchs2005_m::CCCE_106, cchs2015_2016_m::CCC_125, cchs2017_2018_m::CCC_125, cchs2019_2020_m::CCC_125, [CCC_106]",NA,cat,2,2,No diabetes pills to control blood sugar,No diabetes pills to control blood sugar,N/A,2,No,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_106,CCC_106_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, cchs2019_2020_p::CCC_125, cchs2005_m::CCCE_106, cchs2015_2016_m::CCC_125, cchs2017_2018_m::CCC_125, cchs2019_2020_m::CCC_125, [CCC_106]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_106,CCC_106_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, cchs2019_2020_p::CCC_125, cchs2005_m::CCCE_106, cchs2015_2016_m::CCC_125, cchs2017_2018_m::CCC_125, cchs2019_2020_m::CCC_125, [CCC_106]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_106,CCC_106_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_106, cchs2015_2016_p::CCC_125, cchs2017_2018_p::CCC_125, cchs2019_2020_p::CCC_125, cchs2005_m::CCCE_106, cchs2015_2016_m::CCC_125, cchs2017_2018_m::CCC_125, cchs2019_2020_m::CCC_125, [CCC_106]",NA,cat,NA::b,2,else,else,N/A,else,else,Diabetes - pills to control blood sugar,"In the past month, did you take pills to control your blood sugar?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10A,CCC_10A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, cchs2019_2020_p::CCC_105, cchs2001_m::CCCA_10A, cchs2003_m::CCCC_10A, cchs2005_m::CCCE_10A, cchs2015_2016_m::CCC_105, cchs2017_2018_m::CCC_105, cchs2019_2020_m::CCC_105, [CCC_10A]",NA,cat,1,2,Yes diabetes diagnosed when pregnant,Yes diabetes diagnosed when pregnant,N/A,1,Yes,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10A,CCC_10A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, cchs2019_2020_p::CCC_105, cchs2001_m::CCCA_10A, cchs2003_m::CCCC_10A, cchs2005_m::CCCE_10A, cchs2015_2016_m::CCC_105, cchs2017_2018_m::CCC_105, cchs2019_2020_m::CCC_105, [CCC_10A]",NA,cat,2,2,No diabetes diagnosed when pregnant,No diabetes diagnosed when pregnant,N/A,2,No,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10A,CCC_10A_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, cchs2019_2020_p::CCC_105, cchs2001_m::CCCA_10A, cchs2003_m::CCCC_10A, cchs2005_m::CCCE_10A, cchs2015_2016_m::CCC_105, cchs2017_2018_m::CCC_105, cchs2019_2020_m::CCC_105, [CCC_10A]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10A,CCC_10A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, cchs2019_2020_p::CCC_105, cchs2001_m::CCCA_10A, cchs2003_m::CCCC_10A, cchs2005_m::CCCE_10A, cchs2015_2016_m::CCC_105, cchs2017_2018_m::CCC_105, cchs2019_2020_m::CCC_105, [CCC_10A]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10A,CCC_10A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10A, cchs2003_p::CCCC_10A, cchs2005_p::CCCE_10A, cchs2015_2016_p::CCC_105, cchs2017_2018_p::CCC_105, cchs2019_2020_p::CCC_105, cchs2001_m::CCCA_10A, cchs2003_m::CCCC_10A, cchs2005_m::CCCE_10A, cchs2015_2016_m::CCC_105, cchs2017_2018_m::CCC_105, cchs2019_2020_m::CCC_105, [CCC_10A]",NA,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed when pregnant,Were you pregnant when you were first diagnosed with diabetes?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10B,CCC_10B_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, cchs2019_2020_p::CCC_110, cchs2001_m::CCCA_10B, cchs2003_m::CCCC_10B, cchs2005_m::CCCE_10B, cchs2015_2016_m::CCC_110, cchs2017_2018_m::CCC_110, cchs2019_2020_m::CCC_110, [CCC_10B]",NA,cat,1,2,Yes diabetes diagnosed other than pregnant,Yes diabetes diagnosed other than pregnant,N/A,1,Yes,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10B,CCC_10B_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, cchs2019_2020_p::CCC_110, cchs2001_m::CCCA_10B, cchs2003_m::CCCC_10B, cchs2005_m::CCCE_10B, cchs2015_2016_m::CCC_110, cchs2017_2018_m::CCC_110, cchs2019_2020_m::CCC_110, [CCC_10B]",NA,cat,2,2,No diabetes diagnosed other than pregnant,No diabetes diagnosed other than pregnant,N/A,2,No,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10B,CCC_10B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, cchs2019_2020_p::CCC_110, cchs2001_m::CCCA_10B, cchs2003_m::CCCC_10B, cchs2005_m::CCCE_10B, cchs2015_2016_m::CCC_110, cchs2017_2018_m::CCC_110, cchs2019_2020_m::CCC_110, [CCC_10B]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10B,CCC_10B_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, cchs2019_2020_p::CCC_110, cchs2001_m::CCCA_10B, cchs2003_m::CCCC_10B, cchs2005_m::CCCE_10B, cchs2015_2016_m::CCC_110, cchs2017_2018_m::CCC_110, cchs2019_2020_m::CCC_110, [CCC_10B]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10B,CCC_10B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10B, cchs2003_p::CCCC_10B, cchs2005_p::CCCE_10B, cchs2015_2016_p::CCC_110, cchs2017_2018_p::CCC_110, cchs2019_2020_p::CCC_110, cchs2001_m::CCCA_10B, cchs2003_m::CCCC_10B, cchs2005_m::CCCE_10B, cchs2015_2016_m::CCC_110, cchs2017_2018_m::CCC_110, cchs2019_2020_m::CCC_110, [CCC_10B]",NA,cat,NA::b,2,else,else,N/A,else,else,Diabetes diagnosed - other than when pregnant,"Other than during pregnancy, has a health professional ever told you that you have diabetes?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,1,6,< 1 month,< 1 month,N/A,1,< 1 month,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,2,6,1 to <2 months,1 to <2 months,N/A,2,1 to <2 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,3,6,2 to <6 months,2 to <6 months,N/A,3,2 to <6 months,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,4,6,6 months - < 1 year,6 months - < 1 year,N/A,4,6 months - < 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,5,6,>= 1 year,>= 1 year,N/A,5,>= 1 year,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,6,6,never,never,N/A,6,never,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_10C,CCC_10C_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_10C, cchs2003_p::CCCC_10C, cchs2005_p::CCCE_10C, cchs2015_2016_p::CCC_115, cchs2017_2018_p::CCC_115, cchs2019_2020_p::CCC_115, cchs2001_m::CCCA_10C, cchs2003_m::CCCC_10C, cchs2005_m::CCCE_10C, cchs2015_2016_m::CCC_115, cchs2017_2018_m::CCC_115, cchs2019_2020_m::CCC_115, [CCC_10C]",NA,cat,NA::b,6,else,else,N/A,else,else,Diabetes diagnosed - when started w/insulin,"When you were first diagnosed with diabetes, how long was it before you were started on insulin?",NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_111,CCC_111_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_m::CCCA_111, cchs2003_m::CCCC_111, cchs2005_m::CCCE_111",ICES confirmed,cat,1,2,Epilepsy,Epilepsy,N/A,1,Yes (Do you have epilepsy?),Epilepsy,Do you have epilepsy?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_111,CCC_111_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_m::CCCA_111, cchs2003_m::CCCC_111, cchs2005_m::CCCE_111",ICES confirmed,cat,2,2,No Epilepsy,No Epilepsy,N/A,2,No (Do you have epilepsy?),Epilepsy,Do you have epilepsy?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_111,CCC_111_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_m::CCCA_111, cchs2003_m::CCCC_111, cchs2005_m::CCCE_111",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Epilepsy,Do you have epilepsy?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_111,CCC_111_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_m::CCCA_111, cchs2003_m::CCCC_111, cchs2005_m::CCCE_111",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Epilepsy,Do you have epilepsy?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_111,CCC_111_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::CCCA_111, cchs2003_p::CCCC_111, cchs2005_p::CCCE_111, cchs2001_m::CCCA_111, cchs2003_m::CCCC_111, cchs2005_m::CCCE_111",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Epilepsy,Do you have epilepsy?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_121,CCC_121_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2019_2020_p::CCC_085, cchs2001_m::CCCA_121, cchs2003_m::CCCC_121, cchs2005_m::CCCE_121, cchs2015_2016_m::CCC_085, cchs2017_2018_m::CCC_085, cchs2019_2020_m::CCC_085, [CCC_121]",ICES confirmed,cat,1,2,Heart Disease,Heart Disease,N/A,1,Yes (Do you have heart disease?),Heart Disease,Do you have heart disease?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_121,CCC_121_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2019_2020_p::CCC_085, cchs2001_m::CCCA_121, cchs2003_m::CCCC_121, cchs2005_m::CCCE_121, cchs2015_2016_m::CCC_085, cchs2017_2018_m::CCC_085, cchs2019_2020_m::CCC_085, [CCC_121]",ICES confirmed,cat,2,2,No Heart Disease,No Heart Disease,N/A,2,No (Do you have heart disease?),Heart Disease,Do you have heart disease?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_121,CCC_121_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2019_2020_p::CCC_085, cchs2001_m::CCCA_121, cchs2003_m::CCCC_121, cchs2005_m::CCCE_121, cchs2015_2016_m::CCC_085, cchs2017_2018_m::CCC_085, cchs2019_2020_m::CCC_085, [CCC_121]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Heart Disease,Do you have heart disease?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_121,CCC_121_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2019_2020_p::CCC_085, cchs2001_m::CCCA_121, cchs2003_m::CCCC_121, cchs2005_m::CCCE_121, cchs2015_2016_m::CCC_085, cchs2017_2018_m::CCC_085, cchs2019_2020_m::CCC_085, [CCC_121]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Heart Disease,Do you have heart disease?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_121,CCC_121_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, cchs2015_2016_p::CCC_085, cchs2017_2018_p::CCC_085, cchs2019_2020_p::CCC_085, cchs2001_m::CCCA_121, cchs2003_m::CCCC_121, cchs2005_m::CCCE_121, cchs2015_2016_m::CCC_085, cchs2017_2018_m::CCC_085, cchs2019_2020_m::CCC_085, [CCC_121]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Heart Disease,Do you have heart disease?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_131,CCC_131_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, cchs2019_2020_p::CCC_130, cchs2001_m::CCCA_131, cchs2003_m::CCCC_131, cchs2005_m::CCCE_131, cchs2015_2016_m::CCC_130, cchs2017_2018_m::CCC_130, cchs2019_2020_m::CCC_130, [CCC_131]",NA,cat,1,2,Cancer,Cancer,N/A,1,Yes (Do you have cancer?),Active Cancer,Do you have cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_131,CCC_131_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, cchs2019_2020_p::CCC_130, cchs2001_m::CCCA_131, cchs2003_m::CCCC_131, cchs2005_m::CCCE_131, cchs2015_2016_m::CCC_130, cchs2017_2018_m::CCC_130, cchs2019_2020_m::CCC_130, [CCC_131]",NA,cat,2,2,No Cancer,No Cancer,N/A,2,No (Do you have cancer?),Active Cancer,Do you have cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_131,CCC_131_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, cchs2019_2020_p::CCC_130, cchs2001_m::CCCA_131, cchs2003_m::CCCC_131, cchs2005_m::CCCE_131, cchs2015_2016_m::CCC_130, cchs2017_2018_m::CCC_130, cchs2019_2020_m::CCC_130, [CCC_131]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Active Cancer,Do you have cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_131,CCC_131_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, cchs2019_2020_p::CCC_130, cchs2001_m::CCCA_131, cchs2003_m::CCCC_131, cchs2005_m::CCCE_131, cchs2015_2016_m::CCC_130, cchs2017_2018_m::CCC_130, cchs2019_2020_m::CCC_130, [CCC_131]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Active Cancer,Do you have cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_131,CCC_131_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, cchs2015_2016_p::CCC_130, cchs2017_2018_p::CCC_130, cchs2019_2020_p::CCC_130, cchs2001_m::CCCA_131, cchs2003_m::CCCC_131, cchs2005_m::CCCE_131, cchs2015_2016_m::CCC_130, cchs2017_2018_m::CCC_130, cchs2019_2020_m::CCC_130, [CCC_131]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Active Cancer,Do you have cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_141,CCC_141_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, cchs2001_m::CCCA_141, cchs2003_m::CCCC_141, cchs2005_m::CCCE_141, cchs2015_2016_m::CCC_150, cchs2017_2018_m::CCC_150, cchs2019_2020_m::CCC_150, [CCC_141]",NA,cat,1,2,Yes stomach or intestinal ulcers,Yes stomach or intestinal ulcers,N/A,1,Yes,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_141,CCC_141_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, cchs2001_m::CCCA_141, cchs2003_m::CCCC_141, cchs2005_m::CCCE_141, cchs2015_2016_m::CCC_150, cchs2017_2018_m::CCC_150, cchs2019_2020_m::CCC_150, [CCC_141]",NA,cat,2,2,No stomach or intestinal ulcers,No stomach or intestinal ulcers,N/A,2,No,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_141,CCC_141_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, cchs2001_m::CCCA_141, cchs2003_m::CCCC_141, cchs2005_m::CCCE_141, cchs2015_2016_m::CCC_150, cchs2017_2018_m::CCC_150, cchs2019_2020_m::CCC_150, [CCC_141]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_141,CCC_141_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, cchs2001_m::CCCA_141, cchs2003_m::CCCC_141, cchs2005_m::CCCE_141, cchs2015_2016_m::CCC_150, cchs2017_2018_m::CCC_150, cchs2019_2020_m::CCC_150, [CCC_141]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_141,CCC_141_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_141, cchs2003_p::CCCC_141, cchs2005_p::CCCE_141, cchs2001_m::CCCA_141, cchs2003_m::CCCC_141, cchs2005_m::CCCE_141, cchs2015_2016_m::CCC_150, cchs2017_2018_m::CCC_150, cchs2019_2020_m::CCC_150, [CCC_141]",NA,cat,NA::b,2,else,else,N/A,else,else,Stomach or intestinal ulcers,Do you have intestinal or stomach ulcers?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_151,CCC_151_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2019_2020_p::CCC_090, cchs2001_m::CCCA_151, cchs2003_m::CCCC_151, cchs2005_m::CCCE_151, cchs2015_2016_m::CCC_090, cchs2017_2018_m::CCC_090, cchs2019_2020_m::CCC_090,[CCC_151]",ICES confirmed,cat,1,2,Stroke,Stroke,N/A,1,Yes (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_151,CCC_151_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2019_2020_p::CCC_090, cchs2001_m::CCCA_151, cchs2003_m::CCCC_151, cchs2005_m::CCCE_151, cchs2015_2016_m::CCC_090, cchs2017_2018_m::CCC_090, cchs2019_2020_m::CCC_090,[CCC_151]",ICES confirmed,cat,2,2,No Stroke,No Stroke,N/A,2,No (Do you suffer from the effects of stroke?),Stroke,Do you suffer from effects of stroke?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_151,CCC_151_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2019_2020_p::CCC_090, cchs2001_m::CCCA_151, cchs2003_m::CCCC_151, cchs2005_m::CCCE_151, cchs2015_2016_m::CCC_090, cchs2017_2018_m::CCC_090, cchs2019_2020_m::CCC_090,[CCC_151]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Stroke,Do you suffer from effects of stroke?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_151,CCC_151_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2019_2020_p::CCC_090, cchs2001_m::CCCA_151, cchs2003_m::CCCC_151, cchs2005_m::CCCE_151, cchs2015_2016_m::CCC_090, cchs2017_2018_m::CCC_090, cchs2019_2020_m::CCC_090,[CCC_151]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Stroke,Do you suffer from effects of stroke?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_151,CCC_151_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, cchs2015_2016_p::CCC_090, cchs2017_2018_p::CCC_090, cchs2019_2020_p::CCC_090, cchs2001_m::CCCA_151, cchs2003_m::CCCC_151, cchs2005_m::CCCE_151, cchs2015_2016_m::CCC_090, cchs2017_2018_m::CCC_090, cchs2019_2020_m::CCC_090,[CCC_151]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Stroke,Do you suffer from effects of stroke?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_161,CCC_161_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, cchs2001_m::CCCA_161, cchs2003_m::CCCC_161, cchs2005_m::CCCE_161, cchs2015_2016_m::CCC_165, cchs2017_2018_m::CCC_165, cchs2019_2020_m::CCC_165, [CCC_161]",NA,cat,1,2,Yes urinary incontinence,Yes urinary incontinence,N/A,1,Yes,Urinary incontinence,Do you suffer from urinary incontinence?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_161,CCC_161_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, cchs2001_m::CCCA_161, cchs2003_m::CCCC_161, cchs2005_m::CCCE_161, cchs2015_2016_m::CCC_165, cchs2017_2018_m::CCC_165, cchs2019_2020_m::CCC_165, [CCC_161]",NA,cat,2,2,No urinary incontinence,No urinary incontinence,N/A,2,No,Urinary incontinence,Do you suffer from urinary incontinence?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_161,CCC_161_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, cchs2001_m::CCCA_161, cchs2003_m::CCCC_161, cchs2005_m::CCCE_161, cchs2015_2016_m::CCC_165, cchs2017_2018_m::CCC_165, cchs2019_2020_m::CCC_165, [CCC_161]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Urinary incontinence,Do you suffer from urinary incontinence?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_161,CCC_161_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, cchs2001_m::CCCA_161, cchs2003_m::CCCC_161, cchs2005_m::CCCE_161, cchs2015_2016_m::CCC_165, cchs2017_2018_m::CCC_165, cchs2019_2020_m::CCC_165, [CCC_161]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Urinary incontinence,Do you suffer from urinary incontinence?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_161,CCC_161_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_161, cchs2003_p::CCCC_161, cchs2005_p::CCCE_161, cchs2001_m::CCCA_161, cchs2003_m::CCCC_161, cchs2005_m::CCCE_161, cchs2015_2016_m::CCC_165, cchs2017_2018_m::CCC_165, cchs2019_2020_m::CCC_165, [CCC_161]",NA,cat,NA::b,2,else,else,N/A,else,else,Urinary incontinence,Do you suffer from urinary incontinence?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_171,CCC_171_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, cchs2001_m::CCCA_171, cchs2003_m::CCCC_171, cchs2005_m::CCCE_171, cchs2015_2016_m::CCC_155, cchs2017_2018_m::CCC_155, cchs2019_2020_m::CCC_155, [CCC_171]",NA,cat,1,2,Bowel disorder,Bowel disorder,N/A,1,Yes (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_171,CCC_171_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, cchs2001_m::CCCA_171, cchs2003_m::CCCC_171, cchs2005_m::CCCE_171, cchs2015_2016_m::CCC_155, cchs2017_2018_m::CCC_155, cchs2019_2020_m::CCC_155, [CCC_171]",NA,cat,2,2,No bowel disorder,No bowel disorder,N/A,2,No (Do you have a bowel disorder?),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_171,CCC_171_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, cchs2001_m::CCCA_171, cchs2003_m::CCCC_171, cchs2005_m::CCCE_171, cchs2015_2016_m::CCC_155, cchs2017_2018_m::CCC_155, cchs2019_2020_m::CCC_155, [CCC_171]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_171,CCC_171_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, cchs2001_m::CCCA_171, cchs2003_m::CCCC_171, cchs2005_m::CCCE_171, cchs2015_2016_m::CCC_155, cchs2017_2018_m::CCC_155, cchs2019_2020_m::CCC_155, [CCC_171]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_171,CCC_171_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, cchs2001_m::CCCA_171, cchs2003_m::CCCC_171, cchs2005_m::CCCE_171, cchs2015_2016_m::CCC_155, cchs2017_2018_m::CCC_155, cchs2019_2020_m::CCC_155, [CCC_171]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Bowel disorder,Do you have a bowel disorder such as Crohn's disease or colitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,1,5,Crohn's disease,Crohn's disease,N/A,1,Crohn's disease,Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,2,5,Ulcer colitis,Ulcer colitis,N/A,2,Ulcer colitis,Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,3,5,Irritable bowel,Irritable bowel,N/A,3,Irritable bowel,Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,4,5,Incontinence,Incontinence,N/A,4,Incontinence,Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,5,5,Other,Other,N/A,5,Other,Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_17A,CCC_17A_cat5_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_17A, cchs2005_m::CCCE_17A, cchs2015_2016_m::CCC_160, cchs2017_2018_m::CCC_160, cchs2019_2020_m::CCC_160, [CCC_17A]",NA,cat,NA::b,5,else,else,N/A,else,else,Type of bowel disorder,What kind of bowel disease do you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_181,CCC_181_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_181, cchs2003_m::CCCC_181, cchs2005_m::CCCE_181, cchs2015_2016_m::CCC_145, cchs2017_2018_m::CCC_145, cchs2019_2020_m::CCC_145, [CCC_181]",ICES,cat,1,2,Yes alzheimer's disease or other dementia,Yes alzheimer's disease or other dementia,N/A,1,Yes,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_181,CCC_181_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_181, cchs2003_m::CCCC_181, cchs2005_m::CCCE_181, cchs2015_2016_m::CCC_145, cchs2017_2018_m::CCC_145, cchs2019_2020_m::CCC_145, [CCC_181]",ICES,cat,2,2,No alzheimer's disease or other dementia,No alzheimer's disease or other dementia,N/A,2,No,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_181,CCC_181_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_181, cchs2003_m::CCCC_181, cchs2005_m::CCCE_181, cchs2015_2016_m::CCC_145, cchs2017_2018_m::CCC_145, cchs2019_2020_m::CCC_145, [CCC_181]",ICES,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_181,CCC_181_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_181, cchs2003_m::CCCC_181, cchs2005_m::CCCE_181, cchs2015_2016_m::CCC_145, cchs2017_2018_m::CCC_145, cchs2019_2020_m::CCC_145, [CCC_181]",ICES,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_181,CCC_181_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::CCCA_181, cchs2003_m::CCCC_181, cchs2005_m::CCCE_181, cchs2015_2016_m::CCC_145, cchs2017_2018_m::CCC_145, cchs2019_2020_m::CCC_145, [CCC_181]",ICES,cat,NA::b,2,else,else,N/A,else,else,Alzheimer's disease or other dementia,Do you have Alzheimer's Disease or any other dementia?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_251,CCC_251_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, cchs2015_2016_p::CCC_185, cchs2017_2018_p::CCC_185, cchs2019_2020_p::CCC_185, cchs2001_m::CCCA_251, cchs2003_m::CCCC_251, cchs2005_m::CCCE_251, cchs2015_2016_m::CCC_185, cchs2017_2018_m::CCC_185, cchs2019_2020_m::CCC_185, [CCC_251]",NA,cat,1,2,Chronic fatigue,Chronic fatigue,N/A,1,Yes (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_251,CCC_251_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, cchs2015_2016_p::CCC_185, cchs2017_2018_p::CCC_185, cchs2019_2020_p::CCC_185, cchs2001_m::CCCA_251, cchs2003_m::CCCC_251, cchs2005_m::CCCE_251, cchs2015_2016_m::CCC_185, cchs2017_2018_m::CCC_185, cchs2019_2020_m::CCC_185, [CCC_251]",NA,cat,2,2,No chronic fatigue,No chronic fatigue,N/A,2,No (Do you have chronic fatigue syndrome?),Chronic fatigue,Do you have chronic fatigue syndrome?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_251,CCC_251_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, cchs2015_2016_p::CCC_185, cchs2017_2018_p::CCC_185, cchs2019_2020_p::CCC_185, cchs2001_m::CCCA_251, cchs2003_m::CCCC_251, cchs2005_m::CCCE_251, cchs2015_2016_m::CCC_185, cchs2017_2018_m::CCC_185, cchs2019_2020_m::CCC_185, [CCC_251]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Chronic fatigue,Do you have chronic fatigue syndrome?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_251,CCC_251_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, cchs2015_2016_p::CCC_185, cchs2017_2018_p::CCC_185, cchs2019_2020_p::CCC_185, cchs2001_m::CCCA_251, cchs2003_m::CCCC_251, cchs2005_m::CCCE_251, cchs2015_2016_m::CCC_185, cchs2017_2018_m::CCC_185, cchs2019_2020_m::CCC_185, [CCC_251]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Chronic fatigue,Do you have chronic fatigue syndrome?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_251,CCC_251_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_251, cchs2003_p::CCCC_251, cchs2005_p::CCCE_251, cchs2015_2016_p::CCC_185, cchs2017_2018_p::CCC_185, cchs2019_2020_p::CCC_185, cchs2001_m::CCCA_251, cchs2003_m::CCCC_251, cchs2005_m::CCCE_251, cchs2015_2016_m::CCC_185, cchs2017_2018_m::CCC_185, cchs2019_2020_m::CCC_185, [CCC_251]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Chronic fatigue,Do you have chronic fatigue syndrome?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_261,CCC_261_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, cchs2019_2020_p::CCC_190, cchs2001_m::CCCA_261, cchs2003_m::CCCC_261, cchs2005_m::CCCE_261, cchs2015_2016_m::CCC_190, cchs2017_2018_m::CCC_190, cchs2019_2020_m::CCC_190, [CCC_261]",NA,cat,1,2,Yes chemical sensitivities,Yes chemical sensitivities,N/A,1,Yes,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_261,CCC_261_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, cchs2019_2020_p::CCC_190, cchs2001_m::CCCA_261, cchs2003_m::CCCC_261, cchs2005_m::CCCE_261, cchs2015_2016_m::CCC_190, cchs2017_2018_m::CCC_190, cchs2019_2020_m::CCC_190, [CCC_261]",NA,cat,2,2,No chemical sensitivities,No chemical sensitivities,N/A,2,No,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_261,CCC_261_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, cchs2019_2020_p::CCC_190, cchs2001_m::CCCA_261, cchs2003_m::CCCC_261, cchs2005_m::CCCE_261, cchs2015_2016_m::CCC_190, cchs2017_2018_m::CCC_190, cchs2019_2020_m::CCC_190, [CCC_261]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_261,CCC_261_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, cchs2019_2020_p::CCC_190, cchs2001_m::CCCA_261, cchs2003_m::CCCC_261, cchs2005_m::CCCE_261, cchs2015_2016_m::CCC_190, cchs2017_2018_m::CCC_190, cchs2019_2020_m::CCC_190, [CCC_261]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_261,CCC_261_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2010_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2010_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::CCCA_261, cchs2003_p::CCCC_261, cchs2005_p::CCCE_261, cchs2015_2016_p::CCC_190, cchs2017_2018_p::CCC_190, cchs2019_2020_p::CCC_190, cchs2001_m::CCCA_261, cchs2003_m::CCCC_261, cchs2005_m::CCCE_261, cchs2015_2016_m::CCC_190, cchs2017_2018_m::CCC_190, cchs2019_2020_m::CCC_190, [CCC_261]",NA,cat,NA::b,2,else,else,N/A,else,else,Suffers multiple chemical sensitivities,Do you suffer from multiple chemical sensitivities?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_280,CCC_280_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2019_2020_p::CCC_195, cchs2003_m::CCCC_280, cchs2005_m::CCCE_280, cchs2015_2016_m::CCC_195, cchs2017_2018_m::CCC_195, cchs2019_2020_m::CCC_195, [CCC_280]",ICES confirmed,cat,1,2,Has a mood disorder,Has a mood disorder,N/A,1,Yes (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_280,CCC_280_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2019_2020_p::CCC_195, cchs2003_m::CCCC_280, cchs2005_m::CCCE_280, cchs2015_2016_m::CCC_195, cchs2017_2018_m::CCC_195, cchs2019_2020_m::CCC_195, [CCC_280]",ICES confirmed,cat,2,2,Does not have a mood disorder,Does not have a mood disorder,N/A,2,No (Do you have a mood disorder?),Mood disorder,Do you have a mood disorder?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_280,CCC_280_cat2_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2019_2020_p::CCC_195, cchs2003_m::CCCC_280, cchs2005_m::CCCE_280, cchs2015_2016_m::CCC_195, cchs2017_2018_m::CCC_195, cchs2019_2020_m::CCC_195, [CCC_280]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Mood disorder,Do you have a mood disorder?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_280,CCC_280_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2019_2020_p::CCC_195, cchs2003_m::CCCC_280, cchs2005_m::CCCE_280, cchs2015_2016_m::CCC_195, cchs2017_2018_m::CCC_195, cchs2019_2020_m::CCC_195, [CCC_280]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Mood disorder,Do you have a mood disorder?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_280,CCC_280_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, cchs2015_2016_p::CCC_195, cchs2017_2018_p::CCC_195, cchs2019_2020_p::CCC_195, cchs2003_m::CCCC_280, cchs2005_m::CCCE_280, cchs2015_2016_m::CCC_195, cchs2017_2018_m::CCC_195, cchs2019_2020_m::CCC_195, [CCC_280]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Mood disorder,Do you have a mood disorder?,NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +CCC_290,CCC_290_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, cchs2019_2020_p::CCC_200, cchs2003_m::CCCC_290, cchs2005_m::CCCE_290, cchs2015_2016_m::CCC_200, cchs2017_2018_m::CCC_200, cchs2019_2020_m::CCC_200, [CCC_290]",NA,cat,1,2,Has an anxiety disorder,Has an anxiety disorder,N/A,1,Yes (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_290,CCC_290_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, cchs2019_2020_p::CCC_200, cchs2003_m::CCCC_290, cchs2005_m::CCCE_290, cchs2015_2016_m::CCC_200, cchs2017_2018_m::CCC_200, cchs2019_2020_m::CCC_200, [CCC_290]",NA,cat,2,2,Does not have an anxiety disorder,Does not have an anxiety disorder,N/A,2,No (Do you have an anxiety disorder?),Anxiety Disorder,Do you have an anxiety disorder?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_290,CCC_290_cat2_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, cchs2019_2020_p::CCC_200, cchs2003_m::CCCC_290, cchs2005_m::CCCE_290, cchs2015_2016_m::CCC_200, cchs2017_2018_m::CCC_200, cchs2019_2020_m::CCC_200, [CCC_290]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Anxiety Disorder,Do you have an anxiety disorder?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_290,CCC_290_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, cchs2019_2020_p::CCC_200, cchs2003_m::CCCC_290, cchs2005_m::CCCE_290, cchs2015_2016_m::CCC_200, cchs2017_2018_m::CCC_200, cchs2019_2020_m::CCC_200, [CCC_290]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Anxiety Disorder,Do you have an anxiety disorder?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_290,CCC_290_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::CCCC_290, cchs2005_p::CCCE_290, cchs2015_2016_p::CCC_200, cchs2017_2018_p::CCC_200, cchs2019_2020_p::CCC_200, cchs2003_m::CCCC_290, cchs2005_m::CCCE_290, cchs2015_2016_m::CCC_200, cchs2017_2018_m::CCC_200, cchs2019_2020_m::CCC_200, [CCC_290]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Anxiety Disorder,Do you have an anxiety disorder?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_31A,CCC_31A_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, cchs2019_2020_p::CCC_135, cchs2005_m::CCCE_31A, cchs2015_2016_m::CCC_135, cchs2017_2018_m::CCC_135, cchs2019_2020_m::CCC_135, [CCC_31A]",NA,cat,1,2,Cancer diagnosis,Cancer diagnosis,N/A,1,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_31A,CCC_31A_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, cchs2019_2020_p::CCC_135, cchs2005_m::CCCE_31A, cchs2015_2016_m::CCC_135, cchs2017_2018_m::CCC_135, cchs2019_2020_m::CCC_135, [CCC_31A]",NA,cat,2,2,No cancer diagnosis,No cancer diagnosis,N/A,2,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_31A,CCC_31A_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, cchs2019_2020_p::CCC_135, cchs2005_m::CCCE_31A, cchs2015_2016_m::CCC_135, cchs2017_2018_m::CCC_135, cchs2019_2020_m::CCC_135, [CCC_31A]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_31A,CCC_31A_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, cchs2019_2020_p::CCC_135, cchs2005_m::CCCE_31A, cchs2015_2016_m::CCC_135, cchs2017_2018_m::CCC_135, cchs2019_2020_m::CCC_135, [CCC_31A]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_31A,CCC_31A_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_p::CCCE_31A, cchs2015_2016_p::CCC_135, cchs2017_2018_p::CCC_135, cchs2019_2020_p::CCC_135, cchs2005_m::CCCE_31A, cchs2015_2016_m::CCC_135, cchs2017_2018_m::CCC_135, cchs2019_2020_m::CCC_135, [CCC_31A]",NA,cat,NA::b,2,missing,missing,N/A,else,Yes (Have you ever been diagnosed with cancer?),Cancer diagnosis,Have you ever been diagnosed with cancer?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91A,CCC_91A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, cchs2001_m::CCCA_91A, cchs2003_m::CCCC_91A, cchs2005_m::CCCE_91A, [CCC_91A]",NA,cat,1,2,Bronchitis,Chronic bronchitis,N/A,1,Yes (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91A,CCC_91A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, cchs2001_m::CCCA_91A, cchs2003_m::CCCC_91A, cchs2005_m::CCCE_91A, [CCC_91A]",NA,cat,2,2,No bronchitis,No chronic bronchitis,N/A,2,No (Do you have chronic bronchitis?),Bronchitis,Do you have chronic bronchitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91A,CCC_91A_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, cchs2001_m::CCCA_91A, cchs2003_m::CCCC_91A, cchs2005_m::CCCE_91A, [CCC_91A]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Bronchitis,Do you have chronic bronchitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91A,CCC_91A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, cchs2001_m::CCCA_91A, cchs2003_m::CCCC_91A, cchs2005_m::CCCE_91A, [CCC_91A]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bronchitis,Do you have chronic bronchitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91A,CCC_91A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, cchs2001_m::CCCA_91A, cchs2003_m::CCCC_91A, cchs2005_m::CCCE_91A, [CCC_91A]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Bronchitis,Do you have chronic bronchitis?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91B,CCC_91B_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2001_m::CCCA_91B, cchs2003_m::CCCC_91B",NA,cat,1,2,Emphysema/COPD,Emphysema/COPD,N/A,1,Yes (Do you have emphysema or COPD?),Emphysema/COPD,Do you have emphysema or COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91B,CCC_91B_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2001_m::CCCA_91B, cchs2003_m::CCCC_91B",NA,cat,2,2,No emphysema/COPD,No emphysema/COPD,N/A,2,No (Do you have emphysema or COPD?),Emphysema/COPD,Do you have emphysema or COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91B,CCC_91B_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2001_m::CCCA_91B, cchs2003_m::CCCC_91B",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Emphysema/COPD,Do you have emphysema or COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91B,CCC_91B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2001_m::CCCA_91B, cchs2003_m::CCCC_91B",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Emphysema/COPD,Do you have emphysema or COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91B,CCC_91B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2001_m, cchs2003_m","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, cchs2001_m::CCCA_91B, cchs2003_m::CCCC_91B",NA,cat,NA::b,2,missing,missing,N/A,else,else,Emphysema/COPD,Do you have emphysema or COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91E,CCC_91E_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E, cchs2005_m::CCCE_91E, cchs2007_2008_m::CCC_91E",NA,cat,1,2,Emphysema,Emphysema,N/A,1,Yes (Do you have emphysema?),Emphysema,Do you have emphysema?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91E,CCC_91E_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E, cchs2005_m::CCCE_91E, cchs2007_2008_m::CCC_91E",NA,cat,2,2,No emphysema,No emphysema,N/A,2,No (Do you have emphysema?),Emphysema,Do you have emphysema?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91E,CCC_91E_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E, cchs2005_m::CCCE_91E, cchs2007_2008_m::CCC_91E",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Emphysema,Do you have emphysema?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91E,CCC_91E_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E, cchs2005_m::CCCE_91E, cchs2007_2008_m::CCC_91E",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Emphysema,Do you have emphysema?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91E,CCC_91E_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E, cchs2005_m::CCCE_91E, cchs2007_2008_m::CCC_91E",NA,cat,NA::b,2,missing,missing,N/A,else,else,Emphysema,Do you have emphysema?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91F,CCC_91F_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F, cchs2005_m::CCCE_91F, cchs2007_2008_m::CCC_91F",NA,cat,1,2,COPD,COPD,N/A,1,Yes (Do you have COPD?),COPD,Do you have COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91F,CCC_91F_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F, cchs2005_m::CCCE_91F, cchs2007_2008_m::CCC_91F",NA,cat,2,2,No COPD,No COPD,N/A,2,No (Do you have COPD?),COPD,Do you have COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91F,CCC_91F_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F, cchs2005_m::CCCE_91F, cchs2007_2008_m::CCC_91F",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,COPD,Do you have COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91F,CCC_91F_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F, cchs2005_m::CCCE_91F, cchs2007_2008_m::CCC_91F",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),COPD,Do you have COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCC_91F,CCC_91F_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2005_m, cchs2007_2008_m","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F, cchs2005_m::CCCE_91F, cchs2007_2008_m::CCC_91F",NA,cat,NA::b,2,missing,missing,N/A,else,else,COPD,Do you have COPD?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,1,15,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,2,15,12 To 17 Years,12 To 17 Years,years,2,12 To 17 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,3,15,18 To 24 Years,18 To 24 Years,years,3,18 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,4,15,25 To 29 Years,25 To 29 Years,years,4,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,5,15,30 To 34 Years,30 To 34 Years,years,5,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,6,15,35 To 39 Years,35 To 39 Years,years,6,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,7,15,40 To 44 Years,40 To 44 Years,years,7,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,8,15,45 To 49 Years,45 To 49 Years,years,8,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,9,15,50 To 54 Years,50 To 54 Years,years,9,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,10,15,55 To 59 Years,55 To 59 Years,years,10,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,11,15,60 To 64 Years,60 To 64 Years,years,11,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,12,15,65 To 69 Years,65 To 69 Years,years,12,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,13,15,70 To 74 Years,70 To 74 Years,years,13,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,14,15,75 To 79 Years,75 To 79 Years,years,14,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,15,15,80 Years And Older,80 Years And Older,years,15,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_2005plus,CCCG102_2005plus_cat15_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::CCCEG102, cchs2015_2016_p::CCCG100, cchs2017_2018_p::CCCG100, [CCCG102]",NA,cat,NA::b,15,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_1,cat,cchs2003_p,[CCCCG102],NA,cat,1,16,0 To 11 Years,0 To 11 Years,years,1,0 To 11 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_2,cat,cchs2003_p,[CCCCG102],NA,cat,2,16,12 To 14 Years,12 To 14 Years,years,2,12 To 14 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_3,cat,cchs2003_p,[CCCCG102],NA,cat,3,16,15 To 19 Years,15 To 19 Years,years,3,15 To 19 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_4,cat,cchs2003_p,[CCCCG102],NA,cat,4,16,20 To 24 Years,20 To 24 Years,years,4,20 To 24 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_5,cat,cchs2003_p,[CCCCG102],NA,cat,5,16,25 To 29 Years,25 To 29 Years,years,5,25 To 29 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_6,cat,cchs2003_p,[CCCCG102],NA,cat,6,16,30 To 34 Years,30 To 34 Years,years,6,30 To 34 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_7,cat,cchs2003_p,[CCCCG102],NA,cat,7,16,35 To 39 Years,35 To 39 Years,years,7,35 To 39 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_8,cat,cchs2003_p,[CCCCG102],NA,cat,8,16,40 To 44 Years,40 To 44 Years,years,8,40 To 44 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_9,cat,cchs2003_p,[CCCCG102],NA,cat,9,16,45 To 49 Years,45 To 49 Years,years,9,45 To 49 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_10,cat,cchs2003_p,[CCCCG102],NA,cat,10,16,50 To 54 Years,50 To 54 Years,years,10,50 To 54 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_11,cat,cchs2003_p,[CCCCG102],NA,cat,11,16,55 To 59 Years,55 To 59 Years,years,11,55 To 59 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_12,cat,cchs2003_p,[CCCCG102],NA,cat,12,16,60 To 64 Years,60 To 64 Years,years,12,60 To 64 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_13,cat,cchs2003_p,[CCCCG102],NA,cat,13,16,65 To 69 Years,65 To 69 Years,years,13,65 To 69 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_14,cat,cchs2003_p,[CCCCG102],NA,cat,14,16,70 To 74 Years,70 To 74 Years,years,14,70 To 74 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_15,cat,cchs2003_p,[CCCCG102],NA,cat,15,16,75 To 79 Years,75 To 79 Years,years,15,75 To 79 Years,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_16,cat,cchs2003_p,[CCCCG102],NA,cat,16,16,80 Years And Older,80 Years And Older,years,16,80 Years And Older,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_NAa,cat,cchs2003_p,[CCCCG102],NA,cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_NAb,cat,cchs2003_p,[CCCCG102],NA,cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +CCCG102_pre2005,CCCG102_pre2005_cat16_NAb,cat,cchs2003_p,[CCCCG102],NA,cat,NA::b,16,missing,missing,years,else,else,Age of diabetes diagnosis,How old were you when this was first diagnosed?,NA,2.2.0,2025-06-30,active,NA,NA,NA +cigs_per_day,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMKDSTY_original, SMK_204, SMK_208]",,N/A,Func::calculate_cigs_per_day,N/A,N/A,N/A,cigarettes,N/A,N/A,Cigs/day,"Cigarettes per day when smoking daily (ever-daily smokers, unified)","Universe: ever-daily smokers (SMKDSTY_original 1, 2, 4). Routes SMK_204 for status 1, SMK_208 for status 2/4.",3.0.0-alpha,2026-01-09,active,Created for unified daily intensity variable,, +cigs_per_day,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMKDSTY_original, SMK_204, SMK_208]",,cont,NA::a,N/A,not applicable,not applicable,cigarettes,N/A,not applicable,Cigs/day,"Cigarettes per day when smoking daily (ever-daily smokers, unified)","Universe: ever-daily smokers (SMKDSTY_original 1, 2, 4). Routes SMK_204 for status 1, SMK_208 for status 2/4.",3.0.0-alpha,2026-01-09,active,Created for unified daily intensity variable,, +cigs_per_day,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMKDSTY_original, SMK_204, SMK_208]",,cont,NA::b,N/A,missing,missing,cigarettes,N/A,missing,Cigs/day,"Cigarettes per day when smoking daily (ever-daily smokers, unified)","Universe: ever-daily smokers (SMKDSTY_original 1, 2, 4). Routes SMK_204 for status 1, SMK_208 for status 2/4.",3.0.0-alpha,2026-01-09,active,Created for unified daily intensity variable,, +COPD_Emph_der,N/A,cat,"cchs2005_p, cchs2007_2008_p","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F]",NA,N/A,Func::COPD_Emph_der_fun1,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables,2.2.0,2025-06-30,active,NA,NA,NA +COPD_Emph_der,N/A,cat,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","DerivedVar::[DHHGAGE_cont, CCC_091]",NA,N/A,Func::COPD_Emph_der_fun2,N/A,N/A,N/A,N/A,N/A,N/A,COPD/Emphysema,COPD/Emphysema,Derived from COPD and Emphysema variables,2.2.0,2025-06-30,active,NA,NA,NA +COPD_Emph_der,COPD_Emph_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","DerivedVar::[DHHGAGE_cont, CCC_091]",NA,N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,NA,2.2.0,2025-06-30,active,NA,NA,NA +COPD_Emph_der,COPD_Emph_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",NA,N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,NA,2.2.0,2025-06-30,active,NA,NA,NA +COPD_Emph_der,COPD_Emph_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",NA,N/A,3,3,No condition,No condition,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,NA,2.2.0,2025-06-30,active,NA,NA,NA +COPD_Emph_der,COPD_Emph_der_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_091]",NA,N/A,NA::b,3,missing,missing,N/A,N/A,Respiratory Condition,COPD/Emphysema,COPD/Emphysema,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEN_132,DEN_132_cat7_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,1,7,< 1 year,< 1 year,N/A,1,< 1 year,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,2,7,1 to < 2 years,1 to < 2 years,N/A,2,1 to < 2 years,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,3,7,2 to < 3 years,2 to < 3 years,N/A,3,2 to < 3 years,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,4,7,3 to < 4 years,3 to < 4 years,N/A,4,3 to < 4 years,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,5,7,4 to < 5 years,4 to < 5 years,N/A,5,4 to < 5 years,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,6,7,5 years or more,5 years or more,N/A,6,5 years or more,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,7,7,Never,Never,N/A,7,Never,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEN_132,DEN_132_cat7_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008m, cchs2009_2010_m, cchs2011_2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::DENA_132, cchs2003_m::DENC_132, cchs2005_m::DENE_132, cchs2015_2016_m::DEN_035, cchs2017_2018_m::DEN_035, cchs2001_p::DENA_132, cchs2003_p::DENC_132, cchs2005_p::DENE_132, cchs2015_2016_p::DEN_035, cchs2017_2018_p::DEN_035, [DEN_132]",ICES,cat,NA::b,7,missing,missing,N/A,else,else,Visited dental professional - last time,Visited dental professional - last time,"Dental module was Optional Content. Ontario excluded in 2007-2008, 2011-2012, and 2015-2016.",3.0.0,NA,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,1,6,No depression,No depression,N/A,0,No depression,Depression scale - severity of depression,Depression scale - severity of depression,This module is a validated instrument to measure self-reported depression. It is called PHQ-9 and was developed by Spitzer et al (1999). It was first introduced in the CCHS in 2015.,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,2,6,Minimal depression,Minimal depression,N/A,1,Minimal depression,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,3,6,Mild depression,Mild depression,N/A,2,Mild depression,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,4,6,Moderate depression,Moderate depression,N/A,3,Moderate depression,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,5,6,Moderately severe depression,Moderately severe depression,N/A,4,Moderately severe depression,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,6,6,Severe depression,Severe depression,N/A,5,Severe depression,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,NA::b,6,missing,missing,N/A,"[7,9]",not stated,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DEPDVSEV,DEPDVSEV_cat6_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p",[DEPDVPHQ],NA,cat,NA::b,6,missing,missing,N/A,else,else,Depression scale - severity of depression,Depression scale - severity of depression,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHH_AGE,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::DHHA_AGE, cchs2003_m::DHHC_AGE, cchs2005_m::DHHE_AGE, cchs2022_m::AWCAGE, cchs2023_m::AWCAGE, [DHH_AGE]",ICES altered,cont,copy,N/A,Age,continuous age,years,"[12,102]",Age,Age,Continuous age,Share files have continuous age.,2.2.0,2026-02-25,active,NA,NA,NA +DHH_AGE,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::DHHA_AGE, cchs2003_m::DHHC_AGE, cchs2005_m::DHHE_AGE, cchs2022_m::AWCAGE, cchs2023_m::AWCAGE, [DHH_AGE]",ICES altered,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age,Continuous age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHH_AGE,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::DHHA_AGE, cchs2003_m::DHHC_AGE, cchs2005_m::DHHE_AGE, cchs2022_m::AWCAGE, cchs2023_m::AWCAGE, [DHH_AGE]",ICES altered,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age,Continuous age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHH_AGE,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::DHHA_AGE, cchs2003_m::DHHC_AGE, cchs2005_m::DHHE_AGE, cchs2022_m::AWCAGE, cchs2023_m::AWCAGE, [DHH_AGE]",ICES altered,cont,NA::b,N/A,missing,missing,years,else,else,Age,Continuous age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHH_MS,DHH_MS_cat4_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,1,4,Married,Married,N/A,1,Married,Marital status,2001:Marital status - (G); [Marital status],NA,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS,DHH_MS_cat4_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,2001:Marital status - (G); [Marital status],NA,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS,DHH_MS_cat4_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,"[3,5]",Widow/Sep/Div,Marital status,2001:Marital status - (G); [Marital status],NA,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS,DHH_MS_cat4_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,4,4,Single/Never mar.,Single/Never mar.,N/A,6,Single/Never mar.,Marital status,2001:Marital status - (G); [Marital status],NA,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS,DHH_MS_cat4_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,2001:Marital status - (G); [Marital status],NA,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS,DHH_MS_cat4_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,2001:Marital status - (G); [Marital status],NA,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS,DHH_MS_cat4_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,2001:Marital status - (G); [Marital status],NA,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS_DemPoRT,DHH_MS_DemPoRT_cat4_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,1,4,Married/Common-law,Married/Common-law,N/A,"[1,2]",Married/Common-law,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS_DemPoRT,DHH_MS_DemPoRT_cat4_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,2,4,Sep/Div,Sep/Div,N/A,"[4,5]",Sep/Div,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS_DemPoRT,DHH_MS_DemPoRT_cat4_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,3,4,Widow,Widow,N/A,3,Widow,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS_DemPoRT,DHH_MS_DemPoRT_cat4_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,4,4,Single,Single,N/A,6,Single,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS_DemPoRT,DHH_MS_DemPoRT_cat4_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS_DemPoRT,DHH_MS_DemPoRT_cat4_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,3.0.0,2026-02-25,active,NA,NA,NA +DHH_MS_DemPoRT,DHH_MS_DemPoRT_cat4_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::DHHA_MS, cchs2003_m::DHHC_MS, cchs2005_m::DHHE_MS, [DHH_MS]",ICES specific,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,2001:Marital status - (G); [Marital status],DemPoRt marriage categories,3.0.0,2026-02-25,active,NA,NA,NA +DHH_OWN,DHH_OWN_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Home ownership,Dwelling - owned by a member of hsld,"Prior to 2009, CCHS restricted this variable to participants who were not living in an institution. In 2011, CCHS changed wording of responses to (1) owner and (2) renter",2.2.0,2025-06-30,active,NA,NA,NA +DHH_OWN,DHH_OWN_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",NA,cat,2,2,No,No,N/A,2,No,Home ownership,Dwelling - owned by a member of hsld,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHH_OWN,DHH_OWN_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Home ownership,Dwelling - owned by a member of hsld,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHH_OWN,DHH_OWN_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Home ownership,Dwelling - owned by a member of hsld,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHH_OWN,DHH_OWN_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Home ownership,Dwelling - owned by a member of hsld,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHH_SEX,DHH_SEX_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_m::DHHA_SEX, cchs2003_m::DHHC_SEX, cchs2005_m::DHHE_SEX, [DHH_SEX]",ICES confirmed,cat,1,2,Male,Male,N/A,1,Male,Sex,Sex,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHH_SEX,DHH_SEX_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_m::DHHA_SEX, cchs2003_m::DHHC_SEX, cchs2005_m::DHHE_SEX, [DHH_SEX]",ICES confirmed,cat,2,2,Female,Female,N/A,2,Female,Sex,Sex,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHH_SEX,DHH_SEX_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_m::DHHA_SEX, cchs2003_m::DHHC_SEX, cchs2005_m::DHHE_SEX, [DHH_SEX]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sex,Sex,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHH_SEX,DHH_SEX_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_m::DHHA_SEX, cchs2003_m::DHHC_SEX, cchs2005_m::DHHE_SEX, [DHH_SEX]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sex,Sex,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHH_SEX,DHH_SEX_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, cchs2001_m::DHHA_SEX, cchs2003_m::DHHC_SEX, cchs2005_m::DHHE_SEX, [DHH_SEX]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Sex,Sex,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,1,16,age (12 to 14),age (12 to 14),years,1,12 To 14 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,2,16,age (15 to 17),age (15 to 17),years,2,15 To 17 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,3,16,age (18 to 19),age (18 to 19),years,3,18 To 19 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,4,16,age (20 to 24),age (20 to 24),years,4,20 To 24 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,5,16,age (25 to 29),age (25 to 29),years,5,25 To 29 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,6,16,age (30 to 34),age (30 to 34),years,6,30 To 34 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,7,16,age (35 to 39),age (35 to 39),years,7,35 To 39 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,8,16,age (40 to 44),age (40 to 44),years,8,40 To 44 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,9,16,age (45 to 49),age (45 to 49),years,9,45 To 49 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,10,16,age (50 to 54),age (50 to 54),years,10,50 To 54 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,11,16,age (55 to 59),age (55 to 59),years,11,55 To 59 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_12,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,12,16,age (60 to 64),age (60 to 64),years,12,60 To 64 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_13,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,13,16,age (65 to 69),age (65 to 69),years,13,65 To 69 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_14,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,14,16,age (70 to 74),age (70 to 74),years,14,70 To 74 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_15,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,15,16,age (75 to 79),age (75 to 79),years,15,75 To 79 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_16,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,16,16,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::a,16,not applicable,not applicable,years,96,not applicable,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::b,16,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_2005plus,DHHGAGE_2005plus_cat16_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::b,16,missing,missing,years,else,else,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,1,5,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,2,5,age (20 to 39),age (20 to 39),years,"[4,7]",20 To 24 Years (4); 25 To 29 Years (5); 30 To 34 Years (6); 35 To 39 Years (7),Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,3,5,age (40 to 59),age (40 to 59),years,"[8,11]",40 To 44 Years (8); 45 To 49 Years (9); 50 To 54 Years (10); 55 To 59 Years (11),Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,4,5,age (60 to 79),age (60 to 79),years,"[12,15]",60 To 64 Years (12); 65 To 69 Years (13); 70 To 74 Years (14); 75 To 79 Years (15),Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,5,5,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::a,5,not applicable,not applicable,years,96,not applicable,Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::b,5,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::b,5,else,else,years,else,else,Age,Age (20-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_1,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,1,N/A,Age,age (12 to 17),NA,1,12 To 17 Years,Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_2,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,2,N/A,Age,age (18 to 34),NA,2,18 To 34 Years,Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_3,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,3,N/A,Age,age (35 to 49),NA,3,35 To 49 Years,Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_4,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,4,N/A,Age,age (50 to 64),NA,4,50 To 64 Years,Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_5,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,5,N/A,Age,age (65 plus),NA,5,65 Years or more,Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_NAa,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,NA::a,N/A,Age,not applicable,NA,96,not applicable,Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_NAb,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,NA::b,N/A,Age,missing,NA,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat5,DHHGAGE_cat5_NAb,cat,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,NA::b,N/A,Age,missing,NA,else,else,Age,Age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,1,8,age (12 to 19),age (12 to 19),years,"[1,3]",12 To 14 Years (1); 15 To 17 Years (2); 18 To 19 Years (3),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,2,8,age (20 to 29),age (20 to 29),years,"[4,5]",20 to 24 Years (4); 25 To 29 Years (5),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,3,8,age (30 to 39),age (30 to 39),years,"[6,7]",30 To 34 Years (6); 35 To 39 Years (7),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,4,8,age (40 to 49),age (40 to 49),years,"[8,9]",40 To 44 Years (8); 45 To 49 Years (9),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,5,8,age (50 to 59),age (50 to 59),years,"[10,11]",50 To 54 Years (10); 55 To 59 Years (11),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,6,8,age (60 to 69),age (60 to 69),years,"[12,13]",60 To 64 Years (12); 65 To 69 Years (13),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,7,8,age (70 to 79),age (70 to 79),years,"[14,15]",70 To 74 Years (14); 75 To 79 Years (15),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,8,8,age (80 plus),age (80 plus),years,16,80 Years or more,Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,1,8,age (12 to 19),age (12 to 19),years,"[1,2]",12 To 14 Years (1); 15 To 19 Years (2),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,2,8,age (20 to 29),age (20 to 29),years,"[3,4]",20 to 24 Years (3); 25 To 29 Years (4),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,3,8,age (30 to 39),age (30 to 39),years,"[5,6]",30 To 34 Years (5); 35 To 39 Years (6),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,4,8,age (40 to 49),age (40 to 49),years,"[7,8]",40 To 44 Years (7); 45 To 49 Years (8),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,5,8,age (50 to 59),age (50 to 59),years,"[9,10]",50 To 54 Years (9); 55 To 59 Years (10),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,6,8,age (60 to 69),age (60 to 69),years,"[11,12]",60 To 64 Years (11); 65 To 69 Years (12),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,7,8,age (70 to 79),age (70 to 79),years,"[13,14]",70 To 74 Years (13); 75 To 79 Years (14),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,8,8,age (80 plus),age (80 plus),years,15,80 plus Years,Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::a,8,not applicable,not applicable,years,96,not applicable,Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::b,8,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cat8,DHHGAGE_cat8_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,NA::b,8,else,else,years,else,else,Age,Age (10-year age groups),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 to 14 years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,17,N/A,Age,converted categorical age (15 to 19),years,2,15 to 19 years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,22,N/A,Age,converted categorical age (20 to 24),years,3,20 To 24 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,27,N/A,Age,converted categorical age (25 to 29),years,4,25 To 29 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,32,N/A,Age,converted categorical age (30 to 34),years,5,30 To 34 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,37,N/A,Age,converted categorical age (35 to 39),years,6,35 To 39 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,42,N/A,Age,converted categorical age (40 to 44),years,7,40 To 44 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,47,N/A,Age,converted categorical age (45 to 49),years,8,45 To 49 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,52,N/A,Age,converted categorical age (50 to 54),years,9,50 To 54 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,57,N/A,Age,converted categorical age (55 to 59),years,10,55 To 59 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,62,N/A,Age,converted categorical age (60 to 64),years,11,60 To 64 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,67,N/A,Age,converted categorical age (65 to 69),years,12,65 To 69 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,72,N/A,Age,converted categorical age (70 to 74),years,13,70 To 74 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,77,N/A,Age,converted categorical age (75 to 79),years,14,75 To 79 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,85,N/A,Age,converted categorical age (80 plus),years,15,80 Years or more,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,13,N/A,Age,converted categorical age (12 to 14),years,1,12 To 14 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,16,N/A,Age,converted categorical age (15 to 17),years,2,15 To 17 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,18.5,N/A,Age,converted categorical age (18 to 19),years,3,18 To 19 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,22,N/A,Age,converted categorical age (20 to 24),years,4,20 To 24 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,27,N/A,Age,converted categorical age (25 to 29),years,5,25 To 29 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,32,N/A,Age,converted categorical age (30 to 34),years,6,30 To 34 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,37,N/A,Age,converted categorical age (35 to 39),years,7,35 To 39 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,42,N/A,Age,converted categorical age (40 to 44),years,8,40 To 44 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,47,N/A,Age,converted categorical age (45 to 49),years,9,45 To 49 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,52,N/A,Age,converted categorical age (50 to 54),years,10,50 To 54 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,57,N/A,Age,converted categorical age (55 to 59),years,11,55 To 59 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,62,N/A,Age,converted categorical age (60 to 64),years,12,60 To 64 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,67,N/A,Age,converted categorical age (65 to 69),years,13,65 To 69 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,72,N/A,Age,converted categorical age (70 to 74),years,14,70 To 74 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,77,N/A,Age,converted categorical age (75 to 79),years,15,75 To 79 Years,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::DHHEGAGE, [DHHGAGE]",NA,cat,85,N/A,Age,converted categorical age (80 plus),years,16,80 Years or more,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,14.5,N/A,Age,converted categorical age (12 to 17),years,1,12 To 17 Years,Age,Converted categorical age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,26,N/A,Age,converted categorical age (18 to 34),years,2,18 To 34 Years,Age,Converted categorical age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,42,N/A,Age,converted categorical age (35 to 49),years,3,35 To 49 Years,Age,Converted categorical age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,57,N/A,Age,converted categorical age (50 to 64),years,4,50 To 64 Years,Age,Converted categorical age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cat,75,N/A,Age,converted categorical age (65 plus),years,5,65 Years or more,Age,Converted categorical age,NA,3.0.0-alpha,2026-04-15,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",[DHHGAGE],NA,cont,NA::b,N/A,missing,missing,years,else,else,Age,Converted categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_catN/A_Func::age_cat_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,Func::age_cat_fun,N/A,N/A,N/A,years,N/A,N/A,Age,Categorical age,This variable is derived from DHHGAGE_cont,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,1,16,age (12 to 14),age (12 to 14),years,N/A,12 To 14 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,2,16,age (15 to 17),age (15 to 17),years,N/A,15 To 17 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,3,16,age (18 to 19),age (18 to 19),years,N/A,18 To 19 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,4,16,age (20 to 24),age (20 to 24),years,N/A,20 To 24 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,5,16,age (25 to 29),age (25 to 29),years,N/A,25 To 29 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,6,16,age (30 to 34),age (30 to 34),years,N/A,30 To 34 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,7,16,age (35 to 39),age (35 to 39),years,N/A,35 To 39 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,8,16,age (40 to 44),age (40 to 44),years,N/A,40 To 44 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,9,16,age (45 to 49),age (45 to 49),years,N/A,45 To 49 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,10,16,age (50 to 54),age (50 to 54),years,N/A,50 To 54 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,11,16,age (55 to 59),age (55 to 59),years,N/A,55 To 59 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,12,16,age (60 to 64),age (60 to 64),years,N/A,60 To 64 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,13,16,age (65 to 69),age (65 to 69),years,N/A,65 To 69 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,14,16,age (70 to 74),age (70 to 74),years,N/A,70 To 74 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,15,16,age (75 to 79),age (75 to 79),years,N/A,75 To 79 Years,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,16,16,age (80 plus),age (80 plus),years,N/A,80 Years or more,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,NA::a,16,not applicable,not applicable,years,N/A,not applicable,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_der,DHHGAGE_der_cat16_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p",DerivedVar::[DHHGAGE_cont],NA,N/A,NA::b,16,missing,missing,years,N/A,missing,Age,Categorical age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,1,15,age (12 to 14),age (12 to 14),years,1,12 to 14 years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,2,15,age (15 to 19),age (15 to 19),years,2,15 to 19 years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,3,15,age (20 to 24),age (20 to 24),years,3,20 To 24 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,4,15,age (25 to 29),age (25 to 29),years,4,25 To 29 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,5,15,age (30 to 34),age (30 to 34),years,5,30 To 34 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,6,15,age (35 to 39),age (35 to 39),years,6,35 To 39 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,7,15,age (40 to 44),age (40 to 44),years,7,40 To 44 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,8,15,age (45 to 49),age (45 to 49),years,8,45 To 49 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,9,15,age (50 to 54),age (50 to 54),years,9,50 To 54 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,10,15,age (55 to 59),age (55 to 59),years,10,55 To 59 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_11,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,11,15,age (60 to 64),age (60 to 64),years,11,60 To 64 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_12,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,12,15,age (65 to 69),age (65 to 69),years,12,65 To 69 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_13,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,13,15,age (70 to 74),age (70 to 74),years,13,70 To 74 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_14,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,14,15,age (75 to 79),age (75 to 79),years,14,75 To 79 Years,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_15,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,15,15,age (80 plus),age (80 plus),years,15,80 Years or more,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_NAa,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,NA::a,15,not applicable,not applicable,years,96,not applicable,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,NA::b,15,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age,Age,"Not applicable, don't know, refusal, not stated (96-99) were options only in CCHS 2003, but had zero responses",2.2.0,2026-02-25,active,NA,NA,NA +DHHGAGE_pre2005,DHHGAGE_pre2005_cat15_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE",NA,cat,NA::b,15,missing,missing,years,else,else,Age,Age,NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,5,5,5+ persons,5 or more persons,N/A,5,5 or more persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2003_p::DHHCGHSZ, cchs2005_p::DHHEGHSZ, cchs2015_2016_p::DHHDGHSZ, cchs2017_2018_p::DHHDGHSZ, [DHHGHSZ]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,1,5,1 person,1 person,N/A,1,1 person,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,2,5,2 persons,2 persons,N/A,2,2 persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,3,5,3 persons,3 persons,N/A,3,3 persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,4,5,4 persons,4 persons,N/A,4,4 persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,5,5,5+ persons,5 or more persons,N/A,"[5,16]",5 or more persons,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGHSZ,DHHGHSZ_cat5_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[DHHDHSZ],NA,cat,NA::b,5,missing,missing,N/A,else,else,Household size,Household size,NA,2.2.0,2025-06-30,active,NA,NA,NA +DHHGMS,DHHGMS_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",NA,cat,1,4,Married,Married,N/A,1,Married,Marital status,Marital status - (G),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGMS,DHHGMS_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",NA,cat,2,4,Common-law,Common-law,N/A,2,Common-law,Marital status,Marital status - (G),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGMS,DHHGMS_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",NA,cat,3,4,Widow/Sep/Div,Widow/Sep/Div,N/A,3,Widow/separated/divorced,Marital status,Marital status - (G),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGMS,DHHGMS_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",NA,cat,4,4,Single/Never mar.,Single,N/A,4,Single/never married,Marital status,Marital status - (G),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGMS,DHHGMS_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Marital status,Marital status - (G),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGMS,DHHGMS_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Marital status,Marital status - (G),NA,2.2.0,2026-02-25,active,NA,NA,NA +DHHGMS,DHHGMS_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",NA,cat,NA::b,4,missing,missing,N/A,else,else,Marital status,Marital status - (G),NA,2.2.0,2026-02-25,active,NA,NA,NA +diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",NA,N/A,Func::diet_score_fun,N/A,N/A,N/A,N/A,N/A,Diet score,Diet score,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",NA,2.2.0,2026-02-13,active,NA,NA,NA +diet_score,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]",NA,N/A,NA::b,N/A,missing,missing,N/A,N/A,Diet score,Diet score,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",NA,2.2.0,2026-02-13,active,NA,NA,NA +diet_score_cat3,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m",DerivedVar::[diet_score],NA,N/A,Func::diet_score_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical diet score,Categorical diet score,NA,2.2.0,2026-02-13,active,NA,NA,NA +diet_score_cat3,diet_score_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m",DerivedVar::[diet_score],NA,N/A,1,3,Poor diet,Poor diet,N/A,1,Poor diet,Categorical diet score,Categorical diet score,NA,2.2.0,2026-02-13,active,NA,NA,NA +diet_score_cat3,diet_score_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m",DerivedVar::[diet_score],NA,N/A,2,3,Fair diet,Fair diet,N/A,2,Fair diet,Categorical diet score,Categorical diet score,NA,2.2.0,2026-02-13,active,NA,NA,NA +diet_score_cat3,diet_score_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m",DerivedVar::[diet_score],NA,N/A,3,3,Adequate diet,Adequate diet,N/A,3,Adequate diet,Categorical diet score,Categorical diet score,NA,2.2.0,2026-02-13,active,NA,NA,NA +diet_score_cat3,diet_score_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m",DerivedVar::[diet_score],NA,N/A,NA::a,3,not applicable,not applicable,N/A,NA::a,not applicable,Categorical diet score,Categorical diet score,NA,2.2.0,2026-02-13,active,NA,NA,NA +diet_score_cat3,diet_score_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m",DerivedVar::[diet_score],NA,N/A,NA::b,3,missing,missing,N/A,NA::b,missing,Categorical diet score,Categorical diet score,NA,2.2.0,2026-02-13,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10G,DIS_10G_cat5_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10G, cchs2017_2018_p::DIS_035, [DIS_10G]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: felt sad / depressed - past month,"(During the past month, about how often did you feel) sad or depressed?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,1,5,All of the time,All of the time,N/A,1,All of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,2,5,Most of the time,Most of the time,N/A,2,Most of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,4,5,A little of the time,A little of the time,N/A,4,A little of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,5,5,None of the time,None of the time,N/A,5,None of the time,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DIS_10H,DIS_10H_cat5_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::DISE_10H, cchs2017_2018_p::DIS_040, [DIS_10H]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Frequency - distress: depressed/nothing cheers - past month,"(During the past month, about how often did you feel) so depressed that nothing could cheer you up?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_02,DPS_02_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_02],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_02,DPS_02_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_02],NA,cat,2,2,No,No,N/A,2,No,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_02,DPS_02_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_02],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_02,DPS_02_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_02],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_02,DPS_02_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_02],NA,cat,NA::b,2,missing,missing,N/A,else,else,Felt sad/blue/depressed - 2 weeks or more - 12 mo,"During the past 12 months, was there ever a time when you felt sad, blue, or depressed for 2 weeks or more in a row?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_03,DPS_03_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_03],NA,cat,1,4,All day long,All day long,N/A,1,All day long,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_03,DPS_03_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_03],NA,cat,2,4,Most of the day,Most of the day,N/A,2,Most of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_03,DPS_03_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_03],NA,cat,3,4,About half of the day,About half of the day,N/A,3,About half of the day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_03,DPS_03_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_03],NA,cat,4,4,Less than half of a day,Less than half of a day,N/A,4,Less than half of a day,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_03,DPS_03_cat4_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_03],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_03,DPS_03_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_03],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_03,DPS_03_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_03],NA,cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - length feelings lasted - 2 wk,"Think of the 2-week period during the past 12 months when these feelings were the worst. During that time, how long did these feelings usually last: (all day long, most of the day, about half of the day, or less than half of a day)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_04,DPS_04_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_04],NA,cat,1,3,Every day,Every day,N/A,1,Every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_04,DPS_04_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_04],NA,cat,2,3,Almost every day,Almost every day,N/A,2,Almost every day,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_04,DPS_04_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_04],NA,cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_04,DPS_04_cat3_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_04],NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_04,DPS_04_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_04],NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_04,DPS_04_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_04],NA,cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed - frequency - 2 wk,"How often did you feel this way during those 2 weeks: (every day, almost every day, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_05,DPS_05_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_05],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_05,DPS_05_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_05],NA,cat,2,2,No,No,N/A,2,No,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_05,DPS_05_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_05],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_05,DPS_05_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_05],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_05,DPS_05_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_05],NA,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - lose interest in things - 2 wk,During those 2 weeks did you lose interest in most things?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_06,DPS_06_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_06],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_06,DPS_06_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_06],NA,cat,2,2,No,No,N/A,2,No,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_06,DPS_06_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_06],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_06,DPS_06_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_06],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_06,DPS_06_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_06],NA,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt tired out / low on energy - 2 wk,Did you feel tired out or low on energy all of the time?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_07,DPS_07_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_07],NA,cat,1,4,Gained weight,Gained weight,N/A,1,Gained weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_07,DPS_07_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_07],NA,cat,2,4,Lost weight,Lost weight,N/A,2,Lost weight,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_07,DPS_07_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_07],NA,cat,3,4,Stayed about the same,Stayed about the same,N/A,3,Stayed about the same,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_07,DPS_07_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_07],NA,cat,4,4,Was on a diet,Was on a diet,N/A,4,Was on a diet,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_07,DPS_07_cat4_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_07],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_07,DPS_07_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_07],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_07,DPS_07_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_07],NA,cat,NA::b,4,missing,missing,N/A,else,else,Sad/depressed - weight change - 2 wk,"Did you gain weight, lose weight or stay about the same?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08A],NA,cont,copy,N/A,Weight,Weight,N/A,"[1,90]",Weight,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08A],NA,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08A],NA,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (999.7); refusal (999.8); not stated (999.9),Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08A],NA,cont,NA::b,N/A,missing,missing,N/A,else,else,Sad/depressed - weight change (amount) - 2 wk,About how much did you gain/lose?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08B,DPS_08B_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08B],NA,cat,1,2,Pounds,Pounds,N/A,1,Pounds,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08B,DPS_08B_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08B],NA,cat,2,2,Kilograms,Kilograms,N/A,2,Kilograms,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08B,DPS_08B_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08B],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08B,DPS_08B_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08B],NA,cat,NA::b,2,missing,missing,N/A,9,not stated,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_08B,DPS_08B_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_08B],NA,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - weight change (lb/kg) - 2 wk,Interviewer: Was that in pounds or in kilograms?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_09,DPS_09_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_09],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_09,DPS_09_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_09],NA,cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_09,DPS_09_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_09],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_09,DPS_09_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_09],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_09,DPS_09_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_09],NA,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble falling asleep - 2 wk,Did you have more trouble falling asleep than you usually do?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_10,DPS_10_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_10],NA,cat,1,3,Every night,Every night,N/A,1,Every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_10,DPS_10_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_10],NA,cat,2,3,Nearly every night,Nearly every night,N/A,2,Nearly every night,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_10,DPS_10_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_10],NA,cat,3,3,Less often,Less often,N/A,3,Less often,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_10,DPS_10_cat3_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_10],NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_10,DPS_10_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_10],NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_10,DPS_10_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_10],NA,cat,NA::b,3,missing,missing,N/A,else,else,Sad/depressed trouble falling asleep - frequency - 2 wk,"How often did that happen: (every night, nearly every night, or less often)?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_11,DPS_11_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_11],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_11,DPS_11_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_11],NA,cat,2,2,No,No,N/A,2,No,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_11,DPS_11_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_11],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_11,DPS_11_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_11],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_11,DPS_11_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_11],NA,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - trouble concentrating - 2 wk,Did you have a lot more trouble concentrating than usual?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_12,DPS_12_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_12],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_12,DPS_12_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_12],NA,cat,2,2,No,No,N/A,2,No,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_12,DPS_12_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_12],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_12,DPS_12_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_12],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_12,DPS_12_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_12],NA,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - felt down on self - 2 wk,"At these times, people sometimes feel down on themselves, no good or worthless. Did you feel this way?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_13,DPS_13_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_13],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_13,DPS_13_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_13],NA,cat,2,2,No,No,N/A,2,No,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_13,DPS_13_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_13],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_13,DPS_13_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_13],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_13,DPS_13_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_13],NA,cat,NA::b,2,missing,missing,N/A,else,else,Sad/depressed - thought a lot about death - 2 wk,"Did you think a lot about death - either your own, someone elses, or death in general?",NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_14],NA,cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of week feel this way,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_14],NA,cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_14],NA,cont,NA::b,N/A,missing,missing,weeks,"[97,99]",don't know (97); refusal (98); not stated (99),Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPS_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[DPS_14],NA,cont,NA::b,N/A,missing,missing,weeks,else,else,Sad/depressed - number of weeks - 12 mo,About how many weeks altogether did you feel this way during the past 12 months?,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,1,12,January,January,N/A,1,January,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,2,12,February,February,N/A,2,February,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,3,12,March,March,N/A,3,March,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,4,12,April,April,N/A,4,April,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,5,12,May,May,N/A,5,May,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,6,12,June,June,N/A,6,June,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,7,12,July,July,N/A,7,July,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,8,12,August,August,N/A,8,August,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,9,12,September,September,N/A,9,September,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,10,12,October,October,N/A,10,October,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,11,12,November,November,N/A,11,November,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,12,12,December,December,N/A,12,December,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,NA::a,12,not applicable,not applicable,N/A,96,not applicable,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,NA::b,12,missing,missing,N/A,99,not stated,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDMT,DPSDMT_cat12_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADMT, cchs2003_p::DPSCDMT, cchs2005_p::DPSEDMT, [DPSDMT]",NA,cat,NA::b,12,missing,missing,N/A,else,else,Specific month when felt depressed,Specific month felt depressed - 2 weeks in a row - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",NA,cont,copy,N/A,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,N/A,"[0,0.90]",Predicted Probability,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,"Variable was documented as a categorical variable with categories 0, 0.05, 0.25, 0.50, 0.80, 0.90 across all cycles. See documentation for DPSDPP() for more details, or type ?DPSDPP in the console.",2.2.0,2025-06-30,active,NA,NA,NA +DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",NA,cont,NA::a,N/A,not applicable,not applicable,N/A,9.96,not applicable,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",NA,cont,NA::b,N/A,missing,missing,N/A,9.99,not stated,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDPP,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADPP, cchs2003_p::DPSCDPP, cchs2005_p::DPSEDPP, [DPSDPP]",NA,cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Predicted Probability,Depression Scale - Predicted Probability,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",NA,cont,copy,N/A,Depression Scale - Short Form Score,Depression Scale - Short Form Score,N/A,"[0,8]",Short Form Score,Depression Scale - Short Form Score,Depression Scale - Short Form Score,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",NA,cont,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Depression Scale - Short Form Score,Depression Scale - Short Form Score,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",NA,cont,NA::b,N/A,missing,missing,N/A,99,not stated,Depression Scale - Short Form Score,Depression Scale - Short Form Score,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDSF,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",NA,cont,NA::b,N/A,missing,missing,N/A,else,else,Depression Scale - Short Form Score,Depression Scale - Short Form Score,NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",NA,cont,copy,N/A,Number of weeks,Number of weeks,weeks,"[2,53]",Number of weeks felt depressed,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",NA,cont,NA::a,N/A,not applicable,not applicable,weeks,96,not applicable,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",NA,cont,NA::b,N/A,missing,missing,weeks,99,not stated,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +DPSDWK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::DPSADWK, cchs2003_p::DPSCDWK, cchs2005_p::DPSEDWK, [DPSDWK]",NA,cont,NA::b,N/A,missing,missing,weeks,else,else,Number of weeks felt depressed - (D),Number of weeks felt depressed - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",NA,cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",NA,cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",NA,cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,"[3,4]",Post-sec. grad,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",NA,cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2DVR3],NA,cat,1,3,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2DVR3],NA,cat,2,3,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2DVR3],NA,cat,3,3,Post-secondary graduate,Post-secondary graduate,N/A,3,Post-sec. grad,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2DVR3],NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2DVR3],NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 3 categories,CCHS 2015-2018 does not have don't know (7) or refusal (8),2.2.0,2026-02-25,active,NA,NA,NA +EDUDR03,EDUDR03_cat3_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2DVR3],NA,cat,NA::b,3,missing,missing,N/A,else,else,Highest education,Highest level/education - 3 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",ICES confirmed,cat,1,4,Less than high school,Less than High School,N/A,1,< Than Secondary,Highest education,Highest level/education - 4 categories,Slight change in wording of categories from CCHS 2011 onwards,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",ICES confirmed,cat,2,4,High school graduate,High School Graduate,N/A,2,Secondary grad,Highest education,Highest level/education - 4 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",ICES confirmed,cat,3,4,Some post-secondary education,Some post-secondary education,N/A,3,Other post-sec.,Highest education,Highest level/education - 4 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",ICES confirmed,cat,4,4,Post-secondary graduate,Post-secondary graduate,N/A,4,Post-sec. grad,Highest education,Highest level/education - 4 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Highest education,Highest level/education - 4 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Highest education,Highest level/education - 4 categories,CCHS 2001 does not have don't know (7) or refusal (8),2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, cchs2001_m::EDUADR04, cchs2003_m::EDUCDR04, cchs2005_m::EDUEDR04, [EDUDR04]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,else,else,Highest education,Highest level/education - 4 categories,NA,2.2.0,2026-02-25,active,NA,NA,NA +EDUDR04,EDUDR04_catN/A_Func::EDUDR04_fun,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[EHG2_01, EHG2_02, EHG2_03, EHG2_04]",NA,N/A,Func::EDUDR04_fun,N/A,N/A,N/A,N/A,N/A,N/A,Highest education,Highest level/education - 4 categories,Derived from EHG2_01-04 for 2015+ cycles,3.0.0,2026-06-04,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[EHG2_01, EHG2_02, EHG2_03, EHG2_04]",NA,cat,1,4,Less than high school,Less than High School,N/A,N/A,< Than Secondary,Highest education,Highest level/education - 4 categories,NA,3.0.0,2026-06-04,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[EHG2_01, EHG2_02, EHG2_03, EHG2_04]",NA,cat,2,4,High school graduate,High School Graduate,N/A,N/A,Secondary grad,Highest education,Highest level/education - 4 categories,NA,3.0.0,2026-06-04,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_3,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[EHG2_01, EHG2_02, EHG2_03, EHG2_04]",NA,cat,3,4,Some post-secondary education,Some post-secondary education,N/A,N/A,Other post-sec.,Highest education,Highest level/education - 4 categories,NA,3.0.0,2026-06-04,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_4,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[EHG2_01, EHG2_02, EHG2_03, EHG2_04]",NA,cat,4,4,Post-secondary graduate,Post-secondary graduate,N/A,N/A,Post-sec. grad,Highest education,Highest level/education - 4 categories,NA,3.0.0,2026-06-04,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[EHG2_01, EHG2_02, EHG2_03, EHG2_04]",NA,cat,NA::a,4,not applicable,not applicable,N/A,N/A,not applicable,Highest education,Highest level/education - 4 categories,NA,3.0.0,2026-06-04,active,NA,NA,NA +EDUDR04,EDUDR04_cat4_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[EHG2_01, EHG2_02, EHG2_03, EHG2_04]",NA,cat,NA::b,4,missing,missing,N/A,N/A,missing,Highest education,Highest level/education - 4 categories,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_01,EHG2_01_cat3_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_01],NA,cat,1,3,Grade 8 or lower,Grade 8 or lower,N/A,1,Grade 8 or lower,Highest grade elementary/high school,Highest grade of elementary or high school,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_01,EHG2_01_cat3_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_01],NA,cat,2,3,Grade 9-10,Grade 9-10,N/A,2,Grade 9-10,Highest grade elementary/high school,Highest grade of elementary or high school,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_01,EHG2_01_cat3_3,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_01],NA,cat,3,3,Grade 11-13,Grade 11-13,N/A,3,Grade 11-13,Highest grade elementary/high school,Highest grade of elementary or high school,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_01,EHG2_01_cat3_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_01],NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Highest grade elementary/high school,Highest grade of elementary or high school,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_01,EHG2_01_cat3_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_01],NA,cat,NA::b,3,missing,missing,N/A,"[7, 9]",don't know (7); refusal (8); not stated (9),Highest grade elementary/high school,Highest grade of elementary or high school,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_02,EHG2_02_cat2_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_02],NA,cat,1,2,Yes,Yes,N/A,1,Yes,High school diploma,Completed high school diploma or equivalent,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_02,EHG2_02_cat2_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_02],NA,cat,2,2,No,No,N/A,2,No,High school diploma,Completed high school diploma or equivalent,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_02,EHG2_02_cat2_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_02],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,High school diploma,Completed high school diploma or equivalent,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_02,EHG2_02_cat2_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_02],NA,cat,NA::b,2,missing,missing,N/A,"[7, 9]",don't know (7); refusal (8); not stated (9),High school diploma,Completed high school diploma or equivalent,NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_03,EHG2_03_cat2_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_03],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Other certificate/diploma/degree,"Other education - certificate, diploma or degree",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_03,EHG2_03_cat2_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_03],NA,cat,2,2,No,No,N/A,2,No,Other certificate/diploma/degree,"Other education - certificate, diploma or degree",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_03,EHG2_03_cat2_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_03],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Other certificate/diploma/degree,"Other education - certificate, diploma or degree",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_03,EHG2_03_cat2_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_03],NA,cat,NA::b,2,missing,missing,N/A,"[7, 9]",don't know (7); refusal (8); not stated (9),Other certificate/diploma/degree,"Other education - certificate, diploma or degree",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,1,7,Less than high school diploma,Less than high school diploma,N/A,1,Less than high school diploma,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,2,7,High school diploma,High school diploma,N/A,2,High school diploma,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_3,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,3,7,Trade certificate or diploma,Trade certificate or diploma,N/A,3,Trade certificate or diploma,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_4,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,4,7,College/CEGEP diploma,College/CEGEP diploma,N/A,4,College/CEGEP diploma,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_5,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,5,7,University below bachelor's,University below bachelor's,N/A,5,University below bachelor's,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_6,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,6,7,Bachelor's degree,Bachelor's degree,N/A,6,Bachelor's degree,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_7,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,7,7,Above bachelor's,Above bachelor's,N/A,7,Above bachelor's,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +EHG2_04,EHG2_04_cat7_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[EHG2_04],NA,cat,NA::b,7,missing,missing,N/A,"[97, 99]","don't know (97); refusal (98); not stated (99)",Highest credential completed,"Highest certificate, diploma or degree completed",NA,3.0.0,2026-06-04,active,NA,NA,NA +energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",NA,N/A,Func::energy_exp_fun,N/A,N/A,N/A,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,Used for all cycles. Derived from various physical activity measure for 18+ and 12-17 years old.,3.0.0,2026-01-18,active,NA,No typeStart,NA +energy_exp,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[DHHGAGE_cont, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",NA,N/A,NA::b,N/A,missing,missing,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,NA,3.0.0,2026-01-18,active,NA,No typeStart,NA +energy_exp,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_AGE, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",NA,N/A,Func::energy_exp_fun,N/A,N/A,N/A,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,Used for all cycles. Derived from various physical activity measure for 18+ and 12-17 years old.,3.0.0,2026-01-18,active,NA,NA,NA +energy_exp,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_AGE, PAA_045, PAA_050, PAA_075, PAA_080, PAADVDYS, PAADVVIG, PAYDVTOA, PAYDVADL, PAYDVVIG, PAYDVDYS]",NA,N/A,NA::b,N/A,missing,missing,N/A,N/A,Daily energy expenditure,Daily energy expenditure,Daily energy expenditure,NA,3.0.0,2026-01-18,active,NA,NA,NA +energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,copy,N/A,Daily energry expenditure,Daily energry expenditure,N/A,"[0,43.5]",Daily energy expenditure - (D),Daily energy expenditure,Daily energy expenditure,NA,3.0.0,2026-01-18,active,NA,NA,NA +energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::a,N/A,not applicable,not applicable,N/A,99.6,Not applicable,Daily energy expenditure,Daily energy expenditure,NA,3.0.0,2026-01-18,active,NA,NA,NA +energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::b,N/A,missing,missing,N/A,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Daily energy expenditure,Daily energy expenditure,NA,3.0.0,2026-01-18,active,NA,NA,NA +energy_exp,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::b,N/A,missing,missing,N/A,else,else,Daily energy expenditure,Daily energy expenditure,NA,3.0.0,2026-01-18,active,NA,NA,NA +energy_exp_cat3,energy_exp_cat3_catN/A_Func::energy_exp_fun_cat,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[energy_exp],NA,N/A,Func::energy_exp_fun_cat,N/A,N/A,N/A,N/A,N/A,N/A,Categorical physical activity,"Categorical physical activity (Inactive, Moderately active, Active)",NA,3.0.0,2026-06-04,active,NA,NA,NA +energy_exp_cat3,energy_exp_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[energy_exp],NA,cat,1,3,Inactive,Inactive (< 1.5 kcal/kg/day),N/A,N/A,Inactive,Categorical physical activity,"Categorical physical activity (Inactive, Moderately active, Active)",NA,3.0.0,2026-06-04,active,NA,NA,NA +energy_exp_cat3,energy_exp_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[energy_exp],NA,cat,2,3,Moderately active,Moderately active (1.5 - < 3.0 kcal/kg/day),N/A,N/A,Moderately active,Categorical physical activity,"Categorical physical activity (Inactive, Moderately active, Active)",NA,3.0.0,2026-06-04,active,NA,NA,NA +energy_exp_cat3,energy_exp_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[energy_exp],NA,cat,3,3,Active,Active (>= 3.0 kcal/kg/day),N/A,N/A,Active,Categorical physical activity,"Categorical physical activity (Inactive, Moderately active, Active)",NA,3.0.0,2026-06-04,active,NA,NA,NA +energy_exp_cat3,energy_exp_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[energy_exp],NA,cat,NA::a,3,not applicable,not applicable,N/A,N/A,not applicable,Categorical physical activity,"Categorical physical activity (Inactive, Moderately active, Active)",NA,3.0.0,2026-06-04,active,NA,NA,NA +energy_exp_cat3,energy_exp_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[energy_exp],NA,cat,NA::b,3,missing,missing,N/A,N/A,missing,Categorical physical activity,"Categorical physical activity (Inactive, Moderately active, Active)",NA,3.0.0,2026-06-04,active,NA,NA,NA +FINF1,FINF1_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Food insecurity 12M,Some food insecurity in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +FINF1,FINF1_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,2,2,No,No,N/A,2,No,Food insecurity 12M,Some food insecurity in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +FINF1,FINF1_cat2_NAa,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Some food insecurity in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +FINF1,FINF1_cat2_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Some food insecurity in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +FINF1,FINF1_cat2_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Some food insecurity in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_160,FLU_160_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Ever had a flu shot,Have you ever had a flu shot?,"In 2007, question was reworded to ""Have you ever had a seasonal flu shot?"" In 2015-2018, question was reworded to ""Have you ever had a seasonal flu shot, excluding the H1N1 flu shot?""",2.2.0,2025-06-30,active,NA,NA,NA +FLU_160,FLU_160_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",NA,cat,2,2,No,No,N/A,2,No,Ever had a flu shot,Have you ever had a flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_160,FLU_160_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever had a flu shot,Have you ever had a flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_160,FLU_160_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever had a flu shot,Have you ever had a flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_160,FLU_160_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_160, cchs2003_p::FLUC_160, cchs2005_p::FLUE_160, cchs2015_2016_p::FLU_005, cchs2017_2018_p::FLU_005, [FLU_160]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Ever had a flu shot,Have you ever had a flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_162,FLU_162_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",NA,cat,1,3,<1 year ago,<1 year ago,N/A,1,<1 year ago,Last time had flu shot,When did you have your last flu shot?,"In 2015-2018, question was reworded to ""When did you have your last seasonal flu shot?""",2.2.0,2025-06-30,active,NA,NA,NA +FLU_162,FLU_162_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",NA,cat,2,3,1-<2 years ago,1-<2 years ago,N/A,2,1-<2 years ago,Last time had flu shot,When did you have your last flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_162,FLU_162_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",NA,cat,3,3,2 years ago or more,2 years ago or more,N/A,3,2 years ago or more,Last time had flu shot,When did you have your last flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_162,FLU_162_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Last time had flu shot,When did you have your last flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_162,FLU_162_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Last time had flu shot,When did you have your last flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +FLU_162,FLU_162_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, cchs2015_2016_p::FLU_010, cchs2017_2018_p::FLU_010, [FLU_162]",NA,cat,NA::b,3,missing,missing,N/A,else,else,Last time had flu shot,When did you have your last flu shot?,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,2,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,"This variable is derived from FINF1, FSCDHFS, FSCDHFS2 by dichotomizing food insecurity into 2 categories. See ?food_insecurity_der for more details",2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAa,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1",NA,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_1,cat,cchs2005_p,[FSCEDHFS],NA,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],NA,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],NA,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_2,cat,cchs2005_p,[FSCEDHFS],NA,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,3,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAa,cat,cchs2005_p,[FSCEDHFS],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAb,cat,cchs2005_p,[FSCEDHFS],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAb,cat,cchs2005_p,[FSCEDHFS],NA,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,1,2,No food insecurity,No food insecurity in the last 12 months,N/A,0,No food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,1,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,2,2,Food insecurity,Food insecurity in the last 12 months,N/A,2,Food insecurity in the last 12 months,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +food_insecurity_der,food_insecurity_der_cat2_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Food insecurity 12M,Derived food insecurity,NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS,FSCDHFS_cat4_0,cat,cchs2005_p,[FSCEDHFS],NA,cat,0,4,Secure,Secure,N/A,0,Secure,Food security,Household food security status - (D),CCHS 2005 has different categories from other CCHS cycles so new variable created,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS,FSCDHFS_cat4_1,cat,cchs2005_p,[FSCEDHFS],NA,cat,1,4,Without hunger,Without hunger,N/A,1,Without hunger,Food security,Household food security status - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS,FSCDHFS_cat4_2,cat,cchs2005_p,[FSCEDHFS],NA,cat,2,4,W/mod. hunger,With moderate hunger,N/A,2,With moderate hunger,Food security,Household food security status - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS,FSCDHFS_cat4_3,cat,cchs2005_p,[FSCEDHFS],NA,cat,3,4,W/severe hunger,With severe hunger,N/A,3,With severe hunger,Food security,Household food security status - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS,FSCDHFS_cat4_NAa,cat,cchs2005_p,[FSCEDHFS],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Food security,Household food security status - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS,FSCDHFS_cat4_NAb,cat,cchs2005_p,[FSCEDHFS],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Food security,Household food security status - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS,FSCDHFS_cat4_NAb,cat,cchs2005_p,[FSCEDHFS],NA,cat,NA::b,4,missing,missing,N/A,else,else,Food security,Household food security status - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS2,FSCDHFS2_cat3_0,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,0,3,Food secure,Food secure,N/A,0,Food secure,HC food security,Household food security status - (HC),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS2,FSCDHFS2_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,1,3,Mod. food insec.,Mod. food insec.,N/A,1,Moderate food insecurity,HC food security,Household food security status - (HC),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS2,FSCDHFS2_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,2,3,Sev. food insec.,Sev. food insec.,N/A,2,Severe food insecurity,HC food security,Household food security status - (HC),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS2,FSCDHFS2_cat3_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HC food security,Household food security status - (HC),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS2,FSCDHFS2_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HC food security,Household food security status - (HC),NA,2.2.0,2025-06-30,active,NA,NA,NA +FSCDHFS2,FSCDHFS2_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::FSCDVHFS, cchs2017_2018_p::FSCDVHFS, [FSCDHFS2]",NA,cat,NA::b,3,missing,missing,N/A,else,else,HC food security,Household food security status - (HC),NA,2.2.0,2025-06-30,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,1,5,Per day,Per day,N/A,1,Per day,Drinks fruit juice unit,Drinks fruit juices - reporting unit,"How often do you usually drink fruit juices such as orange, grapefruit or tomato? (For example, once a day, three times a week, or twice a month)",2.2.0,2026-02-13,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,2,5,Per week,Per week,N/A,2,Per week,Drinks fruit juice unit,Drinks fruit juices - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,3,5,Per month,Per month,N/A,3,Per month,Drinks fruit juice unit,Drinks fruit juices - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,4,5,Per year,Per year,N/A,4,Per year,Drinks fruit juice unit,Drinks fruit juices - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,5,5,Never,Never,N/A,5,Never,Drinks fruit juice unit,Drinks fruit juices - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Drinks fruit juice unit,Drinks fruit juices - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Drinks fruit juice unit,Drinks fruit juices - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1A,FVC_1A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1A, cchs2003_m::FVCC_1A, cchs2005_m::FVCE_1A, [FVC_1A]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Drinks fruit juice unit,Drinks fruit juices - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1B, cchs2003_m::FVCC_1B, cchs2005_m::FVCE_1B, [FVC_1B]",NA,cont,copy,N/A,Drinks fruit juices daily,Drinks fruit juices daily,times/day,"[1,20]",Drinks fruit juices - no. of times/day,Drinks fruit juices daily,Drinks fruit juices - no. of times/day,Unit of measure of value in FVC_1A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1B, cchs2003_m::FVCC_1B, cchs2005_m::FVCE_1B, [FVC_1B]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,96,Not applicable,Drinks fruit juices daily,Drinks fruit juices - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1B, cchs2003_m::FVCC_1B, cchs2005_m::FVCE_1B, [FVC_1B]",NA,cont,NA::b,N/A,missing,missing,times/day,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices daily,Drinks fruit juices - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1B, cchs2003_m::FVCC_1B, cchs2005_m::FVCE_1B, [FVC_1B]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Drinks fruit juices daily,Drinks fruit juices - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1C, cchs2003_m::FVCC_1C, cchs2005_m::FVCE_1C, [FVC_1C]",NA,cont,copy,N/A,Drinks fruit juices weekly,Drinks fruit juices weekly,times/week,"[1,50]",Drinks fruit juices - no. of times/week,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,Unit of measure of value in FVC_1A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1C, cchs2003_m::FVCC_1C, cchs2005_m::FVCE_1C, [FVC_1C]",NA,cont,NA::a,N/A,not applicable,not applicable,times/week,96,Not applicable,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1C, cchs2003_m::FVCC_1C, cchs2005_m::FVCE_1C, [FVC_1C]",NA,cont,NA::b,N/A,missing,missing,times/week,"[97,99]",don't know (97); refusal (98); not stated (99),Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1C, cchs2003_m::FVCC_1C, cchs2005_m::FVCE_1C, [FVC_1C]",NA,cont,NA::b,N/A,missing,missing,times/week,else,else,Drinks fruit juices weekly,Drinks fruit juices - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1D, cchs2003_m::FVCC_1D, cchs2005_m::FVCE_1D, [FVC_1D]",NA,cont,copy,N/A,Drinks fruit juices monthly,Drinks fruit juices monthly,times/month,"[1,75]",Drinks fruit juices - no. of times/month,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,Unit of measure of value in FVC_1A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1D, cchs2003_m::FVCC_1D, cchs2005_m::FVCE_1D, [FVC_1D]",NA,cont,NA::a,N/A,not applicable,not applicable,times/month,996,Not applicable,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1D, cchs2003_m::FVCC_1D, cchs2005_m::FVCE_1D, [FVC_1D]",NA,cont,NA::b,N/A,missing,missing,times/month,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1D, cchs2003_m::FVCC_1D, cchs2005_m::FVCE_1D, [FVC_1D]",NA,cont,NA::b,N/A,missing,missing,times/month,else,else,Drinks fruit juices monthly,Drinks fruit juices - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1E, cchs2003_m::FVCC_1E, cchs2005_m::FVCE_1E, [FVC_1E]",NA,cont,copy,N/A,Drinks fruit juices yearly,Drinks fruit juices yearly,times/year,"[1,250]",Drinks fruit juices - no. of times/year,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,Unit of measure of value in FVC_1A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1E, cchs2003_m::FVCC_1E, cchs2005_m::FVCE_1E, [FVC_1E]",NA,cont,NA::a,N/A,not applicable,not applicable,times/year,996,Not applicable,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1E, cchs2003_m::FVCC_1E, cchs2005_m::FVCE_1E, [FVC_1E]",NA,cont,NA::b,N/A,missing,missing,times/year,"[997,999]",don't know (997); refusal (998); not stated (999),Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_1E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_1E, cchs2003_m::FVCC_1E, cchs2005_m::FVCE_1E, [FVC_1E]",NA,cont,NA::b,N/A,missing,missing,times/year,else,else,Drinks fruit juices yearly,Drinks fruit juices - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,1,5,Per day,Per day,N/A,1,Per day,Eats fruit unit,Eats fruit - reporting unit,"Not counting juice, how often do you usually eat fruit?",2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,2,5,Per week,Per week,N/A,2,Per week,Eats fruit unit,Eats fruit - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,3,5,Per month,Per month,N/A,3,Per month,Eats fruit unit,Eats fruit - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,4,5,Per year,Per year,N/A,4,Per year,Eats fruit unit,Eats fruit - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,5,5,Never,Never,N/A,5,Never,Eats fruit unit,Eats fruit - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats fruit unit,Eats fruit - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats fruit unit,Eats fruit - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2A,FVC_2A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2A, cchs2003_m::FVCC_2A, cchs2005_m::FVCE_2A, [FVC_2A]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Eats fruit unit,Eats fruit - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2B, cchs2003_m::FVCC_2B, cchs2005_m::FVCE_2B, [FVC_2B]",NA,cont,copy,N/A,Eats fruit daily,Eats fruit daily,times/day,"[1,20]",Eats fruit - no. of times/day,Eats fruit daily,Eats fruit - no. of times/day,Unit of measure of value in FVC_2A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2B, cchs2003_m::FVCC_2B, cchs2005_m::FVCE_2B, [FVC_2B]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,96,Not applicable,Eats fruit daily,Eats fruit - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2B, cchs2003_m::FVCC_2B, cchs2005_m::FVCE_2B, [FVC_2B]",NA,cont,NA::b,N/A,missing,missing,times/day,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit daily,Eats fruit - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2B, cchs2003_m::FVCC_2B, cchs2005_m::FVCE_2B, [FVC_2B]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Eats fruit daily,Eats fruit - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2C, cchs2003_m::FVCC_2C, cchs2005_m::FVCE_2C, [FVC_2C]",NA,cont,copy,N/A,Eats fruit weekly,Eats fruit weekly,times/week,"[1,54]",Eats fruit - no. of times/week,Eats fruit weekly,Eats fruit - no. of times/week,Unit of measure of value in FVC_2A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2C, cchs2003_m::FVCC_2C, cchs2005_m::FVCE_2C, [FVC_2C]",NA,cont,NA::a,N/A,not applicable,not applicable,times/week,96,Not applicable,Eats fruit weekly,Eats fruit - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2C, cchs2003_m::FVCC_2C, cchs2005_m::FVCE_2C, [FVC_2C]",NA,cont,NA::b,N/A,missing,missing,times/week,"[97,99]",don't know (97); refusal (98); not stated (99),Eats fruit weekly,Eats fruit - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2C, cchs2003_m::FVCC_2C, cchs2005_m::FVCE_2C, [FVC_2C]",NA,cont,NA::b,N/A,missing,missing,times/week,else,else,Eats fruit weekly,Eats fruit - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2D, cchs2003_m::FVCC_2D, cchs2005_m::FVCE_2D, [FVC_2D]",NA,cont,copy,N/A,Eats fruit monthly,Eats fruit monthly,times/month,"[1,105]",Eats fruit - no. of times/month,Eats fruit monthly,Eats fruit - no. of times/month,Unit of measure of value in FVC_2A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2D, cchs2003_m::FVCC_2D, cchs2005_m::FVCE_2D, [FVC_2D]",NA,cont,NA::a,N/A,not applicable,not applicable,times/month,996,Not applicable,Eats fruit monthly,Eats fruit - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2D, cchs2003_m::FVCC_2D, cchs2005_m::FVCE_2D, [FVC_2D]",NA,cont,NA::b,N/A,missing,missing,times/month,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit monthly,Eats fruit - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2D, cchs2003_m::FVCC_2D, cchs2005_m::FVCE_2D, [FVC_2D]",NA,cont,NA::b,N/A,missing,missing,times/month,else,else,Eats fruit monthly,Eats fruit - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2E, cchs2003_m::FVCC_2E, cchs2005_m::FVCE_2E, [FVC_2E]",NA,cont,copy,N/A,Eats fruit yearly,Eats fruit yearly,times/year,"[1,350]",Eats fruit - no. of times/year,Eats fruit yearly,Eats fruit - no. of times/year,Unit of measure of value in FVC_2A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2E, cchs2003_m::FVCC_2E, cchs2005_m::FVCE_2E, [FVC_2E]",NA,cont,NA::a,N/A,not applicable,not applicable,times/year,996,Not applicable,Eats fruit yearly,Eats fruit - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2E, cchs2003_m::FVCC_2E, cchs2005_m::FVCE_2E, [FVC_2E]",NA,cont,NA::b,N/A,missing,missing,times/year,"[997,999]",don't know (997); refusal (998); not stated (999),Eats fruit yearly,Eats fruit - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_2E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_2E, cchs2003_m::FVCC_2E, cchs2005_m::FVCE_2E, [FVC_2E]",NA,cont,NA::b,N/A,missing,missing,times/year,else,else,Eats fruit yearly,Eats fruit - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,1,5,Per day,Per day,N/A,1,Per day,Eats green salad unit,Eats green salad - reporting unit,How often do you (usually) eat green salad?,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,2,5,Per week,Per week,N/A,2,Per week,Eats green salad unit,Eats green salad - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,3,5,Per month,Per month,N/A,3,Per month,Eats green salad unit,Eats green salad - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,4,5,Per year,Per year,N/A,4,Per year,Eats green salad unit,Eats green salad - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,5,5,Never,Never,N/A,5,Never,Eats green salad unit,Eats green salad - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats green salad unit,Eats green salad - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats green salad unit,Eats green salad - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3A,FVC_3A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3A, cchs2003_m::FVCC_3A, cchs2005_m::FVCE_3A, [FVC_3A]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Eats green salad unit,Eats green salad - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3B, cchs2003_m::FVCC_3B, cchs2005_m::FVCE_3B, [FVC_3B]",NA,cont,copy,N/A,Eats green salad daily,Eats green salad daily,times/day,"[1,14]",Eats green salad - no. of times/day,Eats green salad daily,Eats green salad - no. of times/day,Unit of measure of value in FVC_3A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3B, cchs2003_m::FVCC_3B, cchs2005_m::FVCE_3B, [FVC_3B]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,96,Not applicable,Eats green salad daily,Eats green salad - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3B, cchs2003_m::FVCC_3B, cchs2005_m::FVCE_3B, [FVC_3B]",NA,cont,NA::b,N/A,missing,missing,times/day,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad daily,Eats green salad - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3B, cchs2003_m::FVCC_3B, cchs2005_m::FVCE_3B, [FVC_3B]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Eats green salad daily,Eats green salad - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3C, cchs2003_m::FVCC_3C, cchs2005_m::FVCE_3C, [FVC_3C]",NA,cont,copy,N/A,Eats green salad weekly,Eats green salad weekly,times/week,"[1,67]",Eats green salad - no. of times/week,Eats green salad weekly,Eats green salad - no. of times/week,Unit of measure of value in FVC_3A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3C, cchs2003_m::FVCC_3C, cchs2005_m::FVCE_3C, [FVC_3C]",NA,cont,NA::a,N/A,not applicable,not applicable,times/week,96,Not applicable,Eats green salad weekly,Eats green salad - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3C, cchs2003_m::FVCC_3C, cchs2005_m::FVCE_3C, [FVC_3C]",NA,cont,NA::b,N/A,missing,missing,times/week,"[97,99]",don't know (97); refusal (98); not stated (99),Eats green salad weekly,Eats green salad - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3C, cchs2003_m::FVCC_3C, cchs2005_m::FVCE_3C, [FVC_3C]",NA,cont,NA::b,N/A,missing,missing,times/week,else,else,Eats green salad weekly,Eats green salad - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3D, cchs2003_m::FVCC_3D, cchs2005_m::FVCE_3D, [FVC_3D]",NA,cont,copy,N/A,Eats green salad monthly,Eats green salad monthly,times/month,"[1,47]",Eats green salad - no. of times/month,Eats green salad monthly,Eats green salad - no. of times/month,Unit of measure of value in FVC_3A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3D, cchs2003_m::FVCC_3D, cchs2005_m::FVCE_3D, [FVC_3D]",NA,cont,NA::a,N/A,not applicable,not applicable,times/month,996,Not applicable,Eats green salad monthly,Eats green salad - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3D, cchs2003_m::FVCC_3D, cchs2005_m::FVCE_3D, [FVC_3D]",NA,cont,NA::b,N/A,missing,missing,times/month,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad monthly,Eats green salad - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3D, cchs2003_m::FVCC_3D, cchs2005_m::FVCE_3D, [FVC_3D]",NA,cont,NA::b,N/A,missing,missing,times/month,else,else,Eats green salad monthly,Eats green salad - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3E, cchs2003_m::FVCC_3E, cchs2005_m::FVCE_3E, [FVC_3E]",NA,cont,copy,N/A,Eats green salad yearly,Eats green salad yearly,times/year,"[1,330]",Eats green salad - no. of times/year,Eats green salad yearly,Eats green salad - no. of times/year,Unit of measure of value in FVC_3A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3E, cchs2003_m::FVCC_3E, cchs2005_m::FVCE_3E, [FVC_3E]",NA,cont,NA::a,N/A,not applicable,not applicable,times/year,996,Not applicable,Eats green salad yearly,Eats green salad - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3E, cchs2003_m::FVCC_3E, cchs2005_m::FVCE_3E, [FVC_3E]",NA,cont,NA::b,N/A,missing,missing,times/year,"[997,999]",don't know (997); refusal (998); not stated (999),Eats green salad yearly,Eats green salad - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_3E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_3E, cchs2003_m::FVCC_3E, cchs2005_m::FVCE_3E, [FVC_3E]",NA,cont,NA::b,N/A,missing,missing,times/year,else,else,Eats green salad yearly,Eats green salad - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,1,5,Per day,Per day,N/A,1,Per day,Eats potatoes unit,Eats potatoes - reporting unit,"How often do you usually eat potatoes, not including french fries, fried potatoes, or potato chips?",2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,2,5,Per week,Per week,N/A,2,Per week,Eats potatoes unit,Eats potatoes - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,3,5,Per month,Per month,N/A,3,Per month,Eats potatoes unit,Eats potatoes - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,4,5,Per year,Per year,N/A,4,Per year,Eats potatoes unit,Eats potatoes - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,5,5,Never,Never,N/A,5,Never,Eats potatoes unit,Eats potatoes - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats potatoes unit,Eats potatoes - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats potatoes unit,Eats potatoes - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4A,FVC_4A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4A, cchs2003_m::FVCC_4A, cchs2005_m::FVCE_4A, [FVC_4A]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Eats potatoes unit,Eats potatoes - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4B, cchs2003_m::FVCC_4B, cchs2005_m::FVCE_4B, [FVC_4B]",NA,cont,copy,N/A,Eats potatoes daily,Eats potatoes daily,times/day,"[1,17]",Eats potatoes - no. of times/day,Eats potatoes daily,Eats potatoes - no. of times/day,Unit of measure of value in FVC_4A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4B, cchs2003_m::FVCC_4B, cchs2005_m::FVCE_4B, [FVC_4B]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,96,Not applicable,Eats potatoes daily,Eats potatoes - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4B, cchs2003_m::FVCC_4B, cchs2005_m::FVCE_4B, [FVC_4B]",NA,cont,NA::b,N/A,missing,missing,times/day,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes daily,Eats potatoes - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4B, cchs2003_m::FVCC_4B, cchs2005_m::FVCE_4B, [FVC_4B]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Eats potatoes daily,Eats potatoes - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4C, cchs2003_m::FVCC_4C, cchs2005_m::FVCE_4C, [FVC_4C]",NA,cont,copy,N/A,Eats potatoes weekly,Eats potatoes weekly,times/week,"[1,69]",Eats potatoes - no. of times/week,Eats potatoes weekly,Eats potatoes - no. of times/week,Unit of measure of value in FVC_4A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4C, cchs2003_m::FVCC_4C, cchs2005_m::FVCE_4C, [FVC_4C]",NA,cont,NA::a,N/A,not applicable,not applicable,times/week,96,Not applicable,Eats potatoes weekly,Eats potatoes - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4C, cchs2003_m::FVCC_4C, cchs2005_m::FVCE_4C, [FVC_4C]",NA,cont,NA::b,N/A,missing,missing,times/week,"[97,99]",don't know (97); refusal (98); not stated (99),Eats potatoes weekly,Eats potatoes - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4C, cchs2003_m::FVCC_4C, cchs2005_m::FVCE_4C, [FVC_4C]",NA,cont,NA::b,N/A,missing,missing,times/week,else,else,Eats potatoes weekly,Eats potatoes - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4D, cchs2003_m::FVCC_4D, cchs2005_m::FVCE_4D, [FVC_4D]",NA,cont,copy,N/A,Eats potatoes monthly,Eats potatoes monthly,times/month,"[1,111]",Eats potatoes - no. of times/month,Eats potatoes monthly,Eats potatoes - no. of times/month,Unit of measure of value in FVC_4A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4D, cchs2003_m::FVCC_4D, cchs2005_m::FVCE_4D, [FVC_4D]",NA,cont,NA::a,N/A,not applicable,not applicable,times/month,996,Not applicable,Eats potatoes monthly,Eats potatoes - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4D, cchs2003_m::FVCC_4D, cchs2005_m::FVCE_4D, [FVC_4D]",NA,cont,NA::b,N/A,missing,missing,times/month,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes monthly,Eats potatoes - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4D, cchs2003_m::FVCC_4D, cchs2005_m::FVCE_4D, [FVC_4D]",NA,cont,NA::b,N/A,missing,missing,times/month,else,else,Eats potatoes monthly,Eats potatoes - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4E, cchs2003_m::FVCC_4E, cchs2005_m::FVCE_4E, [FVC_4E]",NA,cont,copy,N/A,Eats potatoes yearly,Eats potatoes yearly,times/year,"[1,365]",Eats potatoes - no. of times/year,Eats potatoes yearly,Eats potatoes - no. of times/year,Unit of measure of value in FVC_4A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4E, cchs2003_m::FVCC_4E, cchs2005_m::FVCE_4E, [FVC_4E]",NA,cont,NA::a,N/A,not applicable,not applicable,times/year,996,Not applicable,Eats potatoes yearly,Eats potatoes - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4E, cchs2003_m::FVCC_4E, cchs2005_m::FVCE_4E, [FVC_4E]",NA,cont,NA::b,N/A,missing,missing,times/year,"[997,999]",don't know (997); refusal (998); not stated (999),Eats potatoes yearly,Eats potatoes - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_4E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_4E, cchs2003_m::FVCC_4E, cchs2005_m::FVCE_4E, [FVC_4E]",NA,cont,NA::b,N/A,missing,missing,times/year,else,else,Eats potatoes yearly,Eats potatoes - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,1,5,Per day,Per day,N/A,1,Per day,Eats carrots unit,Eats carrots - reporting unit,How often do you (usually) eat carrots?,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,2,5,Per week,Per week,N/A,2,Per week,Eats carrots unit,Eats carrots - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,3,5,Per month,Per month,N/A,3,Per month,Eats carrots unit,Eats carrots - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,4,5,Per year,Per year,N/A,4,Per year,Eats carrots unit,Eats carrots - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,5,5,Never,Never,N/A,5,Never,Eats carrots unit,Eats carrots - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats carrots unit,Eats carrots - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats carrots unit,Eats carrots - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5A,FVC_5A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5A, cchs2003_m::FVCC_5A, cchs2005_m::FVCE_5A, [FVC_5A]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Eats carrots unit,Eats carrots - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5B, cchs2003_m::FVCC_5B, cchs2005_m::FVCE_5B, [FVC_5B]",NA,cont,copy,N/A,Eats carrots daily,Eats carrots daily,times/day,"[1,15]",Eats carrots - no. of times/day,Eats carrots daily,Eats carrots - no. of times/day,Unit of measure of value in FVC_5A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5B, cchs2003_m::FVCC_5B, cchs2005_m::FVCE_5B, [FVC_5B]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,96,Not applicable,Eats carrots daily,Eats carrots - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5B, cchs2003_m::FVCC_5B, cchs2005_m::FVCE_5B, [FVC_5B]",NA,cont,NA::b,N/A,missing,missing,times/day,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots daily,Eats carrots - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5B, cchs2003_m::FVCC_5B, cchs2005_m::FVCE_5B, [FVC_5B]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Eats carrots daily,Eats carrots - no. of times/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5C, cchs2003_m::FVCC_5C, cchs2005_m::FVCE_5C, [FVC_5C]",NA,cont,copy,N/A,Eats carrots weekly,Eats carrots weekly,times/week,"[1,75]",Eats carrots - no. of times/week,Eats carrots weekly,Eats carrots - no. of times/week,Unit of measure of value in FVC_5A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5C, cchs2003_m::FVCC_5C, cchs2005_m::FVCE_5C, [FVC_5C]",NA,cont,NA::a,N/A,not applicable,not applicable,times/week,96,Not applicable,Eats carrots weekly,Eats carrots - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5C, cchs2003_m::FVCC_5C, cchs2005_m::FVCE_5C, [FVC_5C]",NA,cont,NA::b,N/A,missing,missing,times/week,"[97,99]",don't know (97); refusal (98); not stated (99),Eats carrots weekly,Eats carrots - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5C, cchs2003_m::FVCC_5C, cchs2005_m::FVCE_5C, [FVC_5C]",NA,cont,NA::b,N/A,missing,missing,times/week,else,else,Eats carrots weekly,Eats carrots - no. of times/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5D, cchs2003_m::FVCC_5D, cchs2005_m::FVCE_5D, [FVC_5D]",NA,cont,copy,N/A,Eats carrots monthly,Eats carrots monthly,times/month,"[1,115]",Eats carrots - no. of times/month,Eats carrots monthly,Eats carrots - no. of times/month,Unit of measure of value in FVC_5A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5D, cchs2003_m::FVCC_5D, cchs2005_m::FVCE_5D, [FVC_5D]",NA,cont,NA::a,N/A,not applicable,not applicable,times/month,996,Not applicable,Eats carrots monthly,Eats carrots - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5D, cchs2003_m::FVCC_5D, cchs2005_m::FVCE_5D, [FVC_5D]",NA,cont,NA::b,N/A,missing,missing,times/month,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots monthly,Eats carrots - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5D, cchs2003_m::FVCC_5D, cchs2005_m::FVCE_5D, [FVC_5D]",NA,cont,NA::b,N/A,missing,missing,times/month,else,else,Eats carrots monthly,Eats carrots - no. of times/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5E, cchs2003_m::FVCC_5E, cchs2005_m::FVCE_5E, [FVC_5E]",NA,cont,copy,N/A,Eats carrots yearly,Eats carrots yearly,times/year,"[1,270]",Eats carrots - no. of times/year,Eats carrots yearly,Eats carrots - no. of times/year,Unit of measure of value in FVC_5A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5E, cchs2003_m::FVCC_5E, cchs2005_m::FVCE_5E, [FVC_5E]",NA,cont,NA::a,N/A,not applicable,not applicable,times/year,996,Not applicable,Eats carrots yearly,Eats carrots - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5E, cchs2003_m::FVCC_5E, cchs2005_m::FVCE_5E, [FVC_5E]",NA,cont,NA::b,N/A,missing,missing,times/year,"[997,999]",don't know (997); refusal (998); not stated (999),Eats carrots yearly,Eats carrots - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_5E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_5E, cchs2003_m::FVCC_5E, cchs2005_m::FVCE_5E, [FVC_5E]",NA,cont,NA::b,N/A,missing,missing,times/year,else,else,Eats carrots yearly,Eats carrots - no. of times/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,1,5,Per day,Per day,N/A,1,Per day,Eats other vegetables unit,Eats other vegetables - reporting unit,"Not counting carrots, potatoes, or salad, how many servings of other vegetables do you usually eat?",2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,2,5,Per week,Per week,N/A,2,Per week,Eats other vegetables unit,Eats other vegetables - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,3,5,Per month,Per month,N/A,3,Per month,Eats other vegetables unit,Eats other vegetables - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,4,5,Per year,Per year,N/A,4,Per year,Eats other vegetables unit,Eats other vegetables - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,5,5,Never,Never,N/A,5,Never,Eats other vegetables unit,Eats other vegetables - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Eats other vegetables unit,Eats other vegetables - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Eats other vegetables unit,Eats other vegetables - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6A,FVC_6A_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6A, cchs2003_m::FVCC_6A, cchs2005_m::FVCE_6A, [FVC_6A]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Eats other vegetables unit,Eats other vegetables - reporting unit,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6B, cchs2003_m::FVCC_6B, cchs2005_m::FVCE_6B, [FVC_6B]",NA,cont,copy,N/A,Eats other vegetables daily,Eats other vegetables daily,times/day,"[1,20]",Eats other vegetables - servings/day,Eats other vegetables daily,Eats other vegetables - servings/day,Unit of measure of value in FVC_6A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6B, cchs2003_m::FVCC_6B, cchs2005_m::FVCE_6B, [FVC_6B]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,96,Not applicable,Eats other vegetables daily,Eats other vegetables - servings/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6B, cchs2003_m::FVCC_6B, cchs2005_m::FVCE_6B, [FVC_6B]",NA,cont,NA::b,N/A,missing,missing,times/day,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables daily,Eats other vegetables - servings/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6B,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6B, cchs2003_m::FVCC_6B, cchs2005_m::FVCE_6B, [FVC_6B]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Eats other vegetables daily,Eats other vegetables - servings/day,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6C, cchs2003_m::FVCC_6C, cchs2005_m::FVCE_6C, [FVC_6C]",NA,cont,copy,N/A,Eats other vegetables weekly,Eats other vegetables weekly,times/week,"[1,83]",Eats other vegetables - servings/week,Eats other vegetables weekly,Eats other vegetables - servings/week,Unit of measure of value in FVC_6A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6C, cchs2003_m::FVCC_6C, cchs2005_m::FVCE_6C, [FVC_6C]",NA,cont,NA::a,N/A,not applicable,not applicable,times/week,96,Not applicable,Eats other vegetables weekly,Eats other vegetables - servings/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6C, cchs2003_m::FVCC_6C, cchs2005_m::FVCE_6C, [FVC_6C]",NA,cont,NA::b,N/A,missing,missing,times/week,"[97,99]",don't know (97); refusal (98); not stated (99),Eats other vegetables weekly,Eats other vegetables - servings/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6C, cchs2003_m::FVCC_6C, cchs2005_m::FVCE_6C, [FVC_6C]",NA,cont,NA::b,N/A,missing,missing,times/week,else,else,Eats other vegetables weekly,Eats other vegetables - servings/week,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6D, cchs2003_m::FVCC_6D, cchs2005_m::FVCE_6D, [FVC_6D]",NA,cont,copy,N/A,Eats other vegetables monthly,not applicable,times/month,"[1,120]",Eats other vegetables - servings/month,Eats other vegetables monthly,Eats other vegetables - servings/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6D, cchs2003_m::FVCC_6D, cchs2005_m::FVCE_6D, [FVC_6D]",NA,cont,NA::a,N/A,not applicable,not applicable,times/month,996,Not applicable,Eats other vegetables monthly,Eats other vegetables - servings/month,Unit of measure of value in FVC_6A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6D, cchs2003_m::FVCC_6D, cchs2005_m::FVCE_6D, [FVC_6D]",NA,cont,NA::b,N/A,missing,missing,times/month,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables monthly,Eats other vegetables - servings/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6D,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6D, cchs2003_m::FVCC_6D, cchs2005_m::FVCE_6D, [FVC_6D]",NA,cont,NA::b,N/A,missing,missing,times/month,else,else,Eats other vegetables monthly,Eats other vegetables - servings/month,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6E, cchs2003_m::FVCC_6E, cchs2005_m::FVCE_6E, [FVC_6E]",NA,cont,copy,N/A,Eats other vegetables yearly,Eats other vegetables yearly,times/year,"[1,300]",Eats other vegetables - servings/year,Eats other vegetables yearly,Eats other vegetables - servings/year,Unit of measure of value in FVC_6A.,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6E, cchs2003_m::FVCC_6E, cchs2005_m::FVCE_6E, [FVC_6E]",NA,cont,NA::a,N/A,not applicable,not applicable,times/year,996,Not applicable,Eats other vegetables yearly,Eats other vegetables - servings/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6E, cchs2003_m::FVCC_6E, cchs2005_m::FVCE_6E, [FVC_6E]",NA,cont,NA::b,N/A,missing,missing,times/year,"[997,999]",don't know (997); refusal (998); not stated (999),Eats other vegetables yearly,Eats other vegetables - servings/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVC_6E,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::FVCA_6E, cchs2003_m::FVCC_6E, cchs2005_m::FVCE_6E, [FVC_6E]",NA,cont,NA::b,N/A,missing,missing,times/year,else,else,Eats other vegetables yearly,Eats other vegetables - servings/year,NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, cchs2001_m::FVCADCAR, cchs2003_m::FVCCDCAR, cchs2005_m::FVCEDCAR, cchs2015_2016_m::FVCDVORA, cchs2017_2018_m::FVCDVORA, [FVCDCAR]",NA,cont,copy,N/A,Daily carrots,Daily carrots,times/day,"[0,30]",Daily consumption - carrots - (D),Carrot consumption,Daily consumption - carrots (D),2015 onward changed question to look at all orange-coloured vegetables,2.2.0,2026-02-13,active,NA,NA,NA +FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, cchs2001_m::FVCADCAR, cchs2003_m::FVCCDCAR, cchs2005_m::FVCEDCAR, cchs2015_2016_m::FVCDVORA, cchs2017_2018_m::FVCDVORA, [FVCDCAR]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,999.6,Not applicable,Carrot consumption,Daily consumption - carrots (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, cchs2001_m::FVCADCAR, cchs2003_m::FVCCDCAR, cchs2005_m::FVCEDCAR, cchs2015_2016_m::FVCDVORA, cchs2017_2018_m::FVCDVORA, [FVCDCAR]",NA,cont,NA::b,N/A,missing,missing,times/day,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Carrot consumption,Daily consumption - carrots (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS",2.2.0,2026-02-13,active,NA,NA,NA +FVCDCAR,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, cchs2015_2016_p::FVCDVORA, cchs2017_2018_p::FVCDVORA, cchs2001_m::FVCADCAR, cchs2003_m::FVCCDCAR, cchs2005_m::FVCEDCAR, cchs2015_2016_m::FVCDVORA, cchs2017_2018_m::FVCDVORA, [FVCDCAR]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Carrot consumption,Daily consumption - carrots (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, cchs2001_m::FVCADFRU, cchs2003_m::FVCCDFRU, cchs2005_m::FVCEDFRU, cchs2015_2016_m::FVCDVFRU, cchs2017_2018_m::FVCDVFRU, [FVCDFRU]",NA,cont,copy,N/A,Daily fruit,Daily fruit,times/day,"[0,73]",Daily consumption - fruit - (D),Fruit consumption,Daily consumption - fruit - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, cchs2001_m::FVCADFRU, cchs2003_m::FVCCDFRU, cchs2005_m::FVCEDFRU, cchs2015_2016_m::FVCDVFRU, cchs2017_2018_m::FVCDVFRU, [FVCDFRU]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,999.6,Not applicable,Fruit consumption,Daily consumption - fruit - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, cchs2001_m::FVCADFRU, cchs2003_m::FVCCDFRU, cchs2005_m::FVCEDFRU, cchs2015_2016_m::FVCDVFRU, cchs2017_2018_m::FVCDVFRU, [FVCDFRU]",NA,cont,NA::b,N/A,missing,missing,times/day,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Fruit consumption,Daily consumption - fruit - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,2.2.0,2026-02-13,active,NA,NA,NA +FVCDFRU,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, cchs2015_2016_p::FVCDVFRU, cchs2017_2018_p::FVCDVFRU, cchs2001_m::FVCADFRU, cchs2003_m::FVCCDFRU, cchs2005_m::FVCEDFRU, cchs2015_2016_m::FVCDVFRU, cchs2017_2018_m::FVCDVFRU, [FVCDFRU]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Fruit consumption,Daily consumption - fruit - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_m::FVCADJUI, cchs2003_m::FVCCDJUI, cchs2005_m::FVCEDJUI, cchs2015_2016_m::FVCDVJUI, cchs2017_2018_m::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,copy,N/A,Daily juice,Daily juice,times/day,"[0,47]",Daily consumption - fruit juice - (D),Juice consumption,Daily consumption - fruit juice (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_m::FVCADJUI, cchs2003_m::FVCCDJUI, cchs2005_m::FVCEDJUI, cchs2015_2016_m::FVCDVJUI, cchs2017_2018_m::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,times/day,999.6,Not applicable,Juice consumption,Daily consumption - fruit juice (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_m::FVCADJUI, cchs2003_m::FVCCDJUI, cchs2005_m::FVCEDJUI, cchs2015_2016_m::FVCDVJUI, cchs2017_2018_m::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::b,N/A,missing,missing,times/day,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Juice consumption,Daily consumption - fruit juice (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,2.2.0,2026-02-13,active,NA,NA,NA +FVCDJUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, cchs2015_2016_p::FVCDVJUI, cchs2017_2018_p::FVCDVJUI, cchs2001_m::FVCADJUI, cchs2003_m::FVCCDJUI, cchs2005_m::FVCEDJUI, cchs2015_2016_m::FVCDVJUI, cchs2017_2018_m::FVCDVJUI, [FVCDJUI]",ICES confirmed,cont,NA::b,N/A,missing,missing,times/day,else,else,Juice consumption,Daily consumption - fruit juice (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_m::FVCADPOT, cchs2003_m::FVCCDPOT, cchs2005_m::FVCEDPOT, cchs2015_2016_m::FVCDVPOT, cchs2017_2018_m::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,copy,N/A,Daily potatoes,Daily potatoes,times/day,"[0,30]",Daily consumption - potatoes - (D),Potato consumption,Daily consumption - potatoes (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_m::FVCADPOT, cchs2003_m::FVCCDPOT, cchs2005_m::FVCEDPOT, cchs2015_2016_m::FVCDVPOT, cchs2017_2018_m::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,times/day,999.6,Not applicable,Potato consumption,Daily consumption - potatoes (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_m::FVCADPOT, cchs2003_m::FVCCDPOT, cchs2005_m::FVCEDPOT, cchs2015_2016_m::FVCDVPOT, cchs2017_2018_m::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,times/day,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Potato consumption,Daily consumption - potatoes (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,2.2.0,2026-02-13,active,NA,NA,NA +FVCDPOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, cchs2015_2016_p::FVCDVPOT, cchs2017_2018_p::FVCDVPOT,cchs2001_m::FVCADPOT, cchs2003_m::FVCCDPOT, cchs2005_m::FVCEDPOT, cchs2015_2016_m::FVCDVPOT, cchs2017_2018_m::FVCDVPOT, [FVCDPOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,times/day,else,else,Potato consumption,Daily consumption - potatoes (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, cchs2001_m::FVCADSAL, cchs2003_m::FVCCDSAL, cchs2005_m::FVCEDSAL, cchs2015_2016_m::FVCDVGRN, cchs2017_2018_m::FVCDVGRN, [FVCDSAL]",NA,cont,copy,N/A,Daily salad,Daily salad,times/day,"[0,60]",Daily consumption - green salad - (D),Salad consumption,Daily consumption - green salad - (D),2015 onwards changed question to look at dark green vegetables,2.2.0,2026-02-13,active,NA,NA,NA +FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, cchs2001_m::FVCADSAL, cchs2003_m::FVCCDSAL, cchs2005_m::FVCEDSAL, cchs2015_2016_m::FVCDVGRN, cchs2017_2018_m::FVCDVGRN, [FVCDSAL]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,999.6,Not applicable,Salad consumption,Daily consumption - green salad - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, cchs2001_m::FVCADSAL, cchs2003_m::FVCCDSAL, cchs2005_m::FVCEDSAL, cchs2015_2016_m::FVCDVGRN, cchs2017_2018_m::FVCDVGRN, [FVCDSAL]",NA,cont,NA::b,N/A,missing,missing,times/day,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Salad consumption,Daily consumption - green salad - (D),"Don't know (999.7) and refusal (999.8) not included in 2001, 2015-2016, 2017-2018 CCHS",2.2.0,2026-02-13,active,NA,NA,NA +FVCDSAL,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, cchs2015_2016_p::FVCDVGRN, cchs2017_2018_p::FVCDVGRN, cchs2001_m::FVCADSAL, cchs2003_m::FVCCDSAL, cchs2005_m::FVCEDSAL, cchs2015_2016_m::FVCDVGRN, cchs2017_2018_m::FVCDVGRN, [FVCDSAL]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Salad consumption,Daily consumption - green salad - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_m::FVCADTOT, cchs2003_m::FVCCDTOT, cchs2005_m::FVCEDTOT, cchs2015_2016_m::FVCDVTOT, cchs2017_2018_m::FVCDVTOT, [FVCDTOT]",ICES confirmed,cont,copy,N/A,Daily total fruits and vegetables,Daily total fruits and vegetables,times/day,"[0,70]",Daily consumption - total fruits and veg. - (D),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_m::FVCADTOT, cchs2003_m::FVCCDTOT, cchs2005_m::FVCEDTOT, cchs2015_2016_m::FVCDVTOT,cchs2017_2018_m::FVCDVTOT, [FVCDTOT]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,times/day,999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_m::FVCADTOT, cchs2003_m::FVCCDTOT, cchs2005_m::FVCEDTOT, cchs2015_2016_m::FVCDVTOT,cchs2017_2018_m::FVCDVTOT, [FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,times/day,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,2.2.0,2026-02-13,active,NA,NA,NA +FVCDTOT,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[FVCDVTOT],ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,times/day,9999.6,Not applicable,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),Not applicable (9999.6) not included in 2015-2016 CCHS,2.2.0,2026-02-13,active,NA,NA,NA +FVCDTOT,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m",[FVCDVTOT],ICES confirmed,cont,NA::b,N/A,missing,missing,times/day,"[9999.7,9999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDTOT,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADTOT, cchs2003_p::FVCCDTOT, cchs2005_p::FVCEDTOT, cchs2015_2016_p::FVCDVTOT, cchs2017_2018_p::FVCDVTOT, cchs2001_m::FVCADTOT, cchs2003_m::FVCCDTOT, cchs2005_m::FVCEDTOT, cchs2015_2016_m::FVCDVTOT,cchs2017_2018_m::FVCDVTOT, [FVCDTOT]",ICES confirmed,cont,NA::b,N/A,missing,missing,times/day,else,else,Total fruit/veg consumption,Daily consumptoin - total fruits and veg. - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, cchs2001_m::FVCADVEG, cchs2003_m::FVCCDVEG, cchs2005_m::FVCEDVEG, cchs2015_2016_m::FVCDVVEG, cchs2017_2018_m::FVCDVVEG, [FVCDVEG]",NA,cont,copy,N/A,Daily other vegetables,Daily other vegetables,times/day,"[0,30]",Daily consumption other vegetables - (D),Other veg consumption,Daily consumption other vegetables - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, cchs2001_m::FVCADVEG, cchs2003_m::FVCCDVEG, cchs2005_m::FVCEDVEG, cchs2015_2016_m::FVCDVVEG, cchs2017_2018_m::FVCDVVEG, [FVCDVEG]",NA,cont,NA::a,N/A,not applicable,not applicable,times/day,999.6,Not applicable,Other veg consumption,Daily consumption other vegetables - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, cchs2001_m::FVCADVEG, cchs2003_m::FVCCDVEG, cchs2005_m::FVCEDVEG, cchs2015_2016_m::FVCDVVEG, cchs2017_2018_m::FVCDVVEG, [FVCDVEG]",NA,cont,NA::b,N/A,missing,missing,times/day,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),Other veg consumption,Daily consumption other vegetables - (D),Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,2.2.0,2026-02-13,active,NA,NA,NA +FVCDVEG,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, cchs2015_2016_p::FVCDVVEG, cchs2017_2018_p::FVCDVVEG, cchs2001_m::FVCADVEG, cchs2003_m::FVCCDVEG, cchs2005_m::FVCEDVEG, cchs2015_2016_m::FVCDVVEG, cchs2017_2018_m::FVCDVVEG, [FVCDVEG]",NA,cont,NA::b,N/A,missing,missing,times/day,else,else,Other veg consumption,Daily consumption other vegetables - (D),NA,2.2.0,2026-02-13,active,NA,NA,NA +GEN_01,GEN_01_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_01,GEN_01_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_01,GEN_01_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,3,5,Good,Good,N/A,3,Good,Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_01,GEN_01_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_01,GEN_01_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_01,GEN_01_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_01,GEN_01_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_01,GEN_01_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, cchs2015_2016_p::GEN_005, cchs2017_2018_p::GEN_005, cchs2019_2020_p::GEN_005, cchs2001_m::GENA_01, cchs2003_m::GENC_01, cchs2005_m::GENE_01, cchs2015_2016_m::GEN_005, cchs2017_2018_m::GEN_005, cchs2019_2020_m::GEN_005, [GEN_01]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived health,Self-perceived health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,1,5,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,2,5,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,3,5,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,4,5,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,5,5,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A,GEN_02A_cat5_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2009_2010_p::GENGSWL, cchs2010_p::GENGSWL, cchs2011_2012_p::GENGSWL, cchs2012_p::GENGSWL, cchs2013_2014_p::GENGSWL, cchs2014_p::GENGSWL, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2009_2010_m::GENGSWL, cchs2009_m::GENGSWL, cchs2010_m::GENGSWL, cchs2011_2012_m::GENGSWL, cchs2012_m::GENGSWL, cchs2013_2014_m::GENGSWL, [GEN_02A]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Life satisfaction_cat,Satisfaction with life,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,10,N/A,Very satisfied,Very satisfied,N/A,1,Very satisfied,Life satisfaction_cont,Satisfaction with life in general,"For CCHS cycles 2003-2007, GEN_02A2 was derived from GEN_02A where the values were rescaled to match GEN_02A2",2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,7,N/A,Satisfied,Satisfied,N/A,2,Satisfied,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,5,N/A,Neither satisfied or dissatisfied,Neither satisfied or dissatisfied,N/A,3,Neither satisfied or dissatisfied,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,2,N/A,Dissatisfied,Dissatisfied,N/A,4,Dissatisfied,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,5,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,NA::a,N/A,not applicable,not applicable,N/A,6,not applicable,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,NA::b,N/A,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2003_m, cchs2005_m, cchs2007_2008_m","cchs2003_p::GENC_02A, cchs2005_p::GENE_02A, cchs2007_2008_p::GEN_02A, cchs2003_m::GENC_02A, cchs2005_m::GENE_02A, cchs2007_2008_m::GEN_02A",NA,cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,0,N/A,Very dissatisfied,Very dissatisfied,N/A,0,Very dissatisfied,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,1,N/A,1,1,N/A,1,1,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,2,N/A,2,2,N/A,2,2,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,3,N/A,3,3,N/A,3,3,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,4,N/A,4,4,N/A,4,4,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,5,N/A,5,5,N/A,5,5,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,6,N/A,6,6,N/A,6,6,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,7,N/A,7,7,N/A,7,7,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,8,N/A,8,8,N/A,8,8,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,9,N/A,9,9,N/A,9,9,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,10,N/A,Very satisfied,Very satisfied,N/A,10,Very satisfied,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,NA::a,N/A,not applicable,not applicable,N/A,96,not applicable,Life satisfaction_cont,Satisfaction with life in general,CCHS 2015-2018 does not have not applicable (96),2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,NA::b,N/A,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02A2,N/A,cont,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2015_2016_p::GEN_010, cchs2017_2018_p::GEN_010, cchs2019_2020_p::GEN_010, cchs2015_2016_m::GEN_010, cchs2017_2018_m::GEN_010, cchs2019_2020_m::GEN_010, [GEN_02A2]",NA,cat,NA::b,N/A,missing,missing,N/A,else,else,Life satisfaction_cont,Satisfaction with life in general,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,1,5,Excellent,Excellent,N/A,1,Excellent,Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,2,5,Very good,Very good,N/A,2,Very good,Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,3,5,Good,Good,N/A,3,Good,Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,4,5,Fair,Fair,N/A,4,Fair,Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,5,5,Poor,Poor,N/A,5,Poor,Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_02B,GEN_02B_cat5_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_p::GENC_02B, cchs2005_p::GENE_02B, cchs2015_2016_p::GEN_015, cchs2017_2018_p::GEN_015, cchs2019_2020_p::GEN_015, cchs2003_m::GENC_02B, cchs2005_m::GENE_02B, cchs2015_2016_m::GEN_015, cchs2017_2018_m::GEN_015, cchs2019_2020_m::GEN_015, [GEN_02B]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived mental health,Self-perceived mental health,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020, cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived life stress,Self-perceived life stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020,cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived life stress,Self-perceived life stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020,cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived life stress,Self-perceived life stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020,cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived life stress,Self-perceived life stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020,cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived life stress,Self-perceived life stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020,cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived life stress,Self-perceived life stress,CCHS 2015-2018 does not have not applicable (6),2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020,cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived life stress,Self-perceived life stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_07,GEN_07_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, cchs2015_2016_p::GEN_020, cchs2017_2018_p::GEN_020, cchs2019_2020_p::GEN_020,cchs2001_m::GENA_07, cchs2003_m::GENC_07, cchs2005_m::GENE_07, cchs2015_2016_m::GEN_020, cchs2017_2018_m::GEN_020, cchs2019_2020_m::GEN_020, [GEN_07]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived life stress,Self-perceived life stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,1,5,Not at all,Not at all,N/A,1,Not at all,Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,2,5,Not very,Not very,N/A,2,Not very,Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,3,5,A bit,A bit,N/A,3,A bit,Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,4,5,Quite a bit,Quite a bit,N/A,4,Quite a bit,Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,5,5,Extremely,Extremely,N/A,5,Extremely,Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_09,GEN_09_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_09, cchs2003_p::GENC_09, cchs2005_p::GENE_09, cchs2015_2016_p::GEN_025, cchs2017_2018_p::GEN_025, cchs2019_2020_p::GEN_025, cchs2001_m::GENA_09, cchs2003_m::GENC_09, cchs2005_m::GENE_09, cchs2015_2016_m::GEN_025, cchs2017_2018_m::GEN_025, cchs2019_2020_m::GEN_025, [GEN_09]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Self-perceived work stress,Self-perceived work stress,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_10,GEN_10_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2019_2020_p::GEN_030, cchs2001_m::GENA_10, cchs2003_m::GENC_10, cchs2005_m::GENE_10, cchs2015_2016_m::GEN_030, cchs2017_2018_m::GEN_030, cchs2019_2020_m::GEN_030, [GEN_10]",ICES confirmed,cat,1,4,Very strong,Very strong,N/A,1,Very strong,Sense of belonging,Sense of belonging in the community,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_10,GEN_10_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2019_2020_p::GEN_030, cchs2001_m::GENA_10, cchs2003_m::GENC_10, cchs2005_m::GENE_10, cchs2015_2016_m::GEN_030, cchs2017_2018_m::GEN_030, cchs2019_2020_m::GEN_030, [GEN_10]",ICES confirmed,cat,2,4,Somewhat strong,Somewhat strong,N/A,2,Somewhat strong,Sense of belonging,Sense of belonging in the community,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_10,GEN_10_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2019_2020_p::GEN_030, cchs2001_m::GENA_10, cchs2003_m::GENC_10, cchs2005_m::GENE_10, cchs2015_2016_m::GEN_030, cchs2017_2018_m::GEN_030, cchs2019_2020_m::GEN_030, [GEN_10]",ICES confirmed,cat,3,4,Somewhat weak,Somewhat weak,N/A,3,Somewhat weak,Sense of belonging,Sense of belonging in the community,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_10,GEN_10_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2019_2020_p::GEN_030, cchs2001_m::GENA_10, cchs2003_m::GENC_10, cchs2005_m::GENE_10, cchs2015_2016_m::GEN_030, cchs2017_2018_m::GEN_030, cchs2019_2020_m::GEN_030, [GEN_10]",ICES confirmed,cat,4,4,Very weak,Very weak,N/A,4,Very weak,Sense of belonging,Sense of belonging in the community,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_10,GEN_10_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2019_2020_p::GEN_030, cchs2001_m::GENA_10, cchs2003_m::GENC_10, cchs2005_m::GENE_10, cchs2015_2016_m::GEN_030, cchs2017_2018_m::GEN_030, cchs2019_2020_m::GEN_030, [GEN_10]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Sense of belonging,Sense of belonging in the community,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_10,GEN_10_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2019_2020_p::GEN_030, cchs2001_m::GENA_10, cchs2003_m::GENC_10, cchs2005_m::GENE_10, cchs2015_2016_m::GEN_030, cchs2017_2018_m::GEN_030, cchs2019_2020_m::GEN_030, [GEN_10]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sense of belonging,Sense of belonging in the community,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEN_10,GEN_10_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, cchs2015_2016_p::GEN_030, cchs2017_2018_p::GEN_030, cchs2019_2020_p::GEN_030, cchs2001_m::GENA_10, cchs2003_m::GENC_10, cchs2005_m::GENE_10, cchs2015_2016_m::GEN_030, cchs2017_2018_m::GEN_030, cchs2019_2020_m::GEN_030, [GEN_10]",ICES confirmed,cat,NA::b,4,missing,missing,N/A,else,else,Sense of belonging,Sense of belonging in the community,NA,2.2.0,2026-02-25,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_1,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,10911,97,EASTERN REGIONAL INTEGRATED HA,EASTERN REGIONAL INTEGRATED HA,N/A,10911,EASTERN REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_2,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,10912,97,CENTRAL REGIONAL INTEGRATED HA,CENTRAL REGIONAL INTEGRATED HA,N/A,10912,CENTRAL REGIONAL INTEGRATED HA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_3,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,10913,97,WESTERN/LABRADOR-GRENFELL REGIONAL HA,WESTERN/LABRADOR-GRENFELL REGIONAL HA,N/A,10913,WESTERN/LABRADOR-GRENFELL REGIONAL HA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_4,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,11901,97,PRINCE EDWARD ISLAND,PRINCE EDWARD ISLAND,N/A,11901,PRINCE EDWARD ISLAND,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_5,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,12910,97,SOUTH SHORE-SOUTH WEST NOVA,SOUTH SHORE-SOUTH WEST NOVA,N/A,12910,SOUTH SHORE-SOUTH WEST NOVA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_6,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,12923,97,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,N/A,12923,ANNAPOLIS VALLEY DISTRICT HEALTH AUT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_7,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,12930,97,COLCHESTER EAST HANTS-CUMBERLAND,COLCHESTER EAST HANTS-CUMBERLAND,N/A,12930,COLCHESTER EAST HANTS-CUMBERLAND,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_8,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,12940,97,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,N/A,12940,PICTOU COUNTY-GUYSBOROUGH ANTIGONISH,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_9,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,12958,97,CAPE BRETON DISTRICT HEALTH AUTHORITY,CAPE BRETON DISTRICT HEALTH AUTHORITY,N/A,12958,CAPE BRETON DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_10,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,12969,97,CAPITAL DISTRICT HEALTH AUTHORITY,CAPITAL DISTRICT HEALTH AUTHORITY,N/A,12969,CAPITAL DISTRICT HEALTH AUTHORITY,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_11,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,13901,97,ZONE 1,ZONE 1,N/A,13901,ZONE 1,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_12,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,13902,97,ZONE 2,ZONE 2,N/A,13902,ZONE 2,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_13,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,13903,97,ZONE 3,ZONE 3,N/A,13903,ZONE 3,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_14,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,13904,97,ZONES 4 AND 5,ZONES 4 AND 5,N/A,13904,ZONES 4 AND 5,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_15,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,13906,97,ZONES 6 AND 7,ZONES 6 AND 7,N/A,13906,ZONES 6 AND 7,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_16,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24901,97,REGION DU BAS-SAINT-LAURENT,REGION DU BAS-SAINT-LAURENT,N/A,24901,REGION DU BAS-SAINT-LAURENT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_17,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24902,97,REGION DU SAGUENAY - LAC-SAINT-JEAN,REGION DU SAGUENAY - LAC-SAINT-JEAN,N/A,24902,REGION DU SAGUENAY - LAC-SAINT-JEAN,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_18,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24903,97,REGION DE LA CAPITALE-NATIONALE,REGION DE LA CAPITALE-NATIONALE,N/A,24903,REGION DE LA CAPITALE-NATIONALE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_19,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24904,97,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,N/A,24904,REGION DE LA MAURICIE-CENTRE-DU-QUEBEC,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_20,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24905,97,REGION DE L'ESTRIE,REGION DE L'ESTRIE,N/A,24905,REGION DE L'ESTRIE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_21,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24906,97,REGION DE MONTREAL,REGION DE MONTREAL,N/A,24906,REGION DE MONTREAL,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_22,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24907,97,REGION DE L'OUTAOUAIS,REGION DE L'OUTAOUAIS,N/A,24907,REGION DE L'OUTAOUAIS,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_23,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24908,97,REGION DE L'ABITIBI-TEMISCAMINGUE,REGION DE L'ABITIBI-TEMISCAMINGUE,N/A,24908,REGION DE L'ABITIBI-TEMISCAMINGUE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_24,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24909,97,REGION DE LA COTE-NORD,REGION DE LA COTE-NORD,N/A,24909,REGION DE LA COTE-NORD,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_25,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24911,97,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,N/A,24911,REG. DE LA GASPESIE-ILES-DE-LA-MADELEINE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_26,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24912,97,REGION DE LA CHAUDIERE-APPALACHES,REGION DE LA CHAUDIERE-APPALACHES,N/A,24912,REGION DE LA CHAUDIERE-APPALACHES,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_27,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24913,97,REGION DE LAVAL,REGION DE LAVAL,N/A,24913,REGION DE LAVAL,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_28,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24914,97,REGION DE LANAUDIERE,REGION DE LANAUDIERE,N/A,24914,REGION DE LANAUDIERE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_29,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24915,97,REGION DES LAURENTIDES,REGION DES LAURENTIDES,N/A,24915,REGION DES LAURENTIDES,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_30,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,24916,97,REGION DE LA MONTEREGIE,REGION DE LA MONTEREGIE,N/A,24916,REGION DE LA MONTEREGIE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_31,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35926,97,DISTRICT OF ALGOMA HEALTH UNIT,DISTRICT OF ALGOMA HEALTH UNIT,N/A,35926,DISTRICT OF ALGOMA HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_32,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35927,97,BRANT COUNTY HEALTH UNIT,BRANT COUNTY HEALTH UNIT,N/A,35927,BRANT COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_33,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35930,97,DURHAM REGIONAL HEALTH UNIT,DURHAM REGIONAL HEALTH UNIT,N/A,35930,DURHAM REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_34,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35931,97,ELGIN-ST THOMAS HEALTH UNIT,ELGIN-ST THOMAS HEALTH UNIT,N/A,35931,ELGIN-ST THOMAS HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_35,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35933,97,GREY BRUCE HEALTH UNIT,GREY BRUCE HEALTH UNIT,N/A,35933,GREY BRUCE HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_36,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35934,97,HALDIMAND-NORFOLK HEALTH UNIT,HALDIMAND-NORFOLK HEALTH UNIT,N/A,35934,HALDIMAND-NORFOLK HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_37,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35935,97,HALIBURTON-KAWARTHA-PINE RIDGE DHU,HALIBURTON-KAWARTHA-PINE RIDGE DHU,N/A,35935,HALIBURTON-KAWARTHA-PINE RIDGE DHU,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_38,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35936,97,HALTON REGIONAL HEALTH UNIT,HALTON REGIONAL HEALTH UNIT,N/A,35936,HALTON REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_39,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35937,97,CITY OF HAMILTON HEALTH UNIT,CITY OF HAMILTON HEALTH UNIT,N/A,35937,CITY OF HAMILTON HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_40,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35938,97,HASTINGS AND PRINCE EDWARD COUNTIES HU,HASTINGS AND PRINCE EDWARD COUNTIES HU,N/A,35938,HASTINGS AND PRINCE EDWARD COUNTIES HU,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_41,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35939,97,HURON AND PERTH HEALTH UNITS,HURON AND PERTH HEALTH UNITS,N/A,35939,HURON AND PERTH HEALTH UNITS,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_42,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35940,97,CHATHAM-KENT HEALTH UNIT,CHATHAM-KENT HEALTH UNIT,N/A,35940,CHATHAM-KENT HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_43,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35941,97,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,N/A,35941,KINGSTON-FRONTENAC-LENNOX-ADDINGTON HU,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_44,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35942,97,LAMBTON HEALTH UNIT,LAMBTON HEALTH UNIT,N/A,35942,LAMBTON HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_45,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35943,97,LEEDS-GRENVILLE-LANARK DHU,LEEDS-GRENVILLE-LANARK DHU,N/A,35943,LEEDS-GRENVILLE-LANARK DHU,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_46,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35944,97,MIDDLESEX-LONDON HEALTH UNIT,MIDDLESEX-LONDON HEALTH UNIT,N/A,35944,MIDDLESEX-LONDON HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_47,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35946,97,NIAGARA REGIONAL AREA HEALTH UNIT,NIAGARA REGIONAL AREA HEALTH UNIT,N/A,35946,NIAGARA REGIONAL AREA HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_48,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35947,97,NORTH BAY AND TIMISKAMING HEALTH UNITS,NORTH BAY AND TIMISKAMING HEALTH UNITS,N/A,35947,NORTH BAY AND TIMISKAMING HEALTH UNITS,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_49,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35949,97,NORTHWESTERN HEALTH UNIT,NORTHWESTERN HEALTH UNIT,N/A,35949,NORTHWESTERN HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_50,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35951,97,CITY OF OTTAWA HEALTH UNIT,CITY OF OTTAWA HEALTH UNIT,N/A,35951,CITY OF OTTAWA HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_51,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35952,97,OXFORD COUNTY HEALTH UNIT,OXFORD COUNTY HEALTH UNIT,N/A,35952,OXFORD COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_52,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35953,97,PEEL REGIONAL HEALTH UNIT,PEEL REGIONAL HEALTH UNIT,N/A,35953,PEEL REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_53,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35955,97,PETERBOROUGH COUNTY-CITY HEALTH UNIT,PETERBOROUGH COUNTY-CITY HEALTH UNIT,N/A,35955,PETERBOROUGH COUNTY-CITY HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_54,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35956,97,PORCUPINE HEALTH UNIT,PORCUPINE HEALTH UNIT,N/A,35956,PORCUPINE HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_55,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35957,97,RENFREW COUNTY AND DISTRICT HEALTH UNIT,RENFREW COUNTY AND DISTRICT HEALTH UNIT,N/A,35957,RENFREW COUNTY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_56,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35958,97,EASTERN ONTARIO HEALTH UNIT,EASTERN ONTARIO HEALTH UNIT,N/A,35958,EASTERN ONTARIO HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_57,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35960,97,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,N/A,35960,SIMCOE MUSKOKA DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_58,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35961,97,SUDBURY AND DISTRICT HEALTH UNIT,SUDBURY AND DISTRICT HEALTH UNIT,N/A,35961,SUDBURY AND DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_59,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35962,97,THUNDER BAY DISTRICT HEALTH UNIT,THUNDER BAY DISTRICT HEALTH UNIT,N/A,35962,THUNDER BAY DISTRICT HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_60,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35965,97,WATERLOO HEALTH UNIT,WATERLOO HEALTH UNIT,N/A,35965,WATERLOO HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_61,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35966,97,WELLINGTON-DUFFERIN-GUELPH HU,WELLINGTON-DUFFERIN-GUELPH HU,N/A,35966,WELLINGTON-DUFFERIN-GUELPH HU,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_62,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35968,97,WINDSOR-ESSEX COUNTY HEALTH UNIT,WINDSOR-ESSEX COUNTY HEALTH UNIT,N/A,35968,WINDSOR-ESSEX COUNTY HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_63,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35970,97,YORK REGIONAL HEALTH UNIT,YORK REGIONAL HEALTH UNIT,N/A,35970,YORK REGIONAL HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_64,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,35995,97,CITY OF TORONTO HEALTH UNIT,CITY OF TORONTO HEALTH UNIT,N/A,35995,CITY OF TORONTO HEALTH UNIT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_65,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,46901,97,WINNIPEG RHA,WINNIPEG RHA,N/A,46901,WINNIPEG RHA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_66,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,46902,97,PRAIRIE M. HEALTH,PRAIRIE M. HEALTH,N/A,46902,PRAIRIE M. HEALTH,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_67,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,46903,97,INTERLAKE-EASTERN RHA,INTERLAKE-EASTERN RHA,N/A,46903,INTERLAKE-EASTERN RHA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_68,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,46904,97,NORTHEN RHA,NORTHEN RHA,N/A,46904,NORTHEN RHA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_69,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,46905,97,SOUTHEN HEALTH,SOUTHEN HEALTH,N/A,46905,SOUTHEN HEALTH,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_70,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,47901,97,SUN COUNTRY/FIVE HILLS/CYPRESS,SUN COUNTRY/FIVE HILLS/CYPRESS,N/A,47901,SUN COUNTRY/FIVE HILLS/CYPRESS,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_71,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,47904,97,REGINA QU'APPELLE,REGINA QU'APPELLE,N/A,47904,REGINA QU'APPELLE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_72,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,47905,97,SUNRISE/KELSEY TRAIL,SUNRISE/KELSEY TRAIL,N/A,47905,SUNRISE/KELSEY TRAIL,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_73,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,47906,97,SASKATOON,SASKATOON,N/A,47906,SASKATOON,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_74,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,47907,97,HEARTLAND/PRAIRIE NORTH,HEARTLAND/PRAIRIE NORTH,N/A,47907,HEARTLAND/PRAIRIE NORTH,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_75,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,47909,97,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,N/A,47909,PRINCE ALBERT/MAMAWETAN/KEEWATIN/ATHABA,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_76,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,48931,97,SOUTH ZONE,SOUTH ZONE,N/A,48931,SOUTH ZONE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_77,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,48932,97,CALGARY ZONE,CALGARY ZONE,N/A,48932,CALGARY ZONE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_78,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,48933,97,CENTRAL ZONE,CENTRAL ZONE,N/A,48933,CENTRAL ZONE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_79,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,48934,97,EDMONTON ZONE,EDMONTON ZONE,N/A,48934,EDMONTON ZONE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_80,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,48935,97,NORTH ZONE,NORTH ZONE,N/A,48935,NORTH ZONE,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_81,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59911,97,EAST KOOTENAY,EAST KOOTENAY,N/A,59911,EAST KOOTENAY,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_82,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59912,97,KOOTENAY-BOUNDARY,KOOTENAY-BOUNDARY,N/A,59912,KOOTENAY-BOUNDARY,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_83,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59913,97,OKANAGAN,OKANAGAN,N/A,59913,OKANAGAN,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_84,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59914,97,THOMPSON/CARIBOO,THOMPSON/CARIBOO,N/A,59914,THOMPSON/CARIBOO,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_85,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59921,97,FRASER EAST,FRASER EAST,N/A,59921,FRASER EAST,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_86,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59922,97,FRASER NORTH,FRASER NORTH,N/A,59922,FRASER NORTH,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_87,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59923,97,FRASER SOUTH,FRASER SOUTH,N/A,59923,FRASER SOUTH,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_88,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59931,97,RICHMOND,RICHMOND,N/A,59931,RICHMOND,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_89,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59932,97,VANCOUVER,VANCOUVER,N/A,59932,VANCOUVER,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_90,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59933,97,NORTH SHORE/COAST GARIBALDI,NORTH SHORE/COAST GARIBALDI,N/A,59933,NORTH SHORE/COAST GARIBALDI,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_91,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59941,97,SOUTH VANCOUVER ISLAND,SOUTH VANCOUVER ISLAND,N/A,59941,SOUTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_92,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59942,97,CENTRAL VANCOUVER ISLAND,CENTRAL VANCOUVER ISLAND,N/A,59942,CENTRAL VANCOUVER ISLAND,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_93,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59943,97,NORTH VANCOUVER ISLAND,NORTH VANCOUVER ISLAND,N/A,59943,NORTH VANCOUVER ISLAND,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_94,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59951,97,NORTHWEST,NORTHWEST,N/A,59951,NORTHWEST,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_95,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59952,97,NORTHERN INTERIOR,NORTHERN INTERIOR,N/A,59952,NORTHERN INTERIOR,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_96,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,59953,97,NORTHEAST,NORTHEAST,N/A,59953,NORTHEAST,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_97,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,60901,97,YUKON/NORTHWEST TERRITORIES/NUNAVUT,YUKON/NORTHWEST TERRITORIES/NUNAVUT,N/A,60901,YUKON/NORTHWEST TERRITORIES/NUNAVUT,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEODPMF,GEODPMF_cat97_NAb,cat,"cchs2013_2014_p, cchs2014_p",[GEODPMF],NA,cat,NA::b,97,missing,missing,N/A,else,else,Health Region - (G),Health Region - (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,10,11,NL,Nfld. & Labrador,N/A,10,Nfld. & Labrador,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,11,11,PEI,Prince Edward Island,N/A,11,Prince Edward Island,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,12,11,NS,Nova Scotia,N/A,12,Nova Scotia,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,13,11,NB,New Brunswick,N/A,13,New Brunswick,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,24,11,QC,Quebec,N/A,24,Quebec,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,35,11,ON,Ontario,N/A,35,Ontario,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,46,11,MB,Manitoba,N/A,46,Manitoba,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,47,11,SK,Saskatchewan,N/A,47,Saskatchewan,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,48,11,AB,Alberta,N/A,48,Alberta,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,59,11,BC,British Columbia,N/A,59,British Columbia,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,60,11,YT/NT/NU,Yukon/NWT/Nunavut,N/A,"[60,62]",Yukon/NWT/Nunavut,Province,Province of residence of respondent (G),"CCHS2015_2016 and CCHS2017_2018 divides category into Yukon (60), NWT (61), and Nunavut (62)",2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,NA::b,11,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +GEOGPRV,GEOGPRV_cat11_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_m::GEO_PRV, cchs2010_m::GEO_PRV, cchs2012_m::GEO_PRV, [GEOGPRV]",NA,cat,NA::b,11,missing,missing,N/A,else,else,Province,Province of residence of respondent (G),NA,2.2.0,2025-06-30,active,NA,NA,NA +HCU_1AA,HCU_1AA_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",NA,cat,1,2,Yes,Has regular medical doctor,N/A,1,Yes,Has regular medical doctor,Do you have a regular medical doctor?,"In 2015-2018, question was reworded to ""Do you have a regular health care provider?""",2.2.0,2025-06-30,active,NA,NA,NA +HCU_1AA,HCU_1AA_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",NA,cat,2,2,No,Does not have regular medical doctor,N/A,2,No,Has regular medical doctor,Do you have a regular medical doctor?,NA,2.2.0,2025-06-30,active,NA,NA,NA +HCU_1AA,HCU_1AA_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Has regular medical doctor,Do you have a regular medical doctor?,NA,2.2.0,2025-06-30,active,NA,NA,NA +HCU_1AA,HCU_1AA_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Has regular medical doctor,Do you have a regular medical doctor?,NA,2.2.0,2025-06-30,active,NA,NA,NA +HCU_1AA,HCU_1AA_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, cchs2015_2016_p::PHC_020, cchs2017_2018_p::PHC_020, [HCU_1AA]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Has regular medical doctor,Do you have a regular medical doctor?,NA,2.2.0,2025-06-30,active,NA,NA,NA +HUI_01,HUI_01_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_01, cchs2003_m::HUIC_01, cchs2005_m::HUIE_01, cchs2015_2016_m::HUI_005, cchs2019_2020_m::HUI_005, [HUI_01]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Vision,Vision ability - read ordinary newsprint without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_01,HUI_01_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_01, cchs2003_m::HUIC_01, cchs2005_m::HUIE_01, cchs2015_2016_m::HUI_005, cchs2019_2020_m::HUI_005, [HUI_01]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Vision,Vision ability - read ordinary newsprint without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_01,HUI_01_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_01, cchs2003_m::HUIC_01, cchs2005_m::HUIE_01, cchs2015_2016_m::HUI_005, cchs2019_2020_m::HUI_005, [HUI_01]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Vision,Vision ability - read ordinary newsprint without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_01,HUI_01_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_01, cchs2003_m::HUIC_01, cchs2005_m::HUIE_01, cchs2015_2016_m::HUI_005, cchs2019_2020_m::HUI_005, [HUI_01]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Vision,Vision ability - read ordinary newsprint without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_01,HUI_01_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_01, cchs2003_m::HUIC_01, cchs2005_m::HUIE_01, cchs2015_2016_m::HUI_005, cchs2019_2020_m::HUI_005, [HUI_01]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Vision,Vision ability - read ordinary newsprint without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_02,HUI_02_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_02, cchs2003_m::HUIC_02, cchs2005_m::HUIE_02, cchs2015_2016_m::HUI_010, cchs2019_2020_m::HUI_010, [HUI_02]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Vision,Vision ability - read ordinary newsprint with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_02,HUI_02_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_02, cchs2003_m::HUIC_02, cchs2005_m::HUIE_02, cchs2015_2016_m::HUI_010, cchs2019_2020_m::HUI_010, [HUI_02]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Vision,Vision ability - read ordinary newsprint with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_02,HUI_02_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_02, cchs2003_m::HUIC_02, cchs2005_m::HUIE_02, cchs2015_2016_m::HUI_010, cchs2019_2020_m::HUI_010, [HUI_02]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Vision,Vision ability - read ordinary newsprint with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_02,HUI_02_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_02, cchs2003_m::HUIC_02, cchs2005_m::HUIE_02, cchs2015_2016_m::HUI_010, cchs2019_2020_m::HUI_010, [HUI_02]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Vision,Vision ability - read ordinary newsprint with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_02,HUI_02_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_02, cchs2003_m::HUIC_02, cchs2005_m::HUIE_02, cchs2015_2016_m::HUI_010, cchs2019_2020_m::HUI_010, [HUI_02]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Vision,Vision ability - read ordinary newsprint with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_03, cchs2003_m::HUIC_03, cchs2005_m::HUIE_03, cchs2015_2016_m::HUI_015, cchs2019_2020_m::HUI_015, [HUI_03]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_03, cchs2003_m::HUIC_03, cchs2005_m::HUIE_03, cchs2015_2016_m::HUI_015, cchs2019_2020_m::HUI_015, [HUI_03]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_03, cchs2003_m::HUIC_03, cchs2005_m::HUIE_03, cchs2015_2016_m::HUI_015, cchs2019_2020_m::HUI_015, [HUI_03]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_03, cchs2003_m::HUIC_03, cchs2005_m::HUIE_03, cchs2015_2016_m::HUI_015, cchs2019_2020_m::HUI_015, [HUI_03]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_03, cchs2003_m::HUIC_03, cchs2005_m::HUIE_03, cchs2015_2016_m::HUI_015, cchs2019_2020_m::HUI_015, [HUI_03]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_1,cat,cchs2017_2018_m,[WDM_005],ICES specific,cat,1,2,Yes,Yes,N/A,1,No difficulty,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_1,cat,cchs2017_2018_m,[WDM_005],ICES specific,cat,1,2,Yes,Yes,N/A,2,Some difficulty,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_1,cat,cchs2017_2018_m,[WDM_005],ICES specific,cat,1,2,Yes,Yes,N/A,3,A lot of difficulty,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_2,cat,cchs2017_2018_m,[WDM_005],ICES specific,cat,2,2,No,No,N/A,4,Cannot do at all,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAa,cat,cchs2017_2018_m,[WDM_005],ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAb,cat,cchs2017_2018_m,[WDM_005],ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAb,cat,cchs2017_2018_m,[WDM_005],ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_1,cat,cchs2022_m,[WDM_05],ICES specific,cat,1,2,Yes,Yes,N/A,1,No difficulty,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_1,cat,cchs2022_m,[WDM_05],ICES specific,cat,1,2,Yes,Yes,N/A,2,Some difficulty,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_1,cat,cchs2022_m,[WDM_05],ICES specific,cat,1,2,Yes,Yes,N/A,3,A lot of difficulty,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_2,cat,cchs2022_m,[WDM_05],ICES specific,cat,2,2,No,No,N/A,4,Cannot do at all,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAa,cat,cchs2022_m,[WDM_05],ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAb,cat,cchs2022_m,[WDM_05],ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_03,HUI_03_cat2_NAb,cat,cchs2022_m,[WDM_05],ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Vision,Vision ability - able to see at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_04,HUI_04_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_04, cchs2003_m::HUIC_04, cchs2005_m::HUIE_04, cchs2015_2016_m::HUI_020, cchs2019_2020_m::HUI_020, cchs2023_m::HUIVIS1, [HUI_04]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Vision,Vision ability - recognize a friend on the other side of the street without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_04,HUI_04_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_04, cchs2003_m::HUIC_04, cchs2005_m::HUIE_04, cchs2015_2016_m::HUI_020, cchs2019_2020_m::HUI_020, cchs2023_m::HUIVIS1, [HUI_04]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Vision,Vision ability - recognize a friend on the other side of the street without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_04,HUI_04_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_04, cchs2003_m::HUIC_04, cchs2005_m::HUIE_04, cchs2015_2016_m::HUI_020, cchs2019_2020_m::HUI_020, cchs2023_m::HUIVIS1, [HUI_04]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Vision,Vision ability - recognize a friend on the other side of the street without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_04,HUI_04_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_04, cchs2003_m::HUIC_04, cchs2005_m::HUIE_04, cchs2015_2016_m::HUI_020, cchs2019_2020_m::HUI_020, cchs2023_m::HUIVIS1, [HUI_04]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Vision,Vision ability - recognize a friend on the other side of the street without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_04,HUI_04_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_04, cchs2003_m::HUIC_04, cchs2005_m::HUIE_04, cchs2015_2016_m::HUI_020, cchs2019_2020_m::HUI_020, cchs2023_m::HUIVIS1, [HUI_04]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Vision,Vision ability - recognize a friend on the other side of the street without glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_05,HUI_05_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_05, cchs2003_m::HUIC_05, cchs2005_m::HUIE_05, cchs2015_2016_m::HUI_025, cchs2019_2020_m::HUI_025, cchs2023_m::HUIVIS2, [HUI_05]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Vision,Vision ability - recognize a friend on the other side of the street with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_05,HUI_05_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_05, cchs2003_m::HUIC_05, cchs2005_m::HUIE_05, cchs2015_2016_m::HUI_025, cchs2019_2020_m::HUI_025, cchs2023_m::HUIVIS2, [HUI_05]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Vision,Vision ability - recognize a friend on the other side of the street with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_05,HUI_05_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_05, cchs2003_m::HUIC_05, cchs2005_m::HUIE_05, cchs2015_2016_m::HUI_025, cchs2019_2020_m::HUI_025, cchs2023_m::HUIVIS2, [HUI_05]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Vision,Vision ability - recognize a friend on the other side of the street with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_05,HUI_05_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_05, cchs2003_m::HUIC_05, cchs2005_m::HUIE_05, cchs2015_2016_m::HUI_025, cchs2019_2020_m::HUI_025, cchs2023_m::HUIVIS2, [HUI_05]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Vision,Vision ability - recognize a friend on the other side of the street with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_05,HUI_05_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_05, cchs2003_m::HUIC_05, cchs2005_m::HUIE_05, cchs2015_2016_m::HUI_025, cchs2019_2020_m::HUI_025, cchs2023_m::HUIVIS2, [HUI_05]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Vision,Vision ability - recognize a friend on the other side of the street with glasses or contact lenses,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_06,HUI_06_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_06, cchs2003_m::HUIC_06, cchs2005_m::HUIE_06, cchs2015_2016_m::HUI_030, cchs2019_2020_m::HUI_030, [HUI_06]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Hearing,Hearing ability - in a group without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_06,HUI_06_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_06, cchs2003_m::HUIC_06, cchs2005_m::HUIE_06, cchs2015_2016_m::HUI_030, cchs2019_2020_m::HUI_030, [HUI_06]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Hearing,Hearing ability - in a group without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_06,HUI_06_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_06, cchs2003_m::HUIC_06, cchs2005_m::HUIE_06, cchs2015_2016_m::HUI_030, cchs2019_2020_m::HUI_030, [HUI_06]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Hearing,Hearing ability - in a group without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_06,HUI_06_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_06, cchs2003_m::HUIC_06, cchs2005_m::HUIE_06, cchs2015_2016_m::HUI_030, cchs2019_2020_m::HUI_030, [HUI_06]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Hearing,Hearing ability - in a group without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_06,HUI_06_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_06, cchs2003_m::HUIC_06, cchs2005_m::HUIE_06, cchs2015_2016_m::HUI_030, cchs2019_2020_m::HUI_030, [HUI_06]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Hearing,Hearing ability - in a group without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07,HUI_07_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07, cchs2003_m::HUIC_07, cchs2005_m::HUIE_07, cchs2015_2016_m::HUI_035, cchs2019_2020_m::HUI_035, [HUI_07]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Hearing,Hearing ability - in a group with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07,HUI_07_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07, cchs2003_m::HUIC_07, cchs2005_m::HUIE_07, cchs2015_2016_m::HUI_035, cchs2019_2020_m::HUI_035, [HUI_07]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Hearing,Hearing ability - in a group with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07,HUI_07_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07, cchs2003_m::HUIC_07, cchs2005_m::HUIE_07, cchs2015_2016_m::HUI_035, cchs2019_2020_m::HUI_035, [HUI_07]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Hearing,Hearing ability - in a group with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07,HUI_07_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07, cchs2003_m::HUIC_07, cchs2005_m::HUIE_07, cchs2015_2016_m::HUI_035, cchs2019_2020_m::HUI_035, [HUI_07]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Hearing,Hearing ability - in a group with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07,HUI_07_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07, cchs2003_m::HUIC_07, cchs2005_m::HUIE_07, cchs2015_2016_m::HUI_035, cchs2019_2020_m::HUI_035, [HUI_07]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Hearing,Hearing ability - in a group with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07A, cchs2003_m::HUIC_07A, cchs2005_m::HUIE_07A, cchs2015_2016_m::HUI_040, cchs2019_2020_m::HUI_040, [HUI_07A]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07A, cchs2003_m::HUIC_07A, cchs2005_m::HUIE_07A, cchs2015_2016_m::HUI_040, cchs2019_2020_m::HUI_040, [HUI_07A]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07A, cchs2003_m::HUIC_07A, cchs2005_m::HUIE_07A, cchs2015_2016_m::HUI_040, cchs2019_2020_m::HUI_040, [HUI_07A]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07A, cchs2003_m::HUIC_07A, cchs2005_m::HUIE_07A, cchs2015_2016_m::HUI_040, cchs2019_2020_m::HUI_040, [HUI_07A]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m","cchs2001_m::HUIA_07A, cchs2003_m::HUIC_07A, cchs2005_m::HUIE_07A, cchs2015_2016_m::HUI_040, cchs2019_2020_m::HUI_040, [HUI_07A]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_1,cat,cchs2017_2018_m,[WDM_010],ICES specific,cat,1,2,Yes,Yes,N/A,1,No difficulty,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_1,cat,cchs2017_2018_m,[WDM_010],ICES specific,cat,1,2,Yes,Yes,N/A,2,Some difficulty,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_1,cat,cchs2017_2018_m,[WDM_010],ICES specific,cat,1,2,Yes,Yes,N/A,3,A lot of difficulty,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_2,cat,cchs2017_2018_m,[WDM_010],ICES specific,cat,2,2,No,No,N/A,4,Cannot do at all,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAa,cat,cchs2017_2018_m,[WDM_010],ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAb,cat,cchs2017_2018_m,[WDM_010],ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAb,cat,cchs2017_2018_m,[WDM_010],ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_1,cat,cchs2022_m,[WDM_10],ICES specific,cat,1,2,Yes,Yes,N/A,1,No difficulty,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_1,cat,cchs2022_m,[WDM_10],ICES specific,cat,1,2,Yes,Yes,N/A,2,Some difficulty,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_1,cat,cchs2022_m,[WDM_10],ICES specific,cat,1,2,Yes,Yes,N/A,3,A lot of difficulty,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_2,cat,cchs2022_m,[WDM_10],ICES specific,cat,2,2,No,No,N/A,4,Cannot do at all,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAa,cat,cchs2022_m,[WDM_10],ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAb,cat,cchs2022_m,[WDM_10],ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_07A,HUI_07A_cat2_NAb,cat,cchs2022_m,[WDM_10],ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Hearing,Hearing ability - able to hear at all,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_08,HUI_08_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_08, cchs2003_m::HUIC_08, cchs2005_m::HUIE_08, cchs2015_2016_m::HUI_045, cchs2019_2020_m::HUI_045, cchs2023_m::HUIHEAR1, [HUI_08]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Hearing,Hearing ability - able to hear in a quiet room without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_08,HUI_08_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_08, cchs2003_m::HUIC_08, cchs2005_m::HUIE_08, cchs2015_2016_m::HUI_045, cchs2019_2020_m::HUI_045, cchs2023_m::HUIHEAR1, [HUI_08]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Hearing,Hearing ability - able to hear in a quiet room without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_08,HUI_08_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_08, cchs2003_m::HUIC_08, cchs2005_m::HUIE_08, cchs2015_2016_m::HUI_045, cchs2019_2020_m::HUI_045, cchs2023_m::HUIHEAR1, [HUI_08]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Hearing,Hearing ability - able to hear in a quiet room without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_08,HUI_08_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_08, cchs2003_m::HUIC_08, cchs2005_m::HUIE_08, cchs2015_2016_m::HUI_045, cchs2019_2020_m::HUI_045, cchs2023_m::HUIHEAR1, [HUI_08]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Hearing,Hearing ability - able to hear in a quiet room without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_08,HUI_08_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_08, cchs2003_m::HUIC_08, cchs2005_m::HUIE_08, cchs2015_2016_m::HUI_045, cchs2019_2020_m::HUI_045, cchs2023_m::HUIHEAR1, [HUI_08]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Hearing,Hearing ability - able to hear in a quiet room without a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_09,HUI_09_cat2_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_09, cchs2003_m::HUIC_09, cchs2005_m::HUIE_09, cchs2015_2016_m::HUI_050, cchs2019_2020_m::HUI_050, cchs2023_m::HUIHEAR2, [HUI_09]",ICES specific,cat,1,2,Yes,Yes,N/A,1,Yes,HUI Hearing,Hearing ability - able to hear in a quiet room with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_09,HUI_09_cat2_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_09, cchs2003_m::HUIC_09, cchs2005_m::HUIE_09, cchs2015_2016_m::HUI_050, cchs2019_2020_m::HUI_050, cchs2023_m::HUIHEAR2, [HUI_09]",ICES specific,cat,2,2,No,No,N/A,2,No,HUI Hearing,Hearing ability - able to hear in a quiet room with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_09,HUI_09_cat2_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_09, cchs2003_m::HUIC_09, cchs2005_m::HUIE_09, cchs2015_2016_m::HUI_050, cchs2019_2020_m::HUI_050, cchs2023_m::HUIHEAR2, [HUI_09]",ICES specific,cat,NA::a,2,Not applicable,Not applicable,N/A,6,Not applicable,HUI Hearing,Hearing ability - able to hear in a quiet room with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_09,HUI_09_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_09, cchs2003_m::HUIC_09, cchs2005_m::HUIE_09, cchs2015_2016_m::HUI_050, cchs2019_2020_m::HUI_050, cchs2023_m::HUIHEAR2, [HUI_09]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,"[7,8,9]",Don't know / Refusal / Not stated,HUI Hearing,Hearing ability - able to hear in a quiet room with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUI_09,HUI_09_cat2_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIA_09, cchs2003_m::HUIC_09, cchs2005_m::HUIE_09, cchs2015_2016_m::HUI_050, cchs2019_2020_m::HUI_050, cchs2023_m::HUIHEAR2, [HUI_09]",ICES specific,cat,NA::b,2,Missing,Missing,N/A,else,Not stated,HUI Hearing,Hearing ability - able to hear in a quiet room with a hearing aid,,3.0.0-alpha,2026-01-26,active,v3.0.0alpha,, +HUIDCOG,HUIDCOG_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,1,6,No cognit prob,No cognition problems,N/A,1,No cognit prob,HUI Cognition,Cognition prob. - function code - (D),CCHS 2007 onwards uses cognition levels which coincide with HUI Mark 3,2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,2,6,Little difficult,Little difficulty,N/A,2,Little difficulty,HUI Cognition,Cognition prob. - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,3,6,Some forgetful,Some forgetful,N/A,3,Some forgetful,HUI Cognition,Cognition prob. - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,4,6,Forget/dif think,Forgetful/difficulty thinking,N/A,4,Forget/dif think,HUI Cognition,Cognition prob. - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,5,6,Very forgetful,Very forgetful,N/A,5,Very forgetful,HUI Cognition,Cognition prob. - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,6,6,Can't remember,Can't remember,N/A,6,Can't remember,HUI Cognition,Cognition prob. - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,HUI Cognition,Cognition prob. - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Cognition,Cognition prob. - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (97) or refusal (98)",2.2.0,2025-06-30,active,NA,NA,NA +HUIDCOG,HUIDCOG_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADCOG, cchs2003_p::HUICDCOG, cchs2005_p::HUIEDCOG, cchs2015_2016_p::HUIDVCOG, [HUIDCOG]",NA,cat,NA::b,6,missing,missing,N/A,else,else,HUI Cognition,Cognition prob. - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,1,5,Happy in life,Happy in life,N/A,1,Happy in life,HUI Emotion,Emotional problems - function code - (D),CCHS 2007 onwards uses emotional levels which coincide with HUI Mark 3,2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,2,5,Somewhat happy,Somewhat happy,N/A,2,Somewhat happy,HUI Emotion,Emotional problems - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,3,5,Somewhat unhappy,Somewhat unhappy,N/A,3,Somewhat unhappy,HUI Emotion,Emotional problems - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,4,5,Very unhappy,Very unhappy,N/A,4,Very unhappy,HUI Emotion,Emotional problems - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,5,5,Life not worth,Life not worth,N/A,5,Life not worth,HUI Emotion,Emotional problems - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Emotion,Emotional problems - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Emotion,Emotional problems - function code - (D),"CCHS 2001, 2015-2018 does not include don't know (7) or refusal (8)",2.2.0,2025-06-30,active,NA,NA,NA +HUIDEMO,HUIDEMO_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADEMO, cchs2003_p::HUICDEMO, cchs2005_p::HUIEDEMO, cchs2015_2016_p::HUIDVEMO, [HUIDEMO]",NA,cat,NA::b,5,missing,missing,N/A,else,else,HUI Emotion,Emotional problems - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,copy,N/A,HUI score,Health Utility Index (HUI3) - (D),N/A,"[-0.359,1]",Health Utility Index (HUI3) - (D),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::a,N/A,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,N/A,missing,missing,N/A,"[99.997,99.999]",don't know (99.997); refusal (99.998); not stated (99.999),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,N/A,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,1,10,Decile 1,Decile 1,N/A,"[-0.359,-0.2231)",Decile 1,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,2,10,Decile 2,Decile 2,N/A,"[-0.2231,-0.0872)",Decile 2,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,3,10,Decile 3,Decile 3,N/A,"[-0.0872,0.0487)",Decile 3,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,4,10,Decile 4,Decile 4,N/A,"[0.0487,0.1846)",Decile 4,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,5,10,Decile 5,Decile 5,N/A,"[0.1846,0.3205)",Decile 5,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,6,10,Decile 6,Decile 6,N/A,"[0.3205,0.4564)",Decile 6,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,7,10,Decile 7,Decile 7,N/A,"[0.4564,0.5923)",Decile 7,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,8,10,Decile 8,Decile 8,N/A,"[0.5923,0.7282)",Decile 8,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,9,10,Decile 9,Decile 9,N/A,"[0.7282,0.8641)",Decile 9,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,10,10,Decile 10,Decile 10,N/A,"[0.8641,1]",Decile 10,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::a,10,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,10,missing,missing,N/A,"[99.997,99.999]",don't know (99.997); refusal (99.998); not stated (99.999),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat10,HUIDHSI_cat10_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,10,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,1,20,Group 1,Group 1,N/A,"[-0.359,-0.29105)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,2,20,Group 2,Group 2,N/A,"[-0.29105,-0.2231)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,3,20,Group 3,Group 3,N/A,"[-0.2231,-0.15515)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,4,20,Group 4,Group 4,N/A,"[-0.15515,-0.0872)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,5,20,Group 5,Group 5,N/A,"[-0.0872,-0.01925)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,6,20,Group 6,Group 6,N/A,"[-0.01925,0.0487)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,7,20,Group 7,Group 7,N/A,"[0.0487,0.11665)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,8,20,Group 8,Group 8,N/A,"[0.11665,0.1846)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,9,20,Group 9,Group 9,N/A,"[0.1846,0.25255)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,10,20,Group 10,Group 10,N/A,"[0.25255,0.3205)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,11,20,Group 11,Group 11,N/A,"[0.3205,0.38845)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,12,20,Group 12,Group 12,N/A,"[0.38845,0.4564)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,13,20,Group 13,Group 13,N/A,"[0.4564,0.52435)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,14,20,Group 14,Group 14,N/A,"[0.52435,0.5923)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,15,20,Group 15,Group 15,N/A,"[0.5923,0.66025)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,16,20,Group 16,Group 16,N/A,"[0.66025,0.7282)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,17,20,Group 17,Group 17,N/A,"[0.7282,0.79615)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,18,20,Group 18,Group 18,N/A,"[0.79615,0.8641)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,19,20,Group 19,Group 19,N/A,"[0.8641,0.93205)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,20,20,Group 20,Group 20,N/A,"[0.93205,1]",Group 20,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::a,20,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,20,missing,missing,N/A,"[99.997,99.999]",don't know (99.997); refusal (99.998); not stated (99.999),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat20,HUIDHSI_cat20_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,20,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,1,50,Group 1,Group 1,N/A,"[-0.359,-0.33182)",Group 1,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,2,50,Group 2,Group 2,N/A,"[-0.33182,-0.30464)",Group 2,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,3,50,Group 3,Group 3,N/A,"[-0.30464,-0.27746)",Group 3,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,4,50,Group 4,Group 4,N/A,"[-0.27746,-0.25028)",Group 4,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,5,50,Group 5,Group 5,N/A,"[-0.25028,-0.2231)",Group 5,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,6,50,Group 6,Group 6,N/A,"[-0.2231,-0.19592)",Group 6,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,7,50,Group 7,Group 7,N/A,"[-0.19592,-0.16874)",Group 7,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,8,50,Group 8,Group 8,N/A,"[-0.16874,-0.14156)",Group 8,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,9,50,Group 9,Group 9,N/A,"[-0.14156,-0.11438)",Group 9,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,10,50,Group 10,Group 10,N/A,"[-0.11438,-0.0872)",Group 10,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_11,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,11,50,Group 11,Group 11,N/A,"[-0.0872,-0.06002)",Group 11,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_12,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,12,50,Group 12,Group 12,N/A,"[-0.06002,-0.03284)",Group 12,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_13,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,13,50,Group 13,Group 13,N/A,"[-0.03284,-0.00566000000000004)",Group 13,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_14,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,14,50,Group 14,Group 14,N/A,"[-0.00566000000000004,0.02152)",Group 14,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_15,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,15,50,Group 15,Group 15,N/A,"[0.02152,0.0487)",Group 15,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_16,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,16,50,Group 16,Group 16,N/A,"[0.0487,0.07588)",Group 16,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_17,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,17,50,Group 17,Group 17,N/A,"[0.07588,0.10306)",Group 17,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_18,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,18,50,Group 18,Group 18,N/A,"[0.10306,0.13024)",Group 18,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_19,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,19,50,Group 19,Group 19,N/A,"[0.13024,0.15742)",Group 19,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_20,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,20,50,Group 20,Group 20,N/A,"[0.15742,0.1846)",Group 20,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_21,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,21,50,Group 21,Group 21,N/A,"[0.1846,0.21178)",Group 21,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_22,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,22,50,Group 22,Group 22,N/A,"[0.21178,0.23896)",Group 22,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_23,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,23,50,Group 23,Group 23,N/A,"[0.23896,0.26614)",Group 23,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_24,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,24,50,Group 24,Group 24,N/A,"[0.26614,0.29332)",Group 24,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_25,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,25,50,Group 25,Group 25,N/A,"[0.29332,0.3205)",Group 25,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_26,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,26,50,Group 26,Group 26,N/A,"[0.3205,0.34768)",Group 26,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_27,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,27,50,Group 27,Group 27,N/A,"[0.34768,0.37486)",Group 27,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_28,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,28,50,Group 28,Group 28,N/A,"[0.37486,0.40204)",Group 28,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_29,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,29,50,Group 29,Group 29,N/A,"[0.40204,0.42922)",Group 29,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_30,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,30,50,Group 30,Group 30,N/A,"[0.42922,0.4564)",Group 30,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_31,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,31,50,Group 31,Group 31,N/A,"[0.4564,0.48358)",Group 31,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_32,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,32,50,Group 32,Group 32,N/A,"[0.48358,0.51076)",Group 32,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_33,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,33,50,Group 33,Group 33,N/A,"[0.51076,0.53794)",Group 33,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_34,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,34,50,Group 34,Group 34,N/A,"[0.53794,0.56512)",Group 34,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_35,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,35,50,Group 35,Group 35,N/A,"[0.56512,0.5923)",Group 35,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_36,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,36,50,Group 36,Group 36,N/A,"[0.5923,0.61948)",Group 36,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_37,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,37,50,Group 37,Group 37,N/A,"[0.61948,0.64666)",Group 37,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_38,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,38,50,Group 38,Group 38,N/A,"[0.64666,0.67384)",Group 38,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_39,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,39,50,Group 39,Group 39,N/A,"[0.67384,0.70102)",Group 39,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_40,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,40,50,Group 40,Group 40,N/A,"[0.70102,0.7282)",Group 40,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_41,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,41,50,Group 41,Group 41,N/A,"[0.7282,0.75538)",Group 41,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_42,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,42,50,Group 42,Group 42,N/A,"[0.75538,0.78256)",Group 42,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_43,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,43,50,Group 43,Group 43,N/A,"[0.78256,0.80974)",Group 43,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_44,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,44,50,Group 44,Group 44,N/A,"[0.80974,0.83692)",Group 44,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_45,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,45,50,Group 45,Group 45,N/A,"[0.83692,0.8641)",Group 45,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_46,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,46,50,Group 46,Group 46,N/A,"[0.8641,0.89128)",Group 46,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_47,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,47,50,Group 47,Group 47,N/A,"[0.89128,0.91846)",Group 47,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_48,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,48,50,Group 48,Group 48,N/A,"[0.91846,0.94564)",Group 48,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_49,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,49,50,Group 49,Group 49,N/A,"[0.94564,0.97282)",Group 49,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_50,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,50,50,Group 50,Group 50,N/A,"[0.97282,1]",Group 50,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::a,50,not applicable,not applicable,N/A,99.996,not applicable (99.996),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,50,missing,missing,N/A,"[99.997,99.999]",don't know (99.997); refusal (99.998); not stated (99.999),Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIDHSI_cat50,HUIDHSI_cat50_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, cchs2015_2016_p::HUIDVHSI, [HUIDHSI]",NA,cont,NA::b,50,missing,missing,N/A,else,else,Overall HUI,Categorical Health Utility Index (HUI3),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",NA,cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",NA,cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",NA,cat,3,3,Dext/need help,Needs help,N/A,3,Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Dexterity,"Dexterity trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGDEX, cchs2003_p::HUICGDEX, cchs2005_p::HUIEGDEX, cchs2015_2016_p::HUIDGDEX, [HUIGDEX]",NA,cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDDEX],NA,cat,1,3,No dext prob,No problems,N/A,1,No dext prob,HUI Dexterity,"Dexterity trouble - function code (D, G)",Shared files use dexterity health status with more detailed categories. See derived variable documentation.,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDDEX],NA,cat,2,3,Dext/no help,No help needed,N/A,2,Dext/no help,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDDEX],NA,cat,3,3,Dext/need help,Needs help,N/A,"[3,6]",Dext/need help,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDDEX],NA,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDDEX],NA,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGDEX,HUIGDEX_cat3_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDDEX],NA,cat,NA::b,3,missing,missing,N/A,else,else,HUI Dexterity,"Dexterity trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGHER,HUIGHER_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,2,3,Hear corrected,Hearing corrected,N/A,2,Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,3,Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Hearing,"Hearing problems - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGHER, cchs2003_p::HUICGHER, cchs2005_p::HUIEGHER, cchs2015_2016_p::HUIDGHER, [HUIGHER]",,cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADHER, cchs2003_m::HUICDHER, cchs2005_m::HUIEDHER, cchs2015_2016_m::HUIDVHER, cchs2019_2020_m::HUIDVHER, cchs2023_m::HUIDVHER, [HUIDHER]",,cat,1,3,No hearing prob,No hearing problem,N/A,1,No hearing prob,HUI Hearing,"Hearing problems - function code (D, G)",Shared files use hearing health status with more detailed categories. See derived variable documentation.,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADHER, cchs2003_m::HUICDHER, cchs2005_m::HUIEDHER, cchs2015_2016_m::HUIDVHER, cchs2019_2020_m::HUIDVHER, cchs2023_m::HUIDVHER, [HUIDHER]",,cat,2,3,Hear corrected,Hearing corrected,N/A,"[2,3]",Hear corrected,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADHER, cchs2003_m::HUICDHER, cchs2005_m::HUIEDHER, cchs2015_2016_m::HUIDVHER, cchs2019_2020_m::HUIDVHER, cchs2023_m::HUIDVHER, [HUIDHER]",,cat,3,3,Hear n-corrected,Hearing not-corrected,N/A,"[4,6]",Hear n-corrected,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADHER, cchs2003_m::HUICDHER, cchs2005_m::HUIEDHER, cchs2015_2016_m::HUIDVHER, cchs2019_2020_m::HUIDVHER, cchs2023_m::HUIDVHER, [HUIDHER]",,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADHER, cchs2003_m::HUICDHER, cchs2005_m::HUIEDHER, cchs2015_2016_m::HUIDVHER, cchs2019_2020_m::HUIDVHER, cchs2023_m::HUIDVHER, [HUIDHER]",,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGHER,HUIGHER_cat3_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADHER, cchs2003_m::HUICDHER, cchs2005_m::HUIEDHER, cchs2015_2016_m::HUIDVHER, cchs2019_2020_m::HUIDVHER, cchs2023_m::HUIDVHER, [HUIDHER]",,cat,NA::b,3,missing,missing,N/A,else,else,HUI Hearing,"Hearing problems - function code (D, G)",,2.2.0,2025-06-30,active,,, +HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",NA,cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",NA,cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",NA,cat,3,4,Need mech supp.,Need mech supp.,N/A,3,Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",NA,cat,4,4,Can't walk,Can't walk,N/A,4,Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Mobility,"Mobility trouble - function code (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGMOB, cchs2003_p::HUICGMOB, cchs2005_p::HUIEGMOB, cchs2015_2016_p::HUIDGMOB, [HUIGMOB]",NA,cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDMOB],NA,cat,1,4,No mobil. Prob.,No mobil. Prob.,N/A,1,No mobil. Prob.,HUI Mobility,"Mobility trouble - function code (D, G)",Shared files use amputation health status with more detailed categories. See derived variable documentation.,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDMOB],NA,cat,2,4,Mob-no aid req.,Mob-no aid req.,N/A,2,Mob-no aid req.,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDMOB],NA,cat,3,4,Need mech supp.,Need mech supp.,N/A,"[3,4]",Need mech supp.,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDMOB],NA,cat,4,4,Can't walk,Can't walk,N/A,"[5,6]",Can't walk,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDMOB],NA,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDMOB],NA,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGMOB,HUIGMOB_cat4_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDMOB],NA,cat,NA::b,4,missing,missing,N/A,else,else,HUI Mobility,"Mobility trouble - function code (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",NA,cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",NA,cat,2,2,Part/not underst,Part/not underst,N/A,2,Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Speech,"Speech trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGSPE, cchs2003_p::HUICGSPE, cchs2005_p::HUIEGSPE, cchs2015_2016_p::HUIDGSPE, [HUIGSPE]",NA,cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDSPE],NA,cat,1,2,No speech prob,No speech problem,N/A,1,No speech prob,HUI Speech,"Speech trouble - function code - (D, G)",Shared files use speech health status with more detailed categories. See derived variable documentation.,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDSPE],NA,cat,2,2,Part/not underst,Part/not underst,N/A,"[2,5]",Part/not underst,HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDSPE],NA,cat,NA::a,2,not applicable,not applicable,N/A,96,not applicable,HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDSPE],NA,cat,NA::b,2,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGSPE,HUIGSPE_cat2_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[HUIDSPE],NA,cat,NA::b,2,missing,missing,N/A,else,else,HUI Speech,"Speech trouble - function code - (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,5,Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Vision,"Vision trouble - function code - (D, G)",CCHS 2001 does not include don't know (7) or refusal (8),2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p","cchs2001_p::HUIAGVIS, cchs2003_p::HUICGVIS, cchs2005_p::HUIEGVIS, cchs2015_2016_p::HUIDGVIS, [HUIGVIS]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,1,5,No visual probl.,No visual problems,N/A,1,No visual probl.,HUI Vision,"Vision trouble - function code - (D, G)",Shared files use vision health status with more detailed categories. See derived variable documentation.,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,2,5,Corr. by lenses,Corrected by lenses,N/A,2,Corr. by lenses,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,3,5,Hypermet/n corr,Hypermetropia/no correction,N/A,3,Hypermet/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,4,5,Myopia/n corr,Myopia/no correction,N/A,4,Myopia/n corr,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,5,5,Myopia & hypermet,Myopia & hypermetropia,N/A,"[5,6]",Myopia & hypermet,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUIGVIS,HUIGVIS_cat5_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2013_2014_m, cchs2015_2016_m, cchs2019_2020_m, cchs2023_m","cchs2001_m::HUIADVIS, cchs2003_m::HUICDVIS, cchs2005_m::HUIEDVIS, cchs2015_2016_m::HUIDVVIS, cchs2019_2020_m::HUIDVVIS, cchs2023_m::HUIDVVIS, [HUIDVIS]",,cat,NA::b,5,missing,missing,N/A,else,else,HUI Vision,"Vision trouble - function code - (D, G)",,2.2.0,2025-06-30,active,,, +HUPDPAD,HUPDPAD_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,1,5,No pain/discomf,No pain/discomf,N/A,1,No pain/discomf,HUI Pain,Act. prevent/pain - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUPDPAD,HUPDPAD_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,2,5,Doesn't prev act,Doesn't prev act,N/A,2,Doesn't prev act,HUI Pain,Act. prevent/pain - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUPDPAD,HUPDPAD_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,3,5,Prevents few act,Prevents few act,N/A,3,Prevents few act,HUI Pain,Act. prevent/pain - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUPDPAD,HUPDPAD_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,4,5,Prev. some act,Prev. some act,N/A,4,Prev. some act,HUI Pain,Act. prevent/pain - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUPDPAD,HUPDPAD_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,5,5,Prev. most act,Prev. most act,N/A,5,Prev. most act,HUI Pain,Act. prevent/pain - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUPDPAD,HUPDPAD_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,HUI Pain,Act. prevent/pain - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HUPDPAD,HUPDPAD_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),HUI Pain,Act. prevent/pain - function code - (D),CCHS 2001 does not include don't know (7) or refusal (8),2.2.0,2025-06-30,active,NA,NA,NA +HUPDPAD,HUPDPAD_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::HUIADPAD, cchs2003_p::HUICDPAD, cchs2005_p::HUIEDPAD, cchs2015_2016_p::HUIDVPAD, [HUPDPAD]",NA,cat,NA::b,5,missing,missing,N/A,else,else,HUI Pain,Act. prevent/pain - function code - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTDBMI,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::HWTADBMI, cchs2003_m::HWTCDBMI, cchs2005_m::HWTEDBMI, cchs2015_2016_m::HWTDVBMI, cchs2017_2018_m::HWTDVBMI, cchs2019_2020_m::HWTDVBMI, [HWTDBMI]",ICES specific,cont,copy,N/A,BMI,Body Mass Index,kg/m2,"[8.07,137.46]",BMI / self-report - (D),BMI,BMI / self-report - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDBMI,N/A,cont,"cchs2001_m, cchs2003_m","cchs2001_m::HWTADBMI, cchs2003_m::HWTCDBMI",ICES specific,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.6,Not applicable,BMI,BMI / self-report - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDBMI,N/A,cont,"cchs2001_m, cchs2003_m","cchs2001_m::HWTADBMI, cchs2003_m::HWTCDBMI",ICES specific,cont,NA::b,N/A,missing,missing,kg/m2,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,BMI / self-report - (D),CCHS 2001 does not include don't know (999.7) or refusal (999.8),2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDBMI,N/A,cont,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_m::HWTEDBMI, cchs2015_2016_m::HWTDVBMI, cchs2017_2018_m::HWTDVBMI, cchs2019_2020_m::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,BMI,BMI / self-report - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDBMI,N/A,cont,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2005_m::HWTEDBMI, cchs2015_2016_m::HWTDVBMI, cchs2017_2018_m::HWTDVBMI, cchs2019_2020_m::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,BMI / self-report - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDBMI,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::HWTADBMI, cchs2003_m::HWTCDBMI, cchs2005_m::HWTEDBMI, cchs2015_2016_m::HWTDVBMI, cchs2017_2018_m::HWTDVBMI, cchs2019_2020_m::HWTDVBMI, [HWTDBMI]",ICES specific,cont,NA::b,N/A,missing,missing,kg/m2,else,else,BMI,BMI / self-report - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDBMI_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[HWTDHTM, HWTDWTK]",NA,N/A,Func::calculate_bmi,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,NA,2.2.0,2025-10-08,active,NA,NA,No typeStart +HWTDBMI_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[HWTDHTM, HWTDWTK]",NA,N/A,NA::a,N/A,not applicable,not applicable,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,NA,2.2.0,2025-10-08,active,NA,NA,NA +HWTDBMI_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[HWTDHTM, HWTDWTK]",NA,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,NA,2.2.0,2025-10-08,active,NA,NA,No typeStart +HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[HWTDBMI_der],NA,N/A,Func::categorize_bmi,N/A,N/A,N/A,kg/m2,N/A,N/A,Categorical BMI,Categorical body mass index,NA,2.2.0,2025-10-08,discontinued,NA,NA,No typeStart +HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[HWTDBMI_der],NA,N/A,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI,Categorical body mass index,NA,2.2.0,2025-10-08,discontinued,NA,NA,NA +HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[HWTDBMI_der],NA,N/A,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI,Categorical body mass index,NA,2.2.0,2025-10-08,discontinued,NA,NA,NA +HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[HWTDBMI_der],NA,N/A,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI,Categorical body mass index,NA,2.2.0,2025-10-08,discontinued,NA,NA,NA +HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[HWTDBMI_der],NA,N/A,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI,Categorical body mass index,NA,2.2.0,2025-10-08,discontinued,NA,NA,NA +HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[HWTDBMI_der],NA,N/A,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI,Categorical body mass index,NA,2.2.0,2025-10-08,discontinued,NA,NA,NA +HWTDBMI_der_cat4,HWTDBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",DerivedVar::[HWTDBMI_der],NA,N/A,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI,Categorical body mass index,NA,2.2.0,2025-10-08,discontinued,NA,NA,NA +HWTDCOR_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, HWTDHTM, HWTDWTK]",NA,N/A,Func::adjust_bmi,N/A,N/A,N/A,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,NA,2.2.0,2025-10-08,active,NA,NA,No typeStart +HWTDCOR_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, HWTDHTM, HWTDWTK]",NA,N/A,NA::a,N/A,not applicable,not applicable,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,NA,2.2.0,2025-10-08,active,NA,NA,NA +HWTDCOR_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","DerivedVar::[DHH_SEX, HWTDHTM, HWTDWTK]",NA,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,NA,2.2.0,2025-10-08,active,NA,NA,No typeStart +HWTDHTM,N/A,cont,cchs2001_m,[HWTADHTM],ICES specific,cont,copy,N/A,Height,Height,meters,"[0.914,2.134]",Height,Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDHTM,N/A,cont,cchs2001_m,[HWTADHTM],ICES specific,cont,NA::a,N/A,Height,Height,meters,9.996,not applicable,Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDHTM,N/A,cont,cchs2001_m,[HWTADHTM],ICES specific,cont,NA::b,N/A,Height,Height,meters,"[9.997,9.999]",don't know (9.997); refusal (9.998); not stated (9.999),Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDHTM,N/A,cont,cchs2001_m,[HWTADHTM],ICES specific,cont,NA::b,N/A,Height,Height,meters,else,else,Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDHTM,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_m::HWTCDHTM, cchs2005_m::HWTEDHTM, cchs2015_2016_m::HWTDVHTM, cchs2017_2018_m::HWTDVHTM, cchs2019_2020_m::HWTDVHTM, [HWTDHTM]",ICES specific,cont,copy,N/A,Height,Height,meters,"[0.914,2.134]",Height,Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDHTM,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_m::HWTCDHTM, cchs2005_m::HWTEDHTM, cchs2015_2016_m::HWTDVHTM, cchs2017_2018_m::HWTDVHTM, cchs2019_2020_m::HWTDVHTM, [HWTDHTM]",ICES specific,cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDHTM,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_m::HWTCDHTM, cchs2005_m::HWTEDHTM, cchs2015_2016_m::HWTDVHTM, cchs2017_2018_m::HWTDVHTM, cchs2019_2020_m::HWTDVHTM, [HWTDHTM]",ICES specific,cont,NA::b,N/A,missing,missing,meters,"[9.997,9.999]",don't know (9.997); refusal (9.998); not stated (9.999),Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDHTM,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2003_m::HWTCDHTM, cchs2005_m::HWTEDHTM, cchs2015_2016_m::HWTDVHTM, cchs2017_2018_m::HWTDVHTM, cchs2019_2020_m::HWTDVHTM, [HWTDHTM]",ICES specific,cont,NA::b,N/A,missing,missing,meters,else,else,Height,Height (metres)/self-reported - (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDWTK,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::HWTADWTK, cchs2003_m::HWTCDWTK, cchs2005_m::HWTEDWTK, cchs2015_2016_m::HWTDVWTK, cchs2017_2018_m::HWTDVWTK, cchs2019_2020_m::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,copy,N/A,Weight,Weight - kilograms,kg,"[20.25,258.75]",Weight - kilograms (D),Weight,Weight - kilograms (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDWTK,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::HWTADWTK, cchs2003_m::HWTCDWTK, cchs2005_m::HWTEDWTK, cchs2015_2016_m::HWTDVWTK, cchs2017_2018_m::HWTDVWTK, cchs2019_2020_m::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,Weight - kilograms (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDWTK,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::HWTADWTK, cchs2003_m::HWTCDWTK, cchs2005_m::HWTEDWTK, cchs2015_2016_m::HWTDVWTK, cchs2017_2018_m::HWTDVWTK, cchs2019_2020_m::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,Weight - kilograms (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTDWTK,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m","cchs2001_m::HWTADWTK, cchs2003_m::HWTCDWTK, cchs2005_m::HWTEDWTK, cchs2015_2016_m::HWTDVWTK, cchs2017_2018_m::HWTDVWTK, cchs2019_2020_m::HWTDVWTK, [HWTDWTK]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg,else,else,Weight,Weight - kilograms (D),NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2019_2020_p::HWTDGBMI, [HWTGBMI]",ICES confirmed,cont,copy,N/A,BMI,Body Mass Index,kg/m2,"[8.07,137.46]","BMI / self-report - (D,G)",BMI,"BMI / self-report - (D,G)","CCHS 2001 restricts BMI to ages 20-64. CCHS 2015-2016 uses adjusted BMI. Consider using using HWTGBMI_der for the most concistent BMI variable across all CCHS cycles. See documentation for BMI_fun() in derived variables for more details, or type ?BMI_fun in the console.",2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.6,Not applicable,BMI,"BMI / self-report - (D,G)","CCHS 2001 and 2003 codes not applicable and missing variables as 999.6 and 999.7-999.9 respectively, while CCHS 2005 onwards codes not applicable and missing variables as 999.96 and 999.7-999.99 respectively",2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,"[999.7,999.9]",don't know (999.7); refusal (999.8); not stated (999.9),BMI,"BMI / self-report - (D,G)",Don't know (999.7) and refusal (999.8) not included in 2001 CCHS,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTGBMI,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2019_2020_p::HWTDGBMI, [HWTGBMI]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,BMI,"BMI / self-report - (D,G)",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTGBMI,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2019_2020_p::HWTDGBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),BMI,"BMI / self-report - (D,G)",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTGBMI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::HWTAGBMI, cchs2003_p::HWTCGBMI, cchs2005_p::HWTEGBMI, cchs2015_2016_p::HWTDGBMI, cchs2017_2018_p::HWTDGBMI, cchs2019_2020_p::HWTDGBMI, [HWTGBMI]",ICES confirmed,cont,NA::b,N/A,missing,missing,kg/m2,else,else,BMI,"BMI / self-report - (D,G)",NA,2.2.0,2025-06-30,active,v3.0.0alpha,NA,NA +HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[HWTGHTM, HWTGWTK]",NA,N/A,Func::calculate_bmi,N/A,N/A,N/A,kg/m2,"[15,50]",Derived BMI valid range,Derived BMI,Derived Body Mass Index,"BMI variable derived from the harmonized height and weight variables. See documentation for calculate_bmi() in derived variables for more details, or type ?calculate_bmi in the console.",2.2.0,2025-06-30,active,NA,NA,NA +HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[HWTGHTM, HWTGWTK]",NA,N/A,NA::a,N/A,not applicable,not applicable,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGBMI_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[HWTGHTM, HWTGWTK]",NA,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived BMI,Derived Body Mass Index,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +HWTGBMI_der_cat4,HWTGBMI_der_cat4N/A_Func::categorize_bmi,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[HWTGBMI_der],NA,N/A,Func::categorize_bmi,N/A,N/A,N/A,kg/m2,N/A,N/A,Categorical BMI,Categorical body mass index,NA,3.0.0,2025-07-10,active,NA,NA,No typeStart +HWTGBMI_der_cat4,HWTGBMI_der_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[HWTGBMI_der],NA,N/A,1,4,Underweight,Underweight with BMI less than 18.5,kg/m2,1,Underweight,Categorical BMI,Categorical body mass index,NA,3.0.0,2025-07-10,active,NA,NA,NA +HWTGBMI_der_cat4,HWTGBMI_der_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[HWTGBMI_der],NA,N/A,2,4,Normal weight,Normal weight with BMI between 18.5 and 25,kg/m2,2,Normal weight,Categorical BMI,Categorical body mass index,NA,3.0.0,2025-07-10,active,NA,NA,NA +HWTGBMI_der_cat4,HWTGBMI_der_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[HWTGBMI_der],NA,N/A,3,4,Overweight,Overweight with BMI between 25 and 30,kg/m2,3,Overweight,Categorical BMI,Categorical body mass index,NA,3.0.0,2025-07-10,active,NA,NA,NA +HWTGBMI_der_cat4,HWTGBMI_der_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[HWTGBMI_der],NA,N/A,4,4,Obese,Obese with BMI greater than 30,kg/m2,4,Obese,Categorical BMI,Categorical body mass index,NA,3.0.0,2025-07-10,active,NA,NA,NA +HWTGBMI_der_cat4,HWTGBMI_der_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[HWTGBMI_der],NA,N/A,NA::a,4,not applicable,not applicable,kg/m2,NA::a,not applicable,Categorical BMI,Categorical body mass index,NA,3.0.0,2025-07-10,active,NA,NA,NA +HWTGBMI_der_cat4,HWTGBMI_der_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",DerivedVar::[HWTGBMI_der],NA,N/A,NA::b,4,missing,missing,kg/m2,NA::b,missing,Categorical BMI,Categorical body mass index,NA,3.0.0,2025-07-10,active,NA,NA,NA +HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[HWTDGCOR],NA,N/A,copy,N/A,Adjusted BMI,Adjusted body mass index,kg/m2,"[14.23,56.72]",Adjusted BMI,Adjusted BMI,Adjusted BMI,NA,2.1.0,2025-06-30,active,NA,NA,NA +HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[HWTDGCOR],NA,N/A,NA::a,N/A,not applicable,not applicable,kg/m2,999.96,Not applicable,Adjusted BMI,Adjusted BMI,NA,2.1.0,2025-06-30,active,NA,NA,NA +HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[HWTDGCOR],NA,N/A,NA::b,N/A,missing,missing,kg/m2,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Adjusted BMI,Adjusted BMI,NA,2.1.0,2025-06-30,active,NA,NA,NA +HWTGCOR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[HWTDGCOR],NA,N/A,NA::b,N/A,missing,missing,kg/m2,else,else,Adjusted BMI,Adjusted BMI,NA,2.1.0,2025-06-30,active,NA,NA,NA +HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]",NA,NA,Func::adjust_bmi,N/A,N/A,N/A,kg/m2,"[15,50]",Adjusted BMI valid range,Derived adjusted BMI,Derived adjusted BMI,"Adjusted BMI variable derived from the harmonized sex, height and weight variables. See documentation for adjust_bmi() in derived variables for more details, or type ?adjust_bmi in the console.",2.2.0,2025-06-30,active,NA,NA,NA +HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]",NA,N/A,NA::a,N/A,not applicable,not applicable,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGCOR_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[DHH_SEX, HWTGHTM, HWTGWTK]",NA,N/A,NA::b,N/A,missing,missing,kg/m2,N/A,N/A,Derived adjusted BMI,Derived adjusted BMI,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.118,N/A,Height,converted height (3'8 IN - 44 inches),meters,1,3'8 IN - 44 inches,Height,"Height (metres)/self-reported - (D,G)","2001 and 2003 CCHS use inches, values converted to meters to 3 decimal points",2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.143,N/A,Height,converted height (3'9 IN - 45 inches),meters,2,3'9 IN - 45 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.168,N/A,Height,converted height (3'10 IN - 46 inches),meters,3,3'10 IN - 46 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.194,N/A,Height,converted height (3'11 IN - 47 inches),meters,4,3'11 IN - 47 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.219,N/A,Height,converted height (4'0 IN - 48 inches),meters,5,4'0 IN - 48 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.245,N/A,Height,converted height (4'1 IN - 49 inches),meters,6,4'1 IN - 49 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.27,N/A,Height,converted height (4'2 IN - 50 inches),meters,7,4'2 IN - 50 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.295,N/A,Height,converted height (4'3 IN - 51 inches),meters,8,4'3 IN - 51 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.321,N/A,Height,converted height (4'4 IN - 52 inches),meters,9,4'4 IN - 52 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.346,N/A,Height,converted height (4'5 IN - 53 inches),meters,10,4'5 IN - 53 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.372,N/A,Height,converted height (4'6 IN - 54 inches),meters,11,4'6 IN - 54 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.397,N/A,Height,converted height (4'7 IN - 55 inches),meters,12,4'7 IN - 55 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.422,N/A,Height,converted height (4'8 IN - 56 inches),meters,13,4'8 IN - 56 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.448,N/A,Height,converted height (4'9 IN - 57 inches),meters,14,4'9 IN - 57 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.473,N/A,Height,converted height (4'10 IN - 58 inches),meters,15,4'10 IN - 58 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.499,N/A,Height,converted height (4'11 in - 59 inches),meters,16,4'11 in - 59 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.524,N/A,Height,converted height (5'0 IN - 60 inches),meters,17,5'0 IN - 60 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.549,N/A,Height,converted height (5'1 IN - 61 inches),meters,18,5'1 IN - 61 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.575,N/A,Height,converted height (5'2 IN - 62 inches),meters,19,5'2 IN - 62 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.6,N/A,Height,converted height (5'3 IN - 63 inches),meters,20,5'3 IN - 63 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.626,N/A,Height,converted height (5'4 IN - 64 inches),meters,21,5'4 IN - 64 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.651,N/A,Height,converted height (5'5 IN - 65 inches),meters,22,5'5 IN - 65 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.676,N/A,Height,converted height (5'6 IN - 66 inches),meters,23,5'6 IN - 66 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.702,N/A,Height,converted height (5'7 IN - 67 inches),meters,24,5'7 IN - 67 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.727,N/A,Height,converted height (5'8 IN - 68 inches),meters,25,5'8 IN - 68 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.753,N/A,Height,converted height (5'9 IN - 69 inches),meters,26,5'9 IN - 69 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.778,N/A,Height,converted height (5'10 IN - 70 inches),meters,27,5'10 IN - 70 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.803,N/A,Height,converted height (5'11 IN - 71 inches),meters,28,5'11 IN - 71 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.829,N/A,Height,converted height (6'0 IN - 72 inches),meters,29,6'0 IN - 72 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.854,N/A,Height,converted height (6'1 IN - 73 inches),meters,30,6'1 IN - 73 inches,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,1.93,N/A,Height,converted height (6'2 IN+ - 74+ inches),meters,31,6'2 IN+ - 74+ inches,Height,"Height (metres)/self-reported - (D,G)",74+ inches converted to 76 inches,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,NA::a,N/A,not applicable,not applicable,meters,96,not applicable,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,NA::b,N/A,missing,missing,meters,99,not stated (99),Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT",NA,cat,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2019_2020_p::HWTDGHTM, [HWTGHTM]",NA,cont,copy,N/A,Height,Height,meters,"[0.914,2.134]",Height,Height,"Height (metres)/self-reported - (D,G)",Height is a reported in meters from 2005 CCHS onwards,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2019_2020_p::HWTDGHTM, [HWTGHTM]",NA,cont,NA::a,N/A,not applicable,not applicable,meters,9.996,not applicable,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2019_2020_p::HWTDGHTM, [HWTGHTM]",NA,cont,NA::b,N/A,missing,missing,meters,"[9.997,9.999]","don't know (9.997), refusal (9.998), not stated (9.999)",Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGHTM,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2005_p::HWTEGHTM, cchs2015_2016_p::HWTDGHTM, cchs2017_2018_p::HWTDGHTM, cchs2019_2020_p::HWTDGHTM, [HWTGHTM]",NA,cont,NA::b,N/A,missing,missing,meters,else,else,Height,"Height (metres)/self-reported - (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2019_2020_p::HWTDGWTK, [HWTGWTK]",NA,cont,copy,N/A,Weight,Weight - kilograms,kg,"[27.0,135.0]",Weight - kilograms (D),Weight,"Weight - kilograms (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2019_2020_p::HWTDGWTK, [HWTGWTK]",NA,cont,NA::a,N/A,not applicable,not applicable,kg,999.96,not applicable,Weight,"Weight - kilograms (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGWTK,N/A,cont,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::HWTAGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2019_2020_p::HWTDGWTK, [HWTGWTK]",NA,cont,NA::b,N/A,missing,missing,kg,"[999.97,999.99]",don't know (999.97); refusal (999.98); not stated (999.99),Weight,"Weight - kilograms (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGWTK,N/A,cont,cchs2003_p,[HWTCGWTK],NA,cont,NA::a,N/A,not applicable,not applicable,kg,996,not applicable,Weight,"Weight - kilograms (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGWTK,N/A,cont,cchs2003_p,[HWTCGWTK],NA,cont,NA::b,N/A,missing,missing,kg,"[997,999]",don't know (997); refusal (998); not stated (999),Weight,"Weight - kilograms (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +HWTGWTK,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, cchs2015_2016_p::HWTDGWTK, cchs2017_2018_p::HWTDGWTK, cchs2019_2020_p::HWTDGWTK, [HWTGWTK]",NA,cont,NA::b,N/A,missing,missing,kg,else,else,Weight,"Weight - kilograms (D,G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +immigration_der,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,Func::categorize_immigration,N/A,N/A,N/A,N/A,N/A,N/A,Immigration category,Immigration category,"Derived from SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont (PUMF)",2.2.0,2025-06-30,active,,,No typeStart +immigration_der,N/A,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,Func::categorize_immigration,N/A,N/A,N/A,N/A,N/A,N/A,Immigration category,Immigration category,"Derived from SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES (master)",2.2.0,2025-06-30,active,,,No typeStart +immigration_der,immigration_der_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,1,6,"White, Canada-born","White, Canada-born",N/A,1,"White, Canada-born",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,1,6,"White, Canada-born","White, Canada-born",N/A,1,"White, Canada-born",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,2,6,"Visible minority, Canada-born","Visible minority, Canada-born",N/A,2,"Visible minority, Canada-born",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,2,6,"Visible minority, Canada-born","Visible minority, Canada-born",N/A,2,"Visible minority, Canada-born",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,3,6,"White immigrant, 0-9 years in Canada","White immigrant, 0-9 years in Canada",N/A,3,"White immigrant, 0-9 years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,3,6,"White immigrant, 0-9 years in Canada","White immigrant, 0-9 years in Canada",N/A,3,"White immigrant, 0-9 years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,4,6,"Visible minority immigrant, 0-9 years in Canada","Visible minority immigrant, 0-9 years in Canada",N/A,4,"Visible minority immigrant, 0-9 years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,4,6,"Visible minority immigrant, 0-9 years in Canada","Visible minority immigrant, 0-9 years in Canada",N/A,4,"Visible minority immigrant, 0-9 years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,5,6,"White immigrant, 10+ years in Canada","White immigrant, 10+ years in Canada",N/A,5,"White immigrant, 10+ years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,5,6,"White immigrant, 10+ years in Canada","White immigrant, 10+ years in Canada",N/A,5,"White immigrant, 10+ years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,6,6,"Visible minority immigrant, 10+ years in Canada","Visible minority immigrant, 10+ years in Canada",N/A,6,"Visible minority immigrant, 10+ years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_6,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,6,6,"Visible minority immigrant, 10+ years in Canada","Visible minority immigrant, 10+ years in Canada",N/A,6,"Visible minority immigrant, 10+ years in Canada",Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,NA::a,6,not applicable,not applicable,N/A,NA::a,not applicable,Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,NA::a,6,not applicable,not applicable,N/A,NA::a,not applicable,Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SDCFIMM, SDCGCBG, SDCGCGT, SDCGRES_cont]",,N/A,NA::b,6,missing,missing,N/A,NA::b,missing,Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +immigration_der,immigration_der_cat6_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[SDCFIMM, SDCGCB, SDCDCGT_cat7, SDCDRES]",,N/A,NA::b,6,missing,missing,N/A,NA::b,missing,Immigration category,Immigration category,,2.2.0,2025-06-30,active,,, +INCDRCA,INCDRCA_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRCA,INCDRCA_cat10_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",NA,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution,Household income distribution - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRPR,INCDRPR_cat10_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRPR, cchs2015_2016_p::INCDVRPR, cchs2017_2018_p::INCDVRPR, [INCDRPR]",NA,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution provincial level,Hhld inc. distribution-prov. level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,1,10,Decile 1,Decile 1,N/A,1,Decile 1,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,2,10,Decile 2,Decile 2,N/A,2,Decile 2,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,3,10,Decile 3,Decile 3,N/A,3,Decile 3,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,4,10,Decile 4,Decile 4,N/A,4,Decile 4,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,5,10,Decile 5,Decile 5,N/A,5,Decile 5,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,6,10,Decile 6,Decile 6,N/A,6,Decile 6,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,7,10,Decile 7,Decile 7,N/A,7,Decile 7,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,8,10,Decile 8,Decile 8,N/A,8,Decile 8,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,9,10,Decile 9,Decile 9,N/A,9,Decile 9,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,10,10,Decile 10,Decile 10,N/A,10,Decile 10,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCDRRS,INCDRRS_cat10_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::INCEDRRS, cchs2015_2016_p::INCDVRRS, cchs2017_2018_p::INCDVRRS, [INCDRRS]",NA,cat,NA::b,10,missing,missing,N/A,else,else,Household income distribution health region level,Hhld inc. distribution- hr level - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_1,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories",2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_2,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_3,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_4,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_5,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_6,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAa,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAb,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAb,cat,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_1,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_2,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_3,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_4,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_5,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_6,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAa,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_1,cat,cchs2012_m,[INCDHH],NA,cat,1,6,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_2,cat,cchs2012_m,[INCDHH],NA,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_3,cat,cchs2012_m,[INCDHH],NA,cat,3,6,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_4,cat,cchs2012_m,[INCDHH],NA,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_5,cat,cchs2012_m,[INCDHH],NA,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_6,cat,cchs2012_m,[INCDHH],NA,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAa,cat,cchs2012_m,[INCDHH],NA,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_A,INCGHH_A_cat6_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,6,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_1,cat,cchs2001_p,[INCAGHH],NA,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,2]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2001 classifies no income and less than $15,000 as separate categories",2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_2,cat,cchs2001_p,[INCAGHH],NA,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_3,cat,cchs2001_p,[INCAGHH],NA,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_4,cat,cchs2001_p,[INCAGHH],NA,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_5,cat,cchs2001_p,[INCAGHH],NA,cat,5,5,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAa,cat,cchs2001_p,[INCAGHH],NA,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,cchs2001_p,[INCAGHH],NA,cat,NA::b,5,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,cchs2001_p,[INCAGHH],NA,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,"Total household income from all sources (D, G)","CCHS 2003 and 2005 classifies no income and less than $15,000 as one category",2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAa,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,NA::b,5,missing,missing,$/year,"[7,9]",don't know (7); refusal (8); not stated (9),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_1,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_2,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_3,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_4,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_5,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAa,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_1,cat,cchs2012_m,[INCDHH],NA,cat,1,5,"No income or less than $15,000","No income or less than $15,000",$/year,"[1,4]","No income or less than $15,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_2,cat,cchs2012_m,[INCDHH],NA,cat,2,5,"$15,000-29,999","$15,000-29,999",$/year,"[5,6]","$15,000-29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_3,cat,cchs2012_m,[INCDHH],NA,cat,3,5,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_4,cat,cchs2012_m,[INCDHH],NA,cat,4,5,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_5,cat,cchs2012_m,[INCDHH],NA,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAa,cat,cchs2012_m,[INCDHH],NA,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_B,INCGHH_B_cat5_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,5,5,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,NA::a,5,not applicable,not applicable,$/year,6,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,NA::b,5,missing,missing,$/year,"[7,9]",don't know (7); refusal (8); not stated (9),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_1,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_2,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_3,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_4,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_5,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAa,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_1,cat,cchs2012_m,[INCDHH],NA,cat,1,5,"No income or less than $20,000","No income or less than $20,000",$/year,"[1,5]","No income or less than $20,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_2,cat,cchs2012_m,[INCDHH],NA,cat,2,5,"$20,000-39,999","$20,000-39,999",$/year,"[6,7]","$20,000-39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_3,cat,cchs2012_m,[INCDHH],NA,cat,3,5,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_4,cat,cchs2012_m,[INCDHH],NA,cat,4,5,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_5,cat,cchs2012_m,[INCDHH],NA,cat,5,5,"$80,000 or more","$80,000 or more",$/year,"[12,15]","$80,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAa,cat,cchs2012_m,[INCDHH],NA,cat,NA::a,5,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_C,INCGHH_C_cat5_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,5,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,3,"$15,000-29,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2001_p,cchs2001_p::INCAGHH,NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,7500,N/A,"No income or less than $15,000","No income or less than $15,000",$/year,1,"No income or less than $15,000",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,22500,N/A,"$15,000-29,999","$15,000-29,999",$/year,2,"$15,000-29,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,3,"$30,000-$49,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,4,"$50,000-$79,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,NA::b,N/A,missing,missing,$/year,"[7,9]",don't know (7); refusal (8); not stated (9),Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2003_p, cchs2005_p","cchs2003_p::INCCGHH, cchs2005_p::INCEGHH",NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,10000,N/A,"No income or less than $20,000","No income or less than $20,000",$/year,1,"No income or less than $20,000",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,30000,N/A,"$20,000-39,999","$20,000-39,999",$/year,2,"$20,000-39,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,3,"$40,000-$59,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,4,"$60,000-$79,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,5,"$80,000 or more",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,NA::a,N/A,not applicable,not applicable,$/year,6,not applicable,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,NA::b,N/A,missing,missing,$/year,"[7,9]",don't know (7); refusal (8); not stated (9),Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGHH, cchs2017_2018_p::INCDGHH, [INCGHH]",NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,0,N/A,No income,No income,$/year,1,No income,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,125000,N/A,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,170000,N/A,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_cont,N/A,cont,cchs2012_m,[INCDHH],NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Household income,Total household income from all sources - continuous,NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_1,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_2,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_3,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_4,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_5,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_6,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_7,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_8,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_9,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_10,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_11,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_12,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_NAa,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,12,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_1,cat,cchs2012_m,[INCDHH],NA,cat,1,12,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_2,cat,cchs2012_m,[INCDHH],NA,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_3,cat,cchs2012_m,[INCDHH],NA,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_4,cat,cchs2012_m,[INCDHH],NA,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_5,cat,cchs2012_m,[INCDHH],NA,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_6,cat,cchs2012_m,[INCDHH],NA,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_7,cat,cchs2012_m,[INCDHH],NA,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_8,cat,cchs2012_m,[INCDHH],NA,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_9,cat,cchs2012_m,[INCDHH],NA,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_10,cat,cchs2012_m,[INCDHH],NA,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_11,cat,cchs2012_m,[INCDHH],NA,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_12,cat,cchs2012_m,[INCDHH],NA,cat,12,12,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_NAa,cat,cchs2012_m,[INCDHH],NA,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,12,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_D,INCGHH_D_cat12_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,12,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_1,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_2,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_3,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_4,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_5,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_6,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_7,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_8,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_9,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_10,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_11,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_12,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_13,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_14,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_NAa,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,14,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_NAb,cat,"cchs2009_m, cchs2010_m",[INCDHH],NA,cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_1,cat,cchs2012_m,[INCDHH],NA,cat,1,14,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_2,cat,cchs2012_m,[INCDHH],NA,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_3,cat,cchs2012_m,[INCDHH],NA,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_4,cat,cchs2012_m,[INCDHH],NA,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_5,cat,cchs2012_m,[INCDHH],NA,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_6,cat,cchs2012_m,[INCDHH],NA,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_7,cat,cchs2012_m,[INCDHH],NA,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_8,cat,cchs2012_m,[INCDHH],NA,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_9,cat,cchs2012_m,[INCDHH],NA,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_10,cat,cchs2012_m,[INCDHH],NA,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_11,cat,cchs2012_m,[INCDHH],NA,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_12,cat,cchs2012_m,[INCDHH],NA,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_13,cat,cchs2012_m,[INCDHH],NA,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_14,cat,cchs2012_m,[INCDHH],NA,cat,14,14,"$100,000 or more","$100,000 or more",$/year,"[14,15]","$100,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_NAa,cat,cchs2012_m,[INCDHH],NA,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,14,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_E,INCGHH_E_cat14_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,14,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_1,cat,cchs2012_m,[INCDHH],NA,cat,1,15,No income,No income,$/year,1,No income,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_2,cat,cchs2012_m,[INCDHH],NA,cat,2,15,Less than $5000,Less than $5000,$/year,2,Less than $5000,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_3,cat,cchs2012_m,[INCDHH],NA,cat,3,15,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_4,cat,cchs2012_m,[INCDHH],NA,cat,4,15,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_5,cat,cchs2012_m,[INCDHH],NA,cat,5,15,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_6,cat,cchs2012_m,[INCDHH],NA,cat,6,15,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_7,cat,cchs2012_m,[INCDHH],NA,cat,7,15,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_8,cat,cchs2012_m,[INCDHH],NA,cat,8,15,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_9,cat,cchs2012_m,[INCDHH],NA,cat,9,15,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_10,cat,cchs2012_m,[INCDHH],NA,cat,10,15,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_11,cat,cchs2012_m,[INCDHH],NA,cat,11,15,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_12,cat,cchs2012_m,[INCDHH],NA,cat,12,15,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_13,cat,cchs2012_m,[INCDHH],NA,cat,13,15,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_14,cat,cchs2012_m,[INCDHH],NA,cat,14,15,"$100,000 to less than $150,000","$100,000 to less than $150,000",$/year,14,"$100,000 to less than $150,000",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_15,cat,cchs2012_m,[INCDHH],NA,cat,15,15,"$150,000 or more","$150,000 or more",$/year,15,"$150,000 or more",Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_NAa,cat,cchs2012_m,[INCDHH],NA,cat,NA::a,15,not applicable,not applicable,$/year,96,not applicable,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,15,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGHH_F,INCGHH_F_cat15_NAb,cat,cchs2012_m,[INCDHH],NA,cat,NA::b,15,missing,missing,$/year,else,else,Household income,"Total household income from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,2,6,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",CCHS 2001 missing 97 (don't know) and 98 (refusal),2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,2,6,"Less than $15,000","Less than $15,000",$/year,"[2,4]","Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,3,6,"$15,000-$29,999","$15,000-$29,999",$/year,"[5,6]","$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,4,6,"$30,000-$49,999","$30,000-$49,999",$/year,"[7,8]","$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,5,6,"$50,000-$79,999","$50,000-$79,999",$/year,"[9,11]","$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_6,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_A,INCGPER_A_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,2,6,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,6,6,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,1,6,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,2,6,"Less than $20,000","Less than $20,000",$/year,"[2,5]","Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,3,6,"$20,000-$39,999","$20,000-$39,999",$/year,"[6,7]","$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,4,6,"$40,000-$59,999","$40,000-$59,999",$/year,"[8,9]","$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,5,6,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_6,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,6,6,"$80,000 or more","$80,000 or more",$/year,"[12,14]","$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::a,6,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,6,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_B,INCGPER_B_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,6,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,1,12,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,2,12,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,3,12,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,4,12,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,5,12,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_6,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,6,12,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_7,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,7,12,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_8,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,8,12,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_9,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,9,12,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_10,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,10,12,"$60,000-$79,999","$60,000-$79,999",$/year,"[10,11]","$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_11,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,11,12,"$80,000-$99,999","$80,000-$99,999",$/year,"[12,13]","$80,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_12,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,12,12,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::a,12,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,12,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_C,INCGPER_C_cat12_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,12,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,7500,N/A,"Less than $15,000","Less than $15,000",$/year,2,"Less than $15,000",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,22500,N/A,"$15,000-$29,999","$15,000-$29,999",$/year,3,"$15,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,40000,N/A,"$30,000-$49,999","$30,000-$49,999",$/year,4,"$30,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,60000,N/A,"$50,000-$79,999","$50,000-$79,999",$/year,5,"$50,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p","cchs2001_p::INCAGPER, cchs2003_p::INCCGPER, cchs2005_p::INCEGPER",NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,10000,N/A,"Less than $20,000","Less than $20,000",$/year,2,"Less than $20,000",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,30000,N/A,"$20,000-$39,999","$20,000-$39,999",$/year,3,"$20,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,50000,N/A,"$40,000-$59,999","$40,000-$59,999",$/year,4,"$40,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,70000,N/A,"$60,000-$79,999","$60,000-$79,999",$/year,5,"$60,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,100000,N/A,"$80,000 or more","$80,000 or more",$/year,6,"$80,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::INCDGPER, cchs2017_2018_p::INCDGPER, [INCGPER]",NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,0,N/A,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,2500,N/A,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,7500,N/A,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,12500,N/A,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,17500,N/A,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,25000,N/A,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,35000,N/A,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,45000,N/A,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,55000,N/A,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,65000,N/A,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,75000,N/A,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,85000,N/A,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,95000,N/A,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,120000,N/A,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::a,N/A,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,N/A,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_cont,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,N/A,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,1,14,No income,No income,$/year,1,No income,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,2,14,Less than $5000,Less than $5000,$/year,2,Less than $5000,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,3,14,"$5,000-$9,999","$5,000-$9,999",$/year,3,"$5,000-$9,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,4,14,"$10,000-$14,999","$10,000-$14,999",$/year,4,"$10,000-$14,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,5,14,"$15,000-$19,999","$15,000-$19,999",$/year,5,"$15,000-$19,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_6,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,6,14,"$20,000-$29,999","$20,000-$29,999",$/year,6,"$20,000-$29,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_7,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,7,14,"$30,000-$39,999","$30,000-$39,999",$/year,7,"$30,000-$39,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_8,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,8,14,"$40,000-$49,999","$40,000-$49,999",$/year,8,"$40,000-$49,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_9,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,9,14,"$50,000-$59,999","$50,000-$59,999",$/year,9,"$50,000-$59,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_10,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,10,14,"$60,000-$69,999","$60,000-$69,999",$/year,10,"$60,000-$69,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_11,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,11,14,"$70,000-$79,999","$70,000-$79,999",$/year,11,"$70,000-$79,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_12,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,12,14,"$80,000-$89,999","$80,000-$89,999",$/year,12,"$80,000-$89,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_13,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,13,14,"$90,000-$99,999","$90,000-$99,999",$/year,13,"$90,000-$99,999",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_14,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,14,14,"$100,000 or more","$100,000 or more",$/year,14,"$100,000 or more",Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::a,14,not applicable,not applicable,$/year,96,not applicable,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,14,missing,missing,$/year,"[97,99]",don't know (97); refusal (98); not stated (99),Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INCGPER_D,INCGPER_D_cat14_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[INCDPER],NA,cat,NA::b,14,missing,missing,$/year,else,else,Personal Income,"Total pers. inc. from all sources (D, G)",NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_01,INJ_01_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::INJA_01, cchs2003_p::INJC_01, cchs2005_p::INJE_01, [INJ_01]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Injury,Injured in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_01,INJ_01_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::INJA_01, cchs2003_p::INJC_01, cchs2005_p::INJE_01, [INJ_01]",NA,cat,2,2,No,No,N/A,2,No,Injury,Injured in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_01,INJ_01_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::INJA_01, cchs2003_p::INJC_01, cchs2005_p::INJE_01, [INJ_01]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Injury,Injured in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_01,INJ_01_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::INJA_01, cchs2003_p::INJC_01, cchs2005_p::INJE_01, [INJ_01]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Injury,Injured in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_01,INJ_01_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::INJA_01, cchs2003_p::INJC_01, cchs2005_p::INJE_01, [INJ_01]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Injury,Injured in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::INJAG02, cchs2003_p::INJCG02, cchs2005_p::INJEG02, [INJG02]",NA,cat,1,4,1 injury,1 injury,N/A,1,1 injury,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::INJAG02, cchs2003_p::INJCG02, cchs2005_p::INJEG02, [INJG02]",NA,cat,2,4,2 injuries,2 injuries,N/A,2,2 injuries,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::INJAG02, cchs2003_p::INJCG02, cchs2005_p::INJEG02, [INJG02]",NA,cat,3,4,3-5 injuries,3-5 injuries,N/A,3,3-5 injuries,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::INJAG02, cchs2003_p::INJCG02, cchs2005_p::INJEG02, [INJG02]",NA,cat,4,4,6 or more injuries,6 or more injuries,N/A,4,6 or more injuries,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_1,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_02],NA,cont,1,4,1 injury,1 injury,N/A,1,1 injury,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_2,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_02],NA,cont,2,4,2 injuries,2 injuries,N/A,2,2 injuries,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_3,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_02],NA,cont,3,4,3-5 injuries,3-5 injuries,N/A,"[3,5]",3-5 injuries,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_4,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_02],NA,cont,4,4,6 or more injuries,6 or more injuries,N/A,"[6,30]",6 or more injuries,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::INJAG02, cchs2003_p::INJCG02, cchs2005_p::INJEG02, [INJG02]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::INJAG02, cchs2003_p::INJCG02, cchs2005_p::INJEG02, [INJG02]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::INJAG02, cchs2003_p::INJCG02, cchs2005_p::INJEG02, [INJG02]",NA,cat,NA::b,4,missing,missing,N/A,else,else,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_NAa,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_02],NA,cont,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_02],NA,cont,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_02,INJ_02_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_02],NA,cont,NA::b,4,missing,missing,N/A,else,else,Number of injuries,Number of injuries in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_1,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,1,9,Multiple injuries,Multiple injuries,N/A,1,Multiple injuries,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_2,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,2,9,Broken or fractured bones,Broken or fractured bones,N/A,2,Broken or fractured bones,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_3,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,3,9,"Burn, scald, chemical burn","Burn, scald, chemical burn",N/A,3,"Burn, scald, chemical burn",Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_4,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,4,9,Dislocation,Dislocation,N/A,4,Dislocation,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_5,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,5,9,Sprain or strain,Sprain or strain,N/A,5,Sprain or strain,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_6,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,6,9,"Cut, puncture, animal or human bite","Cut, puncture, animal or human bite",N/A,6,"Cut, puncture, animal or human bite",Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_7,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,7,9,"Scrape, bruise, blister","Scrape, bruise, blister",N/A,7,"Scrape, bruise, blister",Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_8,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,8,9,Concussion or internal injury,Concussion or internal injury,N/A,8,Concussion or internal injury,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_9,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,9,9,Other,Other,N/A,9,Other,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_NAa,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_NAb,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05,INJ_05_cat9_NAb,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG05, cchs2005_p::INJEG05, [INJG05]",NA,cat,NA::b,9,missing,missing,N/A,else,else,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_1,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,1,11,Multiple injuries,Multiple injuries,N/A,1,Multiple injuries,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_2,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,2,11,Broken or fractured bones,Broken or fractured bones,N/A,2,Broken or fractured bones,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_3,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,3,11,"Burn, scald, chemical burn","Burn, scald, chemical burn",N/A,3,"Burn, scald, chemical burn",Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_4,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,4,11,Dislocation,Dislocation,N/A,4,Dislocation,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_5,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,5,11,Sprain or strain,Sprain or strain,N/A,5,Sprain or strain,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_6,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,6,11,"Cut, puncture, animal bite","Cut, puncture, animal bite",N/A,6,"Cut, puncture, animal bite",Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_7,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,7,11,"Scrape, bruise, blister","Scrape, bruise, blister",N/A,7,"Scrape, bruise, blister",Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_8,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,8,11,Concussion or other brain injury,Concussion or other brain injury,N/A,8,Concussion or other brain injury,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_9,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,9,11,Poisoning,Poisoning,N/A,9,Poisoning,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_10,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,10,11,Injury to internal organs,Injury to internal organs,N/A,10,Injury to internal organs,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_11,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,11,11,Other,Other,N/A,11,Other,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_NAa,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,NA::b,11,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_05_A,INJ_05_A_cat11_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_05],NA,cat,NA::b,11,missing,missing,N/A,else,else,Most serious injury - type,What type of injury did you have?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_1,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,1,10,Multiple sites,Multiple sites,N/A,1,Multiple sites,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_2,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,2,10,Eyes/head/neck,Eyes/head/neck,N/A,2,Eyes/head/neck,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_3,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,3,10,Shoulder/upper arm,Shoulder/upper arm,N/A,3,Shoulder/upper arm,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_4,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,4,10,Elbow/lower arm,Elbow/lower arm,N/A,4,Elbow/lower arm,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_5,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,5,10,Wrist/hand,Wrist/hand,N/A,5,Wrist/hand,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_6,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,6,10,Hip or thigh,Hip or thigh,N/A,6,Hip or thigh,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_7,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,7,10,"Knee, lower leg","Knee, lower leg",N/A,7,"Knee, lower leg",Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_8,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,8,10,"Ankle, foot","Ankle, foot",N/A,8,"Ankle, foot",Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_9,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,9,10,Upper or lower back/upper or lower spine,Upper or lower back/upper or lower spine,N/A,9,Upper or lower back/upper or lower spine,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_10,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,10,10,Chest or abdomen or pelvis,Chest or abdomen or pelvis,N/A,10,Chest or abdomen or pelvis,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_NAa,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_NAb,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_NAb,cat,"cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::INJCG06, cchs2005_p::INJEG06, [INJG06]",NA,cat,NA::b,10,missing,missing,N/A,else,else,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_1,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,1,10,Multiple sites,Multiple sites,N/A,1,Multiple sites,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_2,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,2,10,Eyes/head/neck,Eyes/head/neck,N/A,"[2,4]",Eyes/head/neck,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_3,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,3,10,Shoulder/upper arm,Shoulder/upper arm,N/A,5,Shoulder/upper arm,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_4,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,4,10,Elbow/lower arm,Elbow/lower arm,N/A,6,Elbow/lower arm,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_5,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,5,10,Wrist/hand,Wrist/hand,N/A,"[7,8]",Wrist/hand,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_6,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,6,10,Hip or thigh,Hip or thigh,N/A,"[9,10]",Hip or thigh,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_7,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,7,10,"Knee, lower leg","Knee, lower leg",N/A,11,"Knee, lower leg",Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_8,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,8,10,"Ankle, foot","Ankle, foot",N/A,12,"Ankle, foot",Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_9,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,9,10,Upper or lower back/upper or lower spine,Upper or lower back/upper or lower spine,N/A,"[13,14]",Upper or lower back/upper or lower spine,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_10,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,10,10,Chest or abdomen or pelvis,Chest or abdomen or pelvis,N/A,"[15,16]",Chest or abdomen or pelvis,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_NAa,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,NA::a,10,not applicable,not applicable,N/A,96,not applicable,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_06,INJ_06_cat10_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_06],NA,cat,NA::b,10,missing,missing,N/A,else,else,Most serious injury - body part affected,What part of the body was injured?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_1,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,1,8,Home or its surrounding area,Home or its surrounding area,N/A,1,Home or its surrounding area,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_2,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,2,8,Residential/school/college/university/other institutions,Residential/school/college/university/other institutions,N/A,2,Residential/school/college/university/other institutions,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_3,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,3,8,Sports or athletic area/of school/ university,Sports or athletic area/of school/ university,N/A,3,Sports or athletic area/of school/ university,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_4,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,4,8,Other sport or athletics (excluding school),Other sport or athletics (excluding school),N/A,4,Other sport or athletics (excluding school),Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_5,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,5,8,"Street, highway, sidewalk","Street, highway, sidewalk",N/A,5,"Street, highway, sidewalk",Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_6,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,6,8,Commercial,Commercial,N/A,6,Commercial,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_7,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,7,8,Industrial/construction area/farm,Industrial/construction area/farm,N/A,7,Industrial/construction area/farm,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_8,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,8,8,Other,Other,N/A,8,Other,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_NAa,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,NA::a,8,not applicable,not applicable,N/A,96,not applicable,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_NAb,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,NA::b,8,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_NAb,cat,"cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::INJEG08, [INJG08]",NA,cat,NA::b,8,missing,missing,N/A,else,else,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_1,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,1,8,Home or its surrounding area,Home or its surrounding area,N/A,1,Home or its surrounding area,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_2,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,2,8,Residential/school/college/university/other institutions,Residential/school/college/university/other institutions,N/A,"[2,3]",Residential/school/college/university/other institutions,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_2,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,2,8,Residential/school/college/university/other institutions,Residential/school/college/university/other institutions,N/A,6,Residential/school/college/university/other institutions,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_3,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,3,8,Sports or athletic area/of school/ university,Sports or athletic area/of school/ university,N/A,4,Sports or athletic area/of school/ university,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_4,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,4,8,Other sport or athletics (excluding school),Other sport or athletics (excluding school),N/A,5,Other sport or athletics (excluding school),Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_5,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,5,8,"Street, highway, sidewalk","Street, highway, sidewalk",N/A,7,"Street, highway, sidewalk",Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_6,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,6,8,Commercial,Commercial,N/A,8,Commercial,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_7,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,7,8,Industrial/construction area/farm,Industrial/construction area/farm,N/A,"[9,11]",Industrial/construction area/farm,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_8,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,8,8,Other,Other,N/A,12,Other,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_NAa,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,NA::a,8,not applicable,not applicable,N/A,96,not applicable,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,NA::b,8,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +INJ_08,INJ_08_cat8_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[INJ_08],NA,cat,NA::b,8,missing,missing,N/A,else,else,Most serious injury - place of occurrence,Where did the injury happen?,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_1,cat,cchs2001_p,[LBFA_31A],NA,cat,1,9,Management,Management,N/A,1,Management,Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_2,cat,cchs2001_p,[LBFA_31A],NA,cat,2,9,Professional (including accountants),Professional (including accountants),N/A,2,Professional (including accountants),Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_3,cat,cchs2001_p,[LBFA_31A],NA,cat,3,9,"Technologist, Technician or Tech Occ","Technologist, Technician or Tech Occ",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_4,cat,cchs2001_p,[LBFA_31A],NA,cat,4,9,"Administrative, Financial or Clerical","Administrative, Financial or Clerical",N/A,4,"Administrative, Financial or Clerical",Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_5,cat,cchs2001_p,[LBFA_31A],NA,cat,5,9,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_6,cat,cchs2001_p,[LBFA_31A],NA,cat,6,9,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_7,cat,cchs2001_p,[LBFA_31A],NA,cat,7,9,"Farming, Forestry, Fishing, Mining","Farming, Forestry, Fishing, Mining",N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_8,cat,cchs2001_p,[LBFA_31A],NA,cat,8,9,"Processing, Manufacturing, Utilities","Processing, Manufacturing, Utilities",N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_9,cat,cchs2001_p,[LBFA_31A],NA,cat,9,9,Other,Other,N/A,9,Other,Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_NAa,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_NAb,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A,LBFA_31A_cat9_NAb,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::b,9,missing,missing,N/A,else,else,Occupation group,Main job or business,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,3,5,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,NA::b,5,missing,missing,N/A,9,not stated,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],NA,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],NA,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_1,cat,cchs2001_p,[LBFA_31A],NA,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_2,cat,cchs2001_p,[LBFA_31A],NA,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_3,cat,cchs2001_p,[LBFA_31A],NA,cat,3,5,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_4,cat,cchs2001_p,[LBFA_31A],NA,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],NA,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_5,cat,cchs2001_p,[LBFA_31A],NA,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAb,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::b,5,missing,missing,N/A,9,Other,Occupation group,Occupation Group,"""Other"" has no equivalent in LBSGSOC recoded to 'NA::b' missing",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAa,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAb,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAb,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,1,5,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,2,5,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,3,5,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,4,5,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,5,5,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::a,5,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_a,LBFA_31A_a_cat5_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::b,5,missing,missing,N/A,else,else,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,3,6,Sales or Service,Sales or Service,N/A,3,Sales or Service,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,4,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,5,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,NA::a,6,not applicable,not applicable,N/A,6,not applicable,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,NA::b,6,missing,missing,N/A,9,not stated,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::LBFDGOCG, cchs2017_2018_p::LBFDGOCG, [LBSGSOC]",NA,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],NA,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,Management,Occupation group,Occupation Group,"The three categories in CCHS 2001 ""Management, Professional (including accountants), Technologist, Technician or Tech Occ"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],NA,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,2,Professional (including accountants),Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_1,cat,cchs2001_p,[LBFA_31A],NA,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,3,"Technologist, Technician or Tech Occ",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_2,cat,cchs2001_p,[LBFA_31A],NA,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,4,"Administrative, Financial or Clerical",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_3,cat,cchs2001_p,[LBFA_31A],NA,cat,3,6,Sales or Service,Sales or Service,N/A,5,Sales or Service,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_4,cat,cchs2001_p,[LBFA_31A],NA,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,6,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],NA,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,7,"Farming, Forestry, Fishing, Mining",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_5,cat,cchs2001_p,[LBFA_31A],NA,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,8,"Processing, Manufacturing, Utilities",Occupation group,Occupation Group,"The two categories in CCHS 2001, ""Farming, Forestry, Fishing, Mining"" and ""Processing, Manufacturing, Utilities"", were combined into one category ""Farming, Forestry, Fishing, Mining, Processing, Manufacturing, Utilities"", to harmonize with CCHS 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_6,cat,cchs2001_p,[LBFA_31A],NA,cat,6,6,Other,Other,N/A,9,Other,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAa,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAb,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAb,cat,cchs2001_p,[LBFA_31A],NA,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,1,"Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,1,6,"Management, Health, Education, Art, Culture","Management, Health, Education, Art, Culture",N/A,"[3,6]","Management, Health, Education, Art, Culture",Occupation group,Occupation Group,"The five categories in CCHS 2007-2008 and share files, ""Management"", ""Natural and applied science, and religion"", ""Social science, education, government, religion"", ""Culture, recreation, sport"", ""Health"" were combined into one category ""Management, Health, Education, Art, Culture"" to harmonize with CCHS cycles 2009-2018.",2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,2,6,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,3,6,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,4,6,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,5,6,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,"[9,10]",Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::a,6,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_b,LBFA_31A_b_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::b,6,missing,missing,N/A,else,else,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,1,10,Management,Management,N/A,1,Management,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,2,10,"Business, Finance, Admin","Business, Finance, Admin",N/A,2,"Business, Finance, Admin",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,3,10,"Natural and Applied Science, Religious","Natural and Applied Science, Religious",N/A,3,"Natural and Applied Science, Religious",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,4,10,Health,Health,N/A,4,Health,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,5,10,"Social Science, Education, Government, Religion","Social Science, Education, Government, Religion",N/A,5,"Social Science, Education, Government, Religion",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_6,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,6,10,"Culture, Recreation, Sport","Culture, Recreation, Sport",N/A,6,"Culture, Recreation, Sport",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_7,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,7,10,Sales or Service,Sales or Service,N/A,7,Sales or Service,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_8,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,8,10,"Trades, Transport or Equipment Operator","Trades, Transport or Equipment Operator",N/A,8,"Trades, Transport or Equipment Operator",Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_9,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,9,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,9,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_10,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,10,10,Unique to Prim. Ind./Proc./Manu.,Unique to Prim. Ind./Proc./Manu.,N/A,10,Unique to Prim. Ind./Proc./Manu.,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::a,10,not applicable,not applicable,N/A,"[95,96]","could not be coded (95), not applicable (96)",Occupation group,Occupation Group,CCHS 2007-2008 and share files contain 'could not be coded (95)' option,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::b,10,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +LBFA_31A_c,LBFA_31A_c_cat10_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[LBSDOCG],NA,cat,NA::b,10,missing,missing,N/A,else,else,Occupation group,Occupation Group,NA,2.2.0,2025-06-30,active,NA,NA,NA +MED_1P,MED_1P_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_m","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Sleeping pills,"In the past month, did you take sleeping pills",CCHS 2001 does not provide examples of sleeping pills in its literal question,2.2.0,2025-06-30,active,NA,NA,NA +MED_1P,MED_1P_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_m","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",NA,cat,2,2,No,No,N/A,2,No,Sleeping pills,"In the past month, did you take sleeping pills",NA,2.2.0,2025-06-30,active,NA,NA,NA +MED_1P,MED_1P_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_m","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Sleeping pills,"In the past month, did you take sleeping pills",NA,2.2.0,2025-06-30,active,NA,NA,NA +MED_1P,MED_1P_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_m","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleeping pills,"In the past month, did you take sleeping pills",NA,2.2.0,2025-06-30,active,NA,NA,NA +MED_1P,MED_1P_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2011_2012_p, cchs2012_p, cchs2012_m","cchs2001_p::DRGA_1P, cchs2003_p::MEDC_1P, cchs2005_p::MEDE_1P, [MED_1P]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Sleeping pills,"In the past month, did you take sleeping pills",NA,2.2.0,2025-06-30,active,NA,NA,NA +number_conditions,N/A,cat,"cchs2001_p, cchs2001_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,Func::multiple_conditions_fun1,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"Derived from CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051",2.2.0,2025-06-30,active,,,No typeStart +number_conditions,N/A,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,Func::multiple_conditions_fun2,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"Derived from CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051",2.2.0,2025-06-30,active,,,No typeStart +number_conditions,N/A,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051]",,N/A,Func::multiple_conditions_fun3,N/A,N/A,N/A,N/A,N/A,N/A,Number of conditions,Number of chronic conditions,"Derived from CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051 (bowel disorder not included)",2.2.0,2025-06-30,active,,,No typeStart +number_conditions,number_conditions_cat6_0,cat,"cchs2001_p, cchs2001_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,0,6,0,0 conditions,N/A,0,0,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_0,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,0,6,0,0 conditions,N/A,0,0,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_0,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051]",,N/A,0,6,0,0 conditions,N/A,0,0,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_1,cat,"cchs2001_p, cchs2001_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,1,6,1,1 condition,N/A,1,1,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,1,6,1,1 condition,N/A,1,1,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051]",,N/A,1,6,1,1 condition,N/A,1,1,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_2,cat,"cchs2001_p, cchs2001_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,2,6,2,2 conditions,N/A,2,2,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,2,6,2,2 conditions,N/A,2,2,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051]",,N/A,2,6,2,2 conditions,N/A,2,2,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_3,cat,"cchs2001_p, cchs2001_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,3,6,3,3 conditions,N/A,3,3,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,3,6,3,3 conditions,N/A,3,3,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051]",,N/A,3,6,3,3 conditions,N/A,3,3,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_4,cat,"cchs2001_p, cchs2001_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,4,6,4,4 conditions,N/A,4,4,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,4,6,4,4 conditions,N/A,4,4,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051]",,N/A,4,6,4,4 conditions,N/A,4,4,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_5+,cat,"cchs2001_p, cchs2001_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051]",,N/A,5,6,5+,5+ conditions,N/A,5,5+,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_5+,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]",,N/A,5,6,5+,5+ conditions,N/A,5,5+,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +number_conditions,number_conditions_cat6_5+,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_280, resp_condition_der, CCC_051]",,N/A,5,6,5+,5+ conditions,N/A,5,5+,Number of conditions,Number of chronic conditions,,2.2.0,2025-06-30,active,,, +PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_045],NA,cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,160]",No. hours sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_045],NA,cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_045],NA,cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_045,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_045],NA,cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_050],NA,cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,1680]",No. minutes sweat,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_050],NA,cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_050],NA,cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_050,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_050],NA,cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder exercises (18+ years old),Time spent - sweat/breathe hard exercises in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_075],NA,cat,copy,N/A,No. hours sweat,No. hours sweat,hours/week,"[0,168]",No. hours sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes.",2.1.0,2025-06-30,active,NA,NA,NA +PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_075],NA,cat,NA::a,N/A,not applicable,not applicable,hours/week,996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_075],NA,cat,NA::b,N/A,missing,missing,hours/week,"[997,999]",don't know (997); refusal (998); not stated (999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_075,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_075],NA,cat,NA::b,N/A,missing,missing,hours/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_080],NA,cat,copy,N/A,No. minutes sweat,No. minutes sweat,minutes/week,"[0,4880]",No. minutes sweat,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),"Examples include carrying heavy loads, shoveling, and household chores such as vacuuming or washing windows. Only include activities that lasted aminimum of 10 continuous minutes.",2.1.0,2025-06-30,active,NA,NA,NA +PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_080],NA,cat,NA::a,N/A,not applicable,not applicable,minutes/week,9996,not applicable,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_080],NA,cat,NA::b,N/A,missing,missing,minutes/week,"[9997,9999]",don't know (9997); refusal (9998); not stated (9999),Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAA_080,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAA_080],NA,cat,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe harder activities (18+ years old),Time spent - sweat/breathe hard activities in a week (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVDYS],NA,cont,copy,N/A,No. active days - 7d,No. active days - 7d,days,"[0,7]",No. active days - 7d,Active days (18+ years old),Number of active days (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVDYS],NA,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (18+ years old),Number of active days (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVDYS],NA,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (18+ years old),Number of active days (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVDYS],NA,cont,NA::b,N/A,missing,missing,days,else,else,Active days (18+ years old),Number of active days (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVTRV],NA,cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,10080]",No. minutes of active transportation,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVTRV],NA,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVTRV],NA,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAADVTRV,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVTRV],NA,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (18+ years old),Time spent - active transportation in a week (18+ years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVVIG],NA,cont,copy,N/A,No. minutes - vigorous physical activity - 7d,No. minutes - vigorous physical activity - 7d,minutes/week,"[0,6000]",No. minutes - vigorous physical activity - 7d,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVVIG],NA,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVVIG],NA,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVVIG],NA,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activity (18+ years old),Time spent - vigorous activity (18+ years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAADVWHO,PAADVWHO_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVWHO],NA,cat,1,4,Level 1 - Most active,Level 1 - Most active,N/A,1,Level 1,Physical activity - WHO,Physical activity classification based on WHO guidelines,New variable,3.0.0,2026-01-18,active,L0-L4 analysis,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PAADVWHO,PAADVWHO_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVWHO],NA,cat,2,4,Level 2,Level 2,N/A,2,Level 2,Physical activity - WHO,Physical activity classification based on WHO guidelines,New variable,3.0.0,2026-01-18,active,L0-L4 analysis,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PAADVWHO,PAADVWHO_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVWHO],NA,cat,3,4,Level 3,Level 3,N/A,3,Level 3,Physical activity - WHO,Physical activity classification based on WHO guidelines,New variable,3.0.0,2026-01-18,active,L0-L4 analysis,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PAADVWHO,PAADVWHO_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVWHO],NA,cat,4,4,Level 4 - Least active,Level 4 - Least active,N/A,4,Level 4,Physical activity - WHO,Physical activity classification based on WHO guidelines,New variable,3.0.0,2026-01-18,active,L0-L4 analysis,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PAADVWHO,PAADVWHO_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVWHO],NA,cat,NA::a,4,not applicable,not applicable,N/A,6,Valid skip,Physical activity - WHO,Physical activity classification based on WHO guidelines,New variable,3.0.0,2026-01-18,active,L0-L4 analysis,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PAADVWHO,PAADVWHO_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVWHO],NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",Don't know (7); Refusal (8); Not stated (9),Physical activity - WHO,Physical activity classification based on WHO guidelines,New variable,3.0.0,2026-01-18,active,L0-L4 analysis,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PAADVWHO,PAADVWHO_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAADVWHO],NA,cat,NA::b,4,missing,missing,N/A,else,else,Physical activity - WHO,Physical activity classification based on WHO guidelines,New variable,3.0.0,2026-01-18,active,L0-L4 analysis,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PAC_4A,PAC_4A_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,1,6,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A,PAC_4A_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,NA::b,6,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,0,N/A,None,None,hours/week,1,None,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4A_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4A, cchs2003_p::PACC_4A, cchs2005_p::PACE_4A, cchs2001_m::PACA_4A, cchs2003_m::PACC_4A, cchs2005_m::PACE_4A",NA,cat,NA::b,N/A,missing,missing,hours/week,else,else,Time walk work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend walking to work or to school or while doing errands",NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_4B,PAC_4B_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,1,6,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,2,6,Less than one hour,Less than one hour,hours/week,2,Less than one hour,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,3,6,1-5 hours,1-5 hours,hours/week,3,1-5 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,4,6,6-10 hours,6-10 hours,hours/week,4,6-10 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,5,6,11-20 hours,11-20 hours,hours/week,5,11-20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,6,6,More than 20 hours,More than 20 hours,hours/week,6,More than 20 hours,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,NA::a,6,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,NA::b,6,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B,PAC_4B_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,NA::b,6,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,3.0.0,2026-01-18,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,0,N/A,None,None,hours/week,1,None,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,0.5,N/A,converted hours (>1hr),converted hours (>1hr),hours/week,2,converted hours (>1hr),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,3,N/A,converted hours (1-5 hrs),converted hours (1-5 hrs),hours/week,3,converted hours (1-5 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,8,N/A,converted hours (6-10 hrs),converted hours (6-10 hrs),hours/week,4,converted hours (6-10 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,15.5,N/A,converted hours (11-20 hrs),converted hours (11-20 hrs),hours/week,5,converted hours (11-20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,21,N/A,converted hours (>20 hrs),converted hours (>20 hrs),hours/week,6,converted hours (>20 hrs),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,NA::a,N/A,not applicable,not applicable,hours/week,96,not applicable,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,NA::b,N/A,missing,missing,hours/week,"[97,99]",don't know (97); refusal (98); not stated (99),Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_4B_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2001_m, cchs2003_m, cchs2005_m","cchs2001_p::PACA_4B, cchs2003_p::PACC_4B, cchs2005_p::PACE_4B, cchs2001_m::PACA_4B, cchs2003_m::PACC_4B, cchs2005_m::PACE_4B",NA,cat,NA::b,N/A,missing,missing,hours/week,else,else,Time bike work/school in week,"In a typical week in the past 3 months, how many hours did you usually spend biking to work or to school or while doing errands",Fixed label: walking -> biking,2.2.0,2025-06-30,active,Label fix,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes","CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes" +PAC_7,PAC_7_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7],NA,cat,1,3,Yes,Yes,N/A,1,Yes,Walk to work/school,Walked to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7,PAC_7_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7],NA,cat,2,3,No,No,N/A,2,No,Walk to work/school,Walked to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7,PAC_7_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7],NA,cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Walk to work/school,Walked to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7,PAC_7_cat3_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7],NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Walk to work/school,Walked to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7,PAC_7_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7],NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Walk to work/school,Walked to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7,PAC_7_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7],NA,cat,NA::b,3,missing,missing,N/A,else,else,Walk to work/school,Walked to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7A],NA,cont,copy,N/A,No. of times/3 mo./walking work/school,No. of times walking work/school,N/A,"[1,270]",No. of times walking work/school,Number times walk work/school,No. of times/3 mo./walking work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7A],NA,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,Number times walk work/school,No. of times/3 mo./walking work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7A],NA,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),Number times walk work/school,No. of times/3 mo./walking work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7A],NA,cont,NA::b,N/A,missing,missing,N/A,else,else,Number times walk work/school,No. of times/3 mo./walking work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B,PAC_7B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7B],NA,cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B,PAC_7B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7B],NA,cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B,PAC_7B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7B],NA,cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B,PAC_7B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7B],NA,cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B,PAC_7B_cat4_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7B],NA,cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B,PAC_7B_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7B],NA,cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B,PAC_7B_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_7B],NA,cat,NA::b,4,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_7B],NA,cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_7B],NA,cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_7B],NA,cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_7B],NA,cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_7B],NA,cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_7B],NA,cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_7B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_7B],NA,cat,NA::b,N/A,missing,missing,mins,else,else,Time walk work/school,Time spent - walking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8,PAC_8_cat3_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8],NA,cat,1,3,Yes,Yes,N/A,1,Yes,Bike to work/school,Bicycled to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8,PAC_8_cat3_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8],NA,cat,2,3,No,No,N/A,2,No,Bike to work/school,Bicycled to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8,PAC_8_cat3_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8],NA,cat,3,3,No work/no school,No work/no school,N/A,3,No work/no school,Bike to work/school,Bicycled to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8,PAC_8_cat3_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8],NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Bike to work/school,Bicycled to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8,PAC_8_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8],NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Bike to work/school,Bicycled to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8,PAC_8_cat3_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8],NA,cat,NA::b,3,missing,missing,N/A,else,else,Bike to work/school,Bicycled to work or school / last 3 mo.,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8A],NA,cont,copy,N/A,No. of times/3 mo./biking work/school,No. of times biking work/school,times/3 mos.,"[1,270]",No. of times biking work/school,Number times bike work/school,No. of times/3 mo./bicycl. work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8A],NA,cont,NA::a,N/A,not applicable,not applicable,times/3 mos.,996,not applicable,Number times bike work/school,No. of times/3 mo./bicycl. work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8A],NA,cont,NA::b,N/A,missing,missing,times/3 mos.,"[997,999]",don't know (997); refusal (998); not stated (999),Number times bike work/school,No. of times/3 mo./bicycl. work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8A,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8A],NA,cont,NA::b,N/A,missing,missing,times/3 mos.,else,else,Number times bike work/school,No. of times/3 mo./bicycl. work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B,PAC_8B_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8B],NA,cat,1,4,1 to 15 minutes,1 to 15 minutes,mins,1,1 to 15 minutes,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B,PAC_8B_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8B],NA,cat,2,4,16 to 30 minutes,16 to 30 minutes,mins,2,16 to 30 minutes,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B,PAC_8B_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8B],NA,cat,3,4,31 to 60 minutes,31 to 60 minutes,mins,3,31 to 60 minutes,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B,PAC_8B_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8B],NA,cat,4,4,More than 1 hour,More than 1 hour,mins,4,More than 1 hour,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B,PAC_8B_cat4_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8B],NA,cat,NA::a,4,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B,PAC_8B_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8B],NA,cat,NA::b,4,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B,PAC_8B_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[PAC_8B],NA,cat,NA::b,4,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_8B],NA,cat,7,N/A,converted minutes (1-15 min),converted minutes (1-15 min),mins,1,converted minutes (1-15 min),Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_8B],NA,cat,23,N/A,converted minutes (16-30 min),converted minutes (16-30 min),mins,2,converted minutes (16-30 min),Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_8B],NA,cat,45,N/A,converted minutes (31-60 min),converted minutes (31-60 min),mins,3,converted minutes (31-60 min),Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_8B],NA,cat,70,N/A,converted minutes (>60 min),converted minutes (>60 min),mins,4,converted minutes (>60 min),Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_8B],NA,cat,NA::a,N/A,not applicable,not applicable,mins,6,not applicable,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_8B],NA,cat,NA::b,N/A,missing,missing,mins,"[7,9]",don't know (7); refusal (8); not stated (9),Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PAC_8B_cont,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[PAC_8B],NA,cat,NA::b,N/A,missing,missing,mins,else,else,Time bike work/school,Time spent - biking to go work/school,NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,copy,N/A,Physical Activity,Average daily leisure time energy expenditure in METs,METS,"[0,43.5]",Daily energy expenditure - (D),Physical activity,Daily energy expenditure - (D),Refer to energy_exp for PACDEE all cycles,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::a,N/A,not applicable,not applicable,METS,99.6,Not applicable,Physical activity,Daily energy expenditure - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::b,N/A,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Physical activity,Daily energy expenditure - (D),Don't know (99.7) and refusal (99.8) not included in 2001 CCHS,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::b,N/A,missing,missing,METS,else,else,Physical activity,Daily energy expenditure - (D),NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE_cat3,PACDEE_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,1,3,Inactive,Inactive - leisure activity,METS,"[0,1.5)",Inactive - leisure activity,Categorical physical activity,Categorical daily energy expenditure,NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE_cat3,PACDEE_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,2,3,Moderately active,Moderately active - leisure activity,METS,"[1.5,3)",Moderately active - leisure activity,Categorical physical activity,Categorical daily energy expenditure,NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE_cat3,PACDEE_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,3,3,Active,Active - leisure activity,METS,"[3,43.5]",Active - leisure activity,Categorical physical activity,Categorical daily energy expenditure,NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE_cat3,PACDEE_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::a,3,not applicable,not applicable,METS,99.6,Not applicable,Categorical physical activity,Categorical daily energy expenditure,NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE_cat3,PACDEE_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::b,3,missing,missing,METS,"[99.7,99.9]",don't know (99.7); refusal (99.8); not stated (99.9),Categorical physical activity,Categorical daily energy expenditure,NA,2.2.0,2025-06-30,active,NA,NA,NA +PACDEE_cat3,PACDEE_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, cchs2001_m::PACADEE, cchs2003_m::PACCDEE, cchs2005_m::PACEDEE, [PACDEE]",NA,cont,NA::b,3,missing,missing,METS,else,else,Categorical physical activity,Categorical daily energy expenditure,NA,2.2.0,2025-06-30,active,NA,NA,NA +PACFLEI,PACFLEI_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACAFLEI, cchs2003_p::PACCFLEI, cchs2005_p::PACEFLEI, cchs2001_m::PACAFLEI, cchs2003_m::PACCFLEI, cchs2005_m::PACEFLEI, [PACFLEI]",NA,cat,1,2,Yes,Yes,Leisure physical activity,1,Yes,Leisure phys. activity,Leisure physical activity,Fixed dummyVariable naming,3.0.0,2026-01-18,active,cat_cat6 -> cat2,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PACFLEI,PACFLEI_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACAFLEI, cchs2003_p::PACCFLEI, cchs2005_p::PACEFLEI, cchs2001_m::PACAFLEI, cchs2003_m::PACCFLEI, cchs2005_m::PACEFLEI, [PACFLEI]",NA,cat,2,2,No,No,Leisure physical activity,2,No,Leisure phys. activity,Leisure physical activity,Fixed dummyVariable naming,3.0.0,2026-01-18,active,cat_cat6 -> cat2,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PACFLEI,PACFLEI_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACAFLEI, cchs2003_p::PACCFLEI, cchs2005_p::PACEFLEI, cchs2001_m::PACAFLEI, cchs2003_m::PACCFLEI, cchs2005_m::PACEFLEI, [PACFLEI]",NA,cat,NA::a,2,not applicable,not applicable,Leisure physical activity,6,not applicable,Leisure phys. activity,Leisure physical activity,Fixed dummyVariable naming,3.0.0,2026-01-18,active,cat_cat6 -> cat2,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PACFLEI,PACFLEI_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACAFLEI, cchs2003_p::PACCFLEI, cchs2005_p::PACEFLEI, cchs2001_m::PACAFLEI, cchs2003_m::PACCFLEI, cchs2005_m::PACEFLEI, [PACFLEI]",NA,cat,NA::b,2,missing,missing,Leisure physical activity,"[7,9]",don't know (7); refusal (8); not stated (9),Leisure phys. activity,Leisure physical activity,Fixed dummyVariable naming,3.0.0,2026-01-18,active,cat_cat6 -> cat2,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +PACFLEI,PACFLEI_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_p::PACAFLEI, cchs2003_p::PACCFLEI, cchs2005_p::PACEFLEI, cchs2001_m::PACAFLEI, cchs2003_m::PACCFLEI, cchs2005_m::PACEFLEI, [PACFLEI]",NA,cat,NA::b,2,missing,missing,Leisure physical activity,else,else,Leisure phys. activity,Leisure physical activity,Fixed dummyVariable naming,3.0.0,2026-01-18,active,cat_cat6 -> cat2,"CEP-003: PA harmonization - 2019-2020 extension, PAADVWHO, label fixes",NA +pack_years_cat,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,Func::calculate_pack_years_categorical,5,N/A,N/A,N/A,N/A,Pack-years category,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),DEFERRED: Category boundaries pending epidemiological review.,3.0.0-alpha,2026-01-04,pending_review,"Category cut-points (0, <10, 10-20, 20-30, 30+) require validation against epidemiological literature before activation. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_cat,pack_years_cat_cat5_0,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,0,5,Never smoker,Never smoker (0 pack-years),,0,Never smoker,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),pack_years_der == 0,3.0.0-alpha,2026-01-04,pending_review,"Clearer labels. 5-category. Status=pending: cut-points need epi review. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_cat,pack_years_cat_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,1,5,Light (<10),Light smoker (less than 10 pack-years),,"[0.001,9.999]",Light,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),pack_years_der > 0 & pack_years_der < 10,3.0.0-alpha,2026-01-04,pending_review,"Clearer labels. 5-category. Status=pending: cut-points need epi review. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_cat,pack_years_cat_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,2,5,Moderate (10-20),Moderate smoker (10 to less than 20 pack-years),,"[10,19.999]",Moderate,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),pack_years_der >= 10 & pack_years_der < 20,3.0.0-alpha,2026-01-04,pending_review,"Clearer labels. 5-category. Status=pending: cut-points need epi review. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_cat,pack_years_cat_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,3,5,Heavy (20-30),Heavy smoker (20 to less than 30 pack-years),,"[20,29.999]",Heavy,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),pack_years_der >= 20 & pack_years_der < 30,3.0.0-alpha,2026-01-04,pending_review,"Clearer labels. 5-category. Status=pending: cut-points need epi review. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_cat,pack_years_cat_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,4,5,Very heavy (30+),Very heavy smoker (30 or more pack-years),,"[30,165]",Very heavy,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),pack_years_der >= 30 & pack_years_der <= 165,3.0.0-alpha,2026-01-04,pending_review,"Clearer labels. 5-category. Status=pending: cut-points need epi review. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_cat,pack_years_cat_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,NA::a,5,not applicable,not applicable,,N/A,not applicable,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),pack_years_der is NA::a,3.0.0-alpha,2026-01-04,pending_review,"Clearer labels. 5-category. Status=pending: cut-points need epi review. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_cat,pack_years_cat_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",DerivedVar::[pack_years_der],,N/A,NA::b,5,missing,missing,,N/A,missing,Pack-years (5-cat),Cumulative smoking exposure in pack-years (5-category),pack_years_der is NA::b,3.0.0-alpha,2026-01-04,pending_review,"Clearer labels. 5-category. Status=pending: cut-points need epi review. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMKDSTY_original, DHHGAGE_cont, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_05B, SMK_05C, age_first_cigarette, smoked_100_lifetime]",,N/A,Func::calculate_pack_years,N/A,N/A,N/A,pack-years,"[0,165]",Pack-years (PUMF),Pack-years,Cumulative smoking exposure in pack-years (derived),PUMF wrapper using midpoint-derived age variables. Valid output range: 0-165 pack-years (evidence-based from ATBC and Pain & Health studies).,3.0.0-alpha,2026-01-04,active,"Clearer labels. Added Master 2001-2023, PUMF 2001-2018. Evidence-based range [0,165]. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMKDSTY_original, DHHGAGE_cont, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_05B, SMK_05C, age_first_cigarette, smoked_100_lifetime]",,N/A,NA::a,N/A,not applicable,not applicable,pack-years,N/A,not applicable,Pack-years,Cumulative smoking exposure in pack-years (derived),Valid skip - never smoker (SMKDSTY_original=6),3.0.0-alpha,2026-01-04,active,"Clearer labels. Added Master 2001-2023, PUMF 2001-2018. Evidence-based range [0,165]. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMKDSTY_original, DHHGAGE_cont, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_05B, SMK_05C, age_first_cigarette, smoked_100_lifetime]",,N/A,NA::b,N/A,missing,missing,pack-years,N/A,missing,Pack-years,Cumulative smoking exposure in pack-years (derived),"Missing required input(s): status, age, initiation, or intensity",3.0.0-alpha,2026-01-04,active,"Clearer labels. Added Master 2001-2023, PUMF 2001-2018. Evidence-based range [0,165]. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +pack_years_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMKDSTY_original, DHH_AGE, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_05B, SMK_05C, age_first_cigarette, smoked_100_lifetime]",,N/A,Func::calculate_pack_years,N/A,N/A,N/A,pack-years,"[0,165]",Pack-years (Master),Pack-years,Cumulative smoking exposure in pack-years (derived),Master wrapper using true continuous age variables. Valid output range: 0-165 pack-years (evidence-based from ATBC and Pain & Health studies).,3.0.0-alpha,2026-01-04,active,"Clearer labels. Added Master 2001-2023, PUMF 2001-2018. Evidence-based range [0,165].",, +pack_years_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMKDSTY_original, DHH_AGE, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_05B, SMK_05C, age_first_cigarette, smoked_100_lifetime]",,N/A,NA::a,N/A,not applicable,not applicable,pack-years,N/A,not applicable,Pack-years,Cumulative smoking exposure in pack-years (derived),Valid skip - never smoker (SMKDSTY_original=6),3.0.0-alpha,2026-01-04,active,"Clearer labels. Added Master 2001-2023, PUMF 2001-2018. Evidence-based range [0,165].",, +pack_years_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMKDSTY_original, DHH_AGE, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_05B, SMK_05C, age_first_cigarette, smoked_100_lifetime]",,N/A,NA::b,N/A,missing,missing,pack-years,N/A,missing,Pack-years,Cumulative smoking exposure in pack-years (derived),"Missing required input(s): status, age, initiation, or intensity",3.0.0-alpha,2026-01-04,active,"Clearer labels. Added Master 2001-2023, PUMF 2001-2018. Evidence-based range [0,165].",, +PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVADL],NA,cont,copy,N/A,No. minutes of leisure activities,No. minutes of leisure activities,minutes/week,"[0,4140]",No. minutes of leisure activities,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVADL],NA,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVADL],NA,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVADL,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVADL],NA,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Leisure activities (12-17 years old),Time spent - leisure activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVDYS],NA,cont,copy,N/A,No. physically active days,No. physically active days,days,"[0,7]",No. physically active days,Active days (12-17 years old),Number of active days (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVDYS],NA,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Active days (12-17 years old),Number of active days (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVDYS],NA,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Active days (12-17 years old),Number of active days (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVDYS,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVDYS],NA,cont,NA::b,N/A,missing,missing,days,else,else,Active days (12-17 years old),Number of active days (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTOA],NA,cont,copy,N/A,No. minutes of other activities,No. minutes of other activities,minutes/week,"[0,4980]",No. minutes of other activities,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTOA],NA,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTOA],NA,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVTOA,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTOA],NA,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Sweat/breathe hard activities (12-17 years old),Time spent - sweat/breathe hard activities in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTTR],NA,cont,copy,N/A,No. minutes of active transportation,No. minutes of active transportation,minutes/week,"[0,6300]",No. minutes of active transportation,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTTR],NA,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTTR],NA,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAYDVTTR,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVTTR],NA,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Active transportation (12-17 years old),Time spent - active transportation in a week (12-17 years old),NA,3.0.0,2026-01-18,active,NA,NA,NA +PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVVIG],NA,cont,copy,N/A,No. minutes of vigorous activities,No. minutes of vigorous activities,minutes/week,"[0,2880]",No. minutes of vigorous activities,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVVIG],NA,cont,NA::a,N/A,not applicable,not applicable,minutes/week,99996,not applicable,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVVIG],NA,cont,NA::b,N/A,missing,missing,minutes/week,"[99997,99999]",don't know (99997); refusal (99998); not stated (99999),Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +PAYDVVIG,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m",[PAYDVVIG],NA,cont,NA::b,N/A,missing,missing,minutes/week,else,else,Vigorous activities (12-17 years old),Time spent - vigorous activity in a week (12-17 years old),NA,2.1.0,2025-06-30,active,NA,NA,NA +pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES_cont]",,N/A,Func::calculate_pct_time,N/A,N/A,N/A,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,"Percent time in Canada derived from Age (DHHGAGE_cont), immigration status (SDCGCBG), and time in Canada (SDCGRES_cont, continuous midpoint from SDCGRES). Valid range: 0-100.",2.2.0,2025-06-30,active,,, +pct_time_der,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES_cont]",,N/A,NA::b,N/A,missing,missing,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[DHH_AGE, SDCGCB, SDCDRES]",,N/A,Func::calculate_pct_time,N/A,N/A,N/A,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,"Percent time in Canada derived from continuous Age (DHH_AGE), immigration status (SDCGCB), and continuous years in Canada (SDCDRES) from master files. Valid range: 0-100.",2.2.0,2025-06-30,active,,, +pct_time_der,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[DHH_AGE, SDCGCB, SDCDRES]",,N/A,NA::b,N/A,missing,missing,%,N/A,N/A,Percent time in Canada,Percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,Func::categorize_pct_time,N/A,N/A,N/A,%,N/A,N/A,Percent time in Canada,Categorical percentage of time in Canada,Categorical percent time in Canada derived from pct_time_der,2.2.0,2025-06-30,active,,,No typeStart +pct_time_der_cat10,pct_time_der_cat10_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,1,10,10%,10% time in Canada,%,1,10% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,2,10,20%,20% time in Canada,%,2,20% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,3,10,30%,30% time in Canada,%,3,30% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,4,10,40%,40% time in Canada,%,4,40% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,5,10,50%,50% time in Canada,%,5,50% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,6,10,60%,60% time in Canada,%,6,60% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,7,10,70%,70% time in Canada,%,7,70% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,8,10,80%,80% time in Canada,%,8,80% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,9,10,90%,90% time in Canada,%,9,90% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_10,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,10,10,100%,100% time in Canada,%,10,100% time in Canada,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,NA::a,10,not applicable,not applicable,%,NA::a,not applicable,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +pct_time_der_cat10,pct_time_der_cat10_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[pct_time_der],,N/A,NA::b,10,missing,missing,%,NA::b,missing,Percent time in Canada,Categorical percentage of time in Canada,,2.2.0,2025-06-30,active,,, +quit_pathway,N/A,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate]",,N/A,Func::assess_quit_pathway,3,N/A,N/A,N/A,N/A,Quit pathway,Quit pathway,"Smoking cessation pathway (direct, gradual, or former occasional)",3.0.0,3.0.0-alpha,2026-01-04,active,"NEW: Quit pathway derived variable (direct/gradual/former occasional). Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +quit_pathway,quit_pathway_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate]",,N/A,1,3,Direct quit,Quit completely when stopped daily,,1,Direct quit,Quit pathway,"Smoking cessation pathway (direct, gradual, or former occasional)",Former daily who quit when stopped daily,3.0.0-alpha,2026-01-04,active,"NEW: Quit pathway derived variable (direct/gradual/former occasional). Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +quit_pathway,quit_pathway_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate]",,N/A,2,3,Gradual quit,Continued occasional then quit completely,,2,Gradual quit,Quit pathway,"Smoking cessation pathway (direct, gradual, or former occasional)",Former daily who reduced to occasional then quit,3.0.0-alpha,2026-01-04,active,"NEW: Quit pathway derived variable (direct/gradual/former occasional). Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +quit_pathway,quit_pathway_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate]",,N/A,3,3,Former occasional,Former occasional smoker (never daily),,3,Former occasional,Quit pathway,"Smoking cessation pathway (direct, gradual, or former occasional)",Former occasional who never smoked daily,3.0.0-alpha,2026-01-04,active,"NEW: Quit pathway derived variable (direct/gradual/former occasional). Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +quit_pathway,quit_pathway_cat3_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate]",,N/A,NA::a,3,not applicable,not applicable,,N/A,not applicable,Quit pathway,"Smoking cessation pathway (direct, gradual, or former occasional)",Current smoker or never smoker,3.0.0-alpha,2026-01-04,active,"NEW: Quit pathway derived variable (direct/gradual/former occasional). Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +quit_pathway,quit_pathway_cat3_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate]",,N/A,NA::b,3,missing,missing,,N/A,missing,Quit pathway,"Smoking cessation pathway (direct, gradual, or former occasional)",Missing status or gate information,3.0.0-alpha,2026-01-04,active,"NEW: Quit pathway derived variable (direct/gradual/former occasional). Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +RAC_1,RAC_1_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",NA,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",NA,cat,2,3,Often,Often,N/A,2,Often,Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",NA,cat,3,3,Never,Never,N/A,3,Never,Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_NAa,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_NAb,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_NAb,cat,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_1, cchs2005_p::RACE_1, [RAC_1]",NA,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_NAa,cat,cchs2003_p,cchs2003_p::RACC_1,NA,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Difficulty activities,Has difficulty with activities,CCHS 2003 codes N/A as 96 and missing as 97-99,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_NAb,cat,cchs2003_p,cchs2003_p::RACC_1,NA,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_1,RAC_1_cat3_NAb,cat,cchs2003_p,cchs2003_p::RACC_1,NA,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty activities,Has difficulty with activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2A,RAC_2A_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",NA,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at home,Reduction - activities at home,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2A,RAC_2A_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",NA,cat,2,3,Often,Often,N/A,2,Often,Reduction activities at home,Reduction - activities at home,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2A,RAC_2A_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",NA,cat,3,3,Never,Never,N/A,3,Never,Reduction activities at home,Reduction - activities at home,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2A,RAC_2A_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction activities at home,Reduction - activities at home,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2A,RAC_2A_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at home,Reduction - activities at home,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2A,RAC_2A_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",NA,cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at home,Reduction - activities at home,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B,RAC_2B_cat3_1,cat,cchs2001_p,cchs2001_p::RACA_2B,NA,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school or work,Long-term cond. reduces act. - school or work,"In CCHS 2001, work and school reduction were combined into one variable. From CCHS 2003 onwards they were split into 2 variables (RAC_2B1 & RAC_2B2)",2.1.0,2025-06-30,active,NA,NA,NA +RAC_2B,RAC_2B_cat3_2,cat,cchs2001_p,cchs2001_p::RACA_2B,NA,cat,2,3,Often,Often,N/A,2,Often,Reduction activities at school or work,Long-term cond. reduces act. - school or work,NA,2.1.0,2025-06-30,active,NA,NA,NA +RAC_2B,RAC_2B_cat3_3,cat,cchs2001_p,cchs2001_p::RACA_2B,NA,cat,3,3,Never,Never,N/A,3,Never,Reduction activities at school or work,Long-term cond. reduces act. - school or work,NA,2.1.0,2025-06-30,active,NA,NA,NA +RAC_2B,RAC_2B_cat3_NAa,cat,cchs2001_p,cchs2001_p::RACA_2B,NA,cat,NA::a,3,not applicable,not applicable,N/A,4,not applicable,Reduction activities at school or work,Long-term cond. reduces act. - school or work,NA,2.1.0,2025-06-30,active,NA,NA,NA +RAC_2B,RAC_2B_cat3_NAb,cat,cchs2001_p,cchs2001_p::RACA_2B,NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school or work,Long-term cond. reduces act. - school or work,NA,2.1.0,2025-06-30,active,NA,NA,NA +RAC_2B,RAC_2B_cat3_NAb,cat,cchs2001_p,cchs2001_p::RACA_2B,NA,cat,NA::b,3,missing,missing,N/A,else,else,Reduction activities at school or work,Long-term cond. reduces act. - school or work,NA,2.1.0,2025-06-30,active,NA,NA,NA +RAC_2B1,RAC_2B1_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",NA,cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at school,Long-term cond. reduces act. - school,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B1,RAC_2B1_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",NA,cat,2,4,Often,Often,N/A,2,Often,Reduction activities at school,Long-term cond. reduces act. - school,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B1,RAC_2B1_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",NA,cat,3,4,Never,Never,N/A,3,Never,Reduction activities at school,Long-term cond. reduces act. - school,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B1,RAC_2B1_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",NA,cat,4,4,Not attend school,Not attend school,N/A,4,Not attend school,Reduction activities at school,Long-term cond. reduces act. - school,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B1,RAC_2B1_cat4_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at school,Long-term cond. reduces act. - school,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B1,RAC_2B1_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at school,Long-term cond. reduces act. - school,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B1,RAC_2B1_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B1, cchs2005_p::RACE_2B1, [RAC_2B1]",NA,cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at school,Long-term cond. reduces act. - school,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B2,RAC_2B2_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",NA,cat,1,4,Sometimes,Sometimes,N/A,1,Sometimes,Reduction activities at work,Reduction kind/amount act. - at work,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B2,RAC_2B2_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",NA,cat,2,4,Often,Often,N/A,2,Often,Reduction activities at work,Reduction kind/amount act. - at work,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B2,RAC_2B2_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",NA,cat,3,4,Never,Never,N/A,3,Never,Reduction activities at work,Reduction kind/amount act. - at work,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B2,RAC_2B2_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",NA,cat,4,4,Has no job,Has no job,N/A,4,Has no job,Reduction activities at work,Reduction kind/amount act. - at work,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B2,RAC_2B2_cat4_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Reduction activities at work,Reduction kind/amount act. - at work,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B2,RAC_2B2_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction activities at work,Reduction kind/amount act. - at work,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2B2,RAC_2B2_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACC_2B2, cchs2005_p::RACE_2B2, [RAC_2B2]",NA,cat,NA::b,4,missing,missing,N/A,else,else,Reduction activities at work,Reduction kind/amount act. - at work,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2C,RAC_2C_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",NA,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Reduction other activities,Reduction - other activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2C,RAC_2C_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",NA,cat,2,3,Often,Often,N/A,2,Often,Reduction other activities,Reduction - other activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2C,RAC_2C_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",NA,cat,3,3,Never,Never,N/A,3,Never,Reduction other activities,Reduction - other activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2C,RAC_2C_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Reduction other activities,Reduction - other activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2C,RAC_2C_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Reduction other activities,Reduction - other activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RAC_2C,RAC_2C_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",NA,cat,NA::b,3,missing,missing,N/A,else,else,Reduction other activities,Reduction - other activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACAG5,RACAG5_cat4_1,cat,cchs2001_p,cchs2001_p::RACAG5,NA,cat,1,4,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem,"CCHS 2001 has different categories from other cycles, hence a new variable created",2.2.0,2025-06-30,active,NA,NA,NA +RACAG5,RACAG5_cat4_2,cat,cchs2001_p,cchs2001_p::RACAG5,NA,cat,2,4,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACAG5,RACAG5_cat4_3,cat,cchs2001_p,cchs2001_p::RACAG5,NA,cat,3,4,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACAG5,RACAG5_cat4_4,cat,cchs2001_p,cchs2001_p::RACAG5,NA,cat,4,4,Other,Other,N/A,4,Other,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACAG5,RACAG5_cat4_NAa,cat,cchs2001_p,cchs2001_p::RACAG5,NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACAG5,RACAG5_cat4_NAb,cat,cchs2001_p,cchs2001_p::RACAG5,NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACAG5,RACAG5_cat4_NAb,cat,cchs2001_p,cchs2001_p::RACAG5,NA,cat,NA::b,4,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDIMP,RACDIMP_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",NA,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Impact health problem,Impact of health problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDIMP,RACDIMP_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",NA,cat,2,3,Often,Often,N/A,2,Often,Impact health problem,Impact of health problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDIMP,RACDIMP_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",NA,cat,3,3,Never,Never,N/A,3,Never,Impact health problem,Impact of health problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDIMP,RACDIMP_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Impact health problem,Impact of health problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDIMP,RACDIMP_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Impact health problem,Impact of health problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDIMP,RACDIMP_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::RACADIMP, cchs2003_p::RACCDIMP, cchs2005_p::RACEDIMP, [RACDIMP]",NA,cat,NA::b,3,missing,missing,N/A,else,else,Impact health problem,Impact of health problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDPAL,RACDPAL_catN/A_Func::RACDPAL_fun,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",NA,N/A,Func::RACDPAL_fun,N/A,N/A,N/A,N/A,N/A,N/A,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +RACDPAL,RACDPAL_cat3_1,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",NA,N/A,1,3,Sometimes,Sometimes,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +RACDPAL,RACDPAL_cat3_2,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",NA,N/A,2,3,Often,Often,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +RACDPAL,RACDPAL_cat3_3,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",NA,N/A,3,3,Never,Never,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +RACDPAL,RACDPAL_cat3_NAb,cat,cchs2001_p,"DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]",NA,N/A,NA::b,3,missing,missing,N/A,N/A,Participation and activity limitation,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +RACDPAL,RACDPAL_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",NA,cat,1,3,Sometimes,Sometimes,N/A,1,Sometimes,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDPAL,RACDPAL_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",NA,cat,2,3,Often,Often,N/A,2,Often,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDPAL,RACDPAL_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",NA,cat,3,3,Never,Never,N/A,3,Never,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDPAL,RACDPAL_cat3_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",NA,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDPAL,RACDPAL_cat3_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",NA,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACDPAL,RACDPAL_cat3_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",NA,cat,NA::b,3,missing,missing,N/A,else,else,Particpation/activity limitation,Participation and activity limitation,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,1,6,Injury,Injury,N/A,1,Injury,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,2,6,Disease/illness,Disease/illness,N/A,2,Disease/illness,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,3,6,Aging,Aging,N/A,3,Aging,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,4,6,Existed at birth,Existed at birth,N/A,4,Existed at birth,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_5,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,5,6,Work conditions,Work conditions,N/A,5,Work conditions,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_6,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,6,6,Other,Other,N/A,6,Other,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::RACCG5, cchs2005_p::RACEG5, [RACG5]",NA,cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,1,6,Injury,Injury,N/A,"[1,4]",Injury,Cause health problem,Cause of Health problem,"For CCHS 2007-2008 and shared files, cause of health problem groupings based on 2009-2010 derived variable documentation.",2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,2,6,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,3,6,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,4,6,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,5,6,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_6,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,6,6,Other,Other,N/A,"[9,11]",Other,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5,RACG5_cat6_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,NA::b,6,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_1,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,1,11,Accident at home,Accident at home,N/A,1,Accident at home,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_2,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,2,11,Motor vehicle accident,Motor vehicle accident,N/A,2,Motor vehicle accident,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_3,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,3,11,Accident at work,Accident at work,N/A,3,Accident at work,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_4,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,4,11,Other type of accident,Other type of accident,N/A,4,Other type of accident,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_5,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,5,11,Existed at birth,Existed at birth,N/A,5,Existed at birth,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_6,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,6,11,Work conditions,Work conditions,N/A,6,Work conditions,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_7,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,7,11,Disease/illness,Disease/illness,N/A,7,Disease/illness,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_8,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,8,11,Aging,Aging,N/A,8,Aging,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_9,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,9,11,Emotional/mental health problems,Emotional/mental health problems,N/A,9,Emotional/mental health problems,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_10,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,10,11,Use of alcohol or drugs,Use of alcohol or drugs,N/A,10,Use of alcohol or drugs,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_11,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,11,11,Other,Other,N/A,11,Other,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_NAa,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,NA::a,11,not applicable,not applicable,N/A,96,not applicable,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,NA::b,11,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +RACG5_A,RACG5_A_cat11_NAb,cat,"cchs2009_m, cchs2010_m, cchs2012_m",[RAC_5],NA,cat,NA::b,11,missing,missing,N/A,else,else,Cause health problem,Cause of Health problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_1A,REP_1A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_1, cchs2003_p::REPC_1, cchs2005_p::REPE_1, cchs2007_2008_p::REP_1, cchs2015_2016_p::INJ_005, cchs2017_2018_p::INJ_005, [REP_1A]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury,Repetitive strain injury in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_1A,REP_1A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_1, cchs2003_p::REPC_1, cchs2005_p::REPE_1, cchs2007_2008_p::REP_1, cchs2015_2016_p::INJ_005, cchs2017_2018_p::INJ_005, [REP_1A]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury,Repetitive strain injury in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_1A,REP_1A_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_1, cchs2003_p::REPC_1, cchs2005_p::REPE_1, cchs2007_2008_p::REP_1, cchs2015_2016_p::INJ_005, cchs2017_2018_p::INJ_005, [REP_1A]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury,Repetitive strain injury in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_1A,REP_1A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_1, cchs2003_p::REPC_1, cchs2005_p::REPE_1, cchs2007_2008_p::REP_1, cchs2015_2016_p::INJ_005, cchs2017_2018_p::INJ_005, [REP_1A]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury,Repetitive strain injury in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_1A,REP_1A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_1, cchs2003_p::REPC_1, cchs2005_p::REPE_1, cchs2007_2008_p::REP_1, cchs2015_2016_p::INJ_005, cchs2017_2018_p::INJ_005, [REP_1A]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury,Repetitive strain injury in past 12 months,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_2,REP_2_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_010, cchs2017_2018_p::INJ_010, [REP_2]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - limiting normal activities,Repetitive strain injury - limiting normal activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_2,REP_2_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_010, cchs2017_2018_p::INJ_010, [REP_2]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - limiting normal activities,Repetitive strain injury - limiting normal activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_2,REP_2_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_010, cchs2017_2018_p::INJ_010, [REP_2]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - limiting normal activities,Repetitive strain injury - limiting normal activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_2,REP_2_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_010, cchs2017_2018_p::INJ_010, [REP_2]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - limiting normal activities,Repetitive strain injury - limiting normal activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_2,REP_2_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_010, cchs2017_2018_p::INJ_010, [REP_2]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - limiting normal activities,Repetitive strain injury - limiting normal activities,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_3A,REP_3A_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3A],NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity causing injury,Repetitive strain injury - activity causing injury,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_3A,REP_3A_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3A],NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity causing injury,Repetitive strain injury - activity causing injury,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_3A,REP_3A_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3A],NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity causing injury,Repetitive strain injury - activity causing injury,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_3A,REP_3A_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3A],NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity causing injury,Repetitive strain injury - activity causing injury,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_3A,REP_3A_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3A],NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity causing injury,Repetitive strain injury - activity causing injury,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4,REP_4_cat2_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::REPE_4C, cchs2007_2008_p::REP_4C, cchs2015_2016_p::INJ_025, cchs2017_2018_p::INJ_025, [REP_4]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - working at a job / business (excluding travel to or from work),Repetitive strain injury - working at a job or business (excluding travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4,REP_4_cat2_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::REPE_4C, cchs2007_2008_p::REP_4C, cchs2015_2016_p::INJ_025, cchs2017_2018_p::INJ_025, [REP_4]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - working at a job / business (excluding travel to or from work),Repetitive strain injury - working at a job or business (excluding travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4,REP_4_cat2_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::REPE_4C, cchs2007_2008_p::REP_4C, cchs2015_2016_p::INJ_025, cchs2017_2018_p::INJ_025, [REP_4]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - working at a job / business (excluding travel to or from work),Repetitive strain injury - working at a job or business (excluding travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4,REP_4_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::REPE_4C, cchs2007_2008_p::REP_4C, cchs2015_2016_p::INJ_025, cchs2017_2018_p::INJ_025, [REP_4]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - working at a job / business (excluding travel to or from work),Repetitive strain injury - working at a job or business (excluding travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4,REP_4_cat2_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2005_p::REPE_4C, cchs2007_2008_p::REP_4C, cchs2015_2016_p::INJ_025, cchs2017_2018_p::INJ_025, [REP_4]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - working at a job / business (excluding travel to or from work),Repetitive strain injury - working at a job or business (excluding travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4A,REP_4A_cat2_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::REPA_4C, cchs2003_p::REPC_4C",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - working at a job / business (including travel to or from work),Repetitive strain injury - working at a job or business (including travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4A,REP_4A_cat2_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::REPA_4C, cchs2003_p::REPC_4C",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - working at a job / business (including travel to or from work),Repetitive strain injury - working at a job or business (including travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4A,REP_4A_cat2_NAa,cat,"cchs2001_p, cchs2003_p","cchs2001_p::REPA_4C, cchs2003_p::REPC_4C",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - working at a job / business (including travel to or from work),Repetitive strain injury - working at a job or business (including travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4A,REP_4A_cat2_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::REPA_4C, cchs2003_p::REPC_4C",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - working at a job / business (including travel to or from work),Repetitive strain injury - working at a job or business (including travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4A,REP_4A_cat2_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::REPA_4C, cchs2003_p::REPC_4C",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - working at a job / business (including travel to or from work),Repetitive strain injury - working at a job or business (including travel to or from work),NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4G,REP_4G_cat2_1,cat,"cchs2003_p, cchs2007_2008_p","cchs2003_p::REPC_4G, cchs2007_2008_p::REP_4G",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - travel to or from work,Repetitive strain injury - travel to or from work,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4G,REP_4G_cat2_2,cat,"cchs2003_p, cchs2007_2008_p","cchs2003_p::REPC_4G, cchs2007_2008_p::REP_4G",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - travel to or from work,Repetitive strain injury - travel to or from work,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4G,REP_4G_cat2_NAa,cat,"cchs2003_p, cchs2007_2008_p","cchs2003_p::REPC_4G, cchs2007_2008_p::REP_4G",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - travel to or from work,Repetitive strain injury - travel to or from work,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4G,REP_4G_cat2_NAb,cat,"cchs2003_p, cchs2007_2008_p","cchs2003_p::REPC_4G, cchs2007_2008_p::REP_4G",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - travel to or from work,Repetitive strain injury - travel to or from work,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_4G,REP_4G_cat2_NAb,cat,"cchs2003_p, cchs2007_2008_p","cchs2003_p::REPC_4G, cchs2007_2008_p::REP_4G",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - travel to or from work,Repetitive strain injury - travel to or from work,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5A,REP_5A_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020A, cchs2017_2018_p::INJ_020A, [REP_5A]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - walking,Repetitive strain injury - type of activity - walking,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5A,REP_5A_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020A, cchs2017_2018_p::INJ_020A, [REP_5A]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - walking,Repetitive strain injury - type of activity - walking,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5A,REP_5A_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020A, cchs2017_2018_p::INJ_020A, [REP_5A]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - walking,Repetitive strain injury - type of activity - walking,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5A,REP_5A_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020A, cchs2017_2018_p::INJ_020A, [REP_5A]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - walking,Repetitive strain injury - type of activity - walking,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5A,REP_5A_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020A, cchs2017_2018_p::INJ_020A, [REP_5A]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - walking,Repetitive strain injury - type of activity - walking,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5B,REP_5B_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4A, cchs2003_p::REPC_4A, cchs2005_p::REPE_4A, cchs2007_2008_p::REP_4A, cchs2015_2016_p::INJ_020B, cchs2017_2018_p::INJ_020B, [REP_5B]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - sport/physical activity,Repetitive strain injury - type of activity - sports or physical exercise,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5B,REP_5B_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4A, cchs2003_p::REPC_4A, cchs2005_p::REPE_4A, cchs2007_2008_p::REP_4A, cchs2015_2016_p::INJ_020B, cchs2017_2018_p::INJ_020B, [REP_5B]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - sport/physical activity,Repetitive strain injury - type of activity - sports or physical exercise,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5B,REP_5B_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4A, cchs2003_p::REPC_4A, cchs2005_p::REPE_4A, cchs2007_2008_p::REP_4A, cchs2015_2016_p::INJ_020B, cchs2017_2018_p::INJ_020B, [REP_5B]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - sport/physical activity,Repetitive strain injury - type of activity - sports or physical exercise,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5B,REP_5B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4A, cchs2003_p::REPC_4A, cchs2005_p::REPE_4A, cchs2007_2008_p::REP_4A, cchs2015_2016_p::INJ_020B, cchs2017_2018_p::INJ_020B, [REP_5B]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - sport/physical activity,Repetitive strain injury - type of activity - sports or physical exercise,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5B,REP_5B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4A, cchs2003_p::REPC_4A, cchs2005_p::REPE_4A, cchs2007_2008_p::REP_4A, cchs2015_2016_p::INJ_020B, cchs2017_2018_p::INJ_020B, [REP_5B]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - sport/physical activity,Repetitive strain injury - type of activity - sports or physical exercise,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5C,REP_5C_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4B, cchs2003_p::REPC_4B, cchs2005_p::REPE_4B, cchs2007_2008_p::REP_4B, cchs2015_2016_p::INJ_020C, cchs2017_2018_p::INJ_020C, [REP_5C]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - leisure/hobby,Repetitive strain injury - type of activity - leisure or hobby,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5C,REP_5C_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4B, cchs2003_p::REPC_4B, cchs2005_p::REPE_4B, cchs2007_2008_p::REP_4B, cchs2015_2016_p::INJ_020C, cchs2017_2018_p::INJ_020C, [REP_5C]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - leisure/hobby,Repetitive strain injury - type of activity - leisure or hobby,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5C,REP_5C_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4B, cchs2003_p::REPC_4B, cchs2005_p::REPE_4B, cchs2007_2008_p::REP_4B, cchs2015_2016_p::INJ_020C, cchs2017_2018_p::INJ_020C, [REP_5C]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - leisure/hobby,Repetitive strain injury - type of activity - leisure or hobby,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5C,REP_5C_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4B, cchs2003_p::REPC_4B, cchs2005_p::REPE_4B, cchs2007_2008_p::REP_4B, cchs2015_2016_p::INJ_020C, cchs2017_2018_p::INJ_020C, [REP_5C]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - leisure/hobby,Repetitive strain injury - type of activity - leisure or hobby,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5C,REP_5C_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4B, cchs2003_p::REPC_4B, cchs2005_p::REPE_4B, cchs2007_2008_p::REP_4B, cchs2015_2016_p::INJ_020C, cchs2017_2018_p::INJ_020C, [REP_5C]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - leisure/hobby,Repetitive strain injury - type of activity - leisure or hobby,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5D,REP_5D_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4D, cchs2003_p::REPC_4D, cchs2005_p::REPE_4D, cchs2007_2008_p::REP_4D, cchs2015_2016_p::INJ_020D, cchs2017_2018_p::INJ_020D, [REP_5D]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - household chores,Repetitive strain injury - activity - household chores,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5D,REP_5D_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4D, cchs2003_p::REPC_4D, cchs2005_p::REPE_4D, cchs2007_2008_p::REP_4D, cchs2015_2016_p::INJ_020D, cchs2017_2018_p::INJ_020D, [REP_5D]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - household chores,Repetitive strain injury - activity - household chores,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5D,REP_5D_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4D, cchs2003_p::REPC_4D, cchs2005_p::REPE_4D, cchs2007_2008_p::REP_4D, cchs2015_2016_p::INJ_020D, cchs2017_2018_p::INJ_020D, [REP_5D]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - household chores,Repetitive strain injury - activity - household chores,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5D,REP_5D_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4D, cchs2003_p::REPC_4D, cchs2005_p::REPE_4D, cchs2007_2008_p::REP_4D, cchs2015_2016_p::INJ_020D, cchs2017_2018_p::INJ_020D, [REP_5D]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - household chores,Repetitive strain injury - activity - household chores,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5D,REP_5D_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4D, cchs2003_p::REPC_4D, cchs2005_p::REPE_4D, cchs2007_2008_p::REP_4D, cchs2015_2016_p::INJ_020D, cchs2017_2018_p::INJ_020D, [REP_5D]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - household chores,Repetitive strain injury - activity - household chores,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5E,REP_5E_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::REPA_4E, cchs2003_p::REPC_4E, cchs2005_p::REPE_4E, cchs2007_2008_p::REP_4E",NA,cat,1,2,Yes,Yes,N/A,1,Yes,"Repetitive strain injury - activity - sleeping, eating, personal care","Repetitive strain injury - activity - sleeping, eating, personal care",NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5E,REP_5E_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::REPA_4E, cchs2003_p::REPC_4E, cchs2005_p::REPE_4E, cchs2007_2008_p::REP_4E",NA,cat,2,2,No,No,N/A,2,No,"Repetitive strain injury - activity - sleeping, eating, personal care","Repetitive strain injury - activity - sleeping, eating, personal care",NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5E,REP_5E_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::REPA_4E, cchs2003_p::REPC_4E, cchs2005_p::REPE_4E, cchs2007_2008_p::REP_4E",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,"Repetitive strain injury - activity - sleeping, eating, personal care","Repetitive strain injury - activity - sleeping, eating, personal care",NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5E,REP_5E_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::REPA_4E, cchs2003_p::REPC_4E, cchs2005_p::REPE_4E, cchs2007_2008_p::REP_4E",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),"Repetitive strain injury - activity - sleeping, eating, personal care","Repetitive strain injury - activity - sleeping, eating, personal care",NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5E,REP_5E_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::REPA_4E, cchs2003_p::REPC_4E, cchs2005_p::REPE_4E, cchs2007_2008_p::REP_4E",NA,cat,NA::b,2,missing,missing,N/A,else,else,"Repetitive strain injury - activity - sleeping, eating, personal care","Repetitive strain injury - activity - sleeping, eating, personal care",NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5F,REP_5F_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020E, cchs2017_2018_p::INJ_020E, [REP_5F]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - computer use,Repetitive strain injury - activity - computer use,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5F,REP_5F_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020E, cchs2017_2018_p::INJ_020E, [REP_5F]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - computer use,Repetitive strain injury - activity - computer use,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5F,REP_5F_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020E, cchs2017_2018_p::INJ_020E, [REP_5F]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - computer use,Repetitive strain injury - activity - computer use,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5F,REP_5F_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020E, cchs2017_2018_p::INJ_020E, [REP_5F]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - computer use,Repetitive strain injury - activity - computer use,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5F,REP_5F_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020E, cchs2017_2018_p::INJ_020E, [REP_5F]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - computer use,Repetitive strain injury - activity - computer use,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5G,REP_5G_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020F, cchs2017_2018_p::INJ_020F, [REP_5G]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - driving a motor vehicle,Repetitive strain injury - activity - driving a motor vehicle,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5G,REP_5G_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020F, cchs2017_2018_p::INJ_020F, [REP_5G]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - driving a motor vehicle,Repetitive strain injury - activity - driving a motor vehicle,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5G,REP_5G_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020F, cchs2017_2018_p::INJ_020F, [REP_5G]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - driving a motor vehicle,Repetitive strain injury - activity - driving a motor vehicle,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5G,REP_5G_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020F, cchs2017_2018_p::INJ_020F, [REP_5G]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - driving a motor vehicle,Repetitive strain injury - activity - driving a motor vehicle,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5G,REP_5G_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020F, cchs2017_2018_p::INJ_020F, [REP_5G]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - driving a motor vehicle,Repetitive strain injury - activity - driving a motor vehicle,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5H,REP_5H_cat2_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020G, cchs2017_2018_p::INJ_020G, [REP_5H]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - lifting/carrying,Repetitive strain injury - activity - lifting or carrying,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5H,REP_5H_cat2_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020G, cchs2017_2018_p::INJ_020G, [REP_5H]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - lifting/carrying,Repetitive strain injury - activity - lifting or carrying,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5H,REP_5H_cat2_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020G, cchs2017_2018_p::INJ_020G, [REP_5H]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - lifting/carrying,Repetitive strain injury - activity - lifting or carrying,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5H,REP_5H_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020G, cchs2017_2018_p::INJ_020G, [REP_5H]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - lifting/carrying,Repetitive strain injury - activity - lifting or carrying,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5H,REP_5H_cat2_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2015_2016_p::INJ_020G, cchs2017_2018_p::INJ_020G, [REP_5H]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - lifting/carrying,Repetitive strain injury - activity - lifting or carrying,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5I,REP_5I_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4F, cchs2003_p::REPC_4F, cchs2005_p::REPE_4F, cchs2007_2008_p::REP_4F, cchs2015_2016_p::INJ_020H, cchs2017_2018_p::INJ_020H, [REP_5I]",NA,cat,1,2,Yes,Yes,N/A,1,Yes,Repetitive strain injury - activity - other,Repetitive strain injury - activity - other,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5I,REP_5I_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4F, cchs2003_p::REPC_4F, cchs2005_p::REPE_4F, cchs2007_2008_p::REP_4F, cchs2015_2016_p::INJ_020H, cchs2017_2018_p::INJ_020H, [REP_5I]",NA,cat,2,2,No,No,N/A,2,No,Repetitive strain injury - activity - other,Repetitive strain injury - activity - other,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5I,REP_5I_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4F, cchs2003_p::REPC_4F, cchs2005_p::REPE_4F, cchs2007_2008_p::REP_4F, cchs2015_2016_p::INJ_020H, cchs2017_2018_p::INJ_020H, [REP_5I]",NA,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Repetitive strain injury - activity - other,Repetitive strain injury - activity - other,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5I,REP_5I_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4F, cchs2003_p::REPC_4F, cchs2005_p::REPE_4F, cchs2007_2008_p::REP_4F, cchs2015_2016_p::INJ_020H, cchs2017_2018_p::INJ_020H, [REP_5I]",NA,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Repetitive strain injury - activity - other,Repetitive strain injury - activity - other,NA,2.2.0,2025-06-30,active,NA,NA,NA +REP_5I,REP_5I_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_m, cchs2010_m, cchs2012_m","cchs2001_p::REPA_4F, cchs2003_p::REPC_4F, cchs2005_p::REPE_4F, cchs2007_2008_p::REP_4F, cchs2015_2016_p::INJ_020H, cchs2017_2018_p::INJ_020H, [REP_5I]",NA,cat,NA::b,2,missing,missing,N/A,else,else,Repetitive strain injury - activity - other,Repetitive strain injury - activity - other,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,1,9,Neck,Neck,N/A,1,Neck,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,2,9,Shoulder/upper arm,Shoulder/upper arm,N/A,2,Shoulder/upper arm,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,3,9,Elbow/lower arm,Elbow/lower arm,N/A,3,Elbow/lower arm,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,4,9,Wrist/hand,Wrist/hand,N/A,4,Wrist/hand,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,5,9,"Knee, lower leg","Knee, lower leg",N/A,5,"Knee, lower leg",Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,6,9,"Ankle, foot","Ankle, foot",N/A,6,"Ankle, foot",Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_7,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,7,9,Upper back or upper spine,Upper back or upper spine,N/A,7,Upper back or upper spine,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_8,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,8,9,Lower back or lower spine,Lower back or lower spine,N/A,8,Lower back or lower spine,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_9,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,9,9,Other,Other,N/A,9,Other,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::REPAG3, cchs2003_p::REPCG3, cchs2005_p::REPEG3, cchs2015_2016_p::INJG015, cchs2017_2018_p::INJG015, [REPG3]",NA,cat,NA::b,9,missing,missing,N/A,else,else,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_1,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,1,9,Neck,Neck,N/A,2,Neck,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_2,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,2,9,Shoulder/upper arm,Shoulder/upper arm,N/A,3,Shoulder/upper arm,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_3,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,3,9,Elbow/lower arm,Elbow/lower arm,N/A,4,Elbow/lower arm,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_4,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,4,9,Wrist/hand,Wrist/hand,N/A,"[5,6]",Wrist/hand,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_5,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,5,9,"Knee, lower leg","Knee, lower leg",N/A,9,"Knee, lower leg",Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_6,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,6,9,"Ankle, foot","Ankle, foot",N/A,10,"Ankle, foot",Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_7,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,7,9,Upper back or upper spine,Upper back or upper spine,N/A,11,Upper back or upper spine,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_8,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,8,9,Lower back or lower spine,Lower back or lower spine,N/A,12,Lower back or lower spine,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_9,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,9,9,Other,Other,N/A,1,Other,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,"Others include head, hip, thigh, chest (excluding back and spine), abdomen or pelvis",2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_9,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,9,9,Other,Other,N/A,7,Other,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,"Others include head, hip, thigh, chest (excluding back and spine), abdomen or pelvis",2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_9,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,9,9,Other,Other,N/A,8,Other,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,"Others include head, hip, thigh, chest (excluding back and spine), abdomen or pelvis",2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_9,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,9,9,Other,Other,N/A,13,Other,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,"Others include head, hip, thigh, chest (excluding back and spine), abdomen or pelvis",2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_9,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,9,9,Other,Other,N/A,14,Other,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,"Others include head, hip, thigh, chest (excluding back and spine), abdomen or pelvis",2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_NAa,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,NA::a,9,not applicable,not applicable,N/A,96,not applicable,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,NA::b,9,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +REPG3,REPG3_cat9_NAb,cat,"cchs2007_2008_p, cchs2009_m, cchs2010_m, cchs2012_m",[REP_3],NA,cat,NA::b,9,missing,missing,N/A,else,else,Repetitive strain injury - most serious affected body part,Repetitive strain injury - most serious affected body part,NA,2.2.0,2025-06-30,active,NA,NA,NA +resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",NA,N/A,Func::resp_condition_fun,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD, Emphysema and Asthma variables",2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_catN/A_Func::resp_condition_fun,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[DHH_AGE, CCC_091, CCC_031]",NA,N/A,Func::resp_condition_fun,N/A,N/A,N/A,N/A,N/A,N/A,Respiratory condition,Respiratory condition,"Derived from Bronchitis, COPD, Emphysema and Asthma variables",2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",NA,N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Age over 35 years with condition,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[DHH_AGE, CCC_091, CCC_031]",NA,N/A,1,3,Over 35 years with condition,Age over 35 years with condition,N/A,N/A,Age over 35 years with condition,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",NA,N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Age under 35 years with condition,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[DHH_AGE, CCC_091, CCC_031]",NA,N/A,2,3,Under 35 years with condition,Age under 35 years with condition,N/A,N/A,Age under 35 years with condition,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",NA,N/A,3,3,No condition,No condition,N/A,N/A,No condition,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[DHH_AGE, CCC_091, CCC_031]",NA,N/A,3,3,No condition,No condition,N/A,N/A,No condition,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",NA,N/A,NA::a,3,not applicable,not applicable,N/A,N/A,not applicable,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[DHH_AGE, CCC_091, CCC_031]",NA,N/A,NA::a,3,not applicable,not applicable,N/A,N/A,not applicable,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",NA,N/A,NA::b,3,missing,missing,N/A,N/A,missing,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +resp_condition_der,resp_condition_der_cat3_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","DerivedVar::[DHH_AGE, CCC_091, CCC_031]",NA,N/A,NA::b,3,missing,missing,N/A,N/A,missing,Respiratory condition,Respiratory condition,NA,2.2.0,2025-06-30,active,NA,NA,No typeStart +SDC_5A_1,SDC_5A_1_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, cchs2015_2016_m::SDC_025, cchs2017_2018_m::SDC_025, cchs2019_2020_m::SDC_025, cchs2021_m::SDC_025, cchs2022_m::LAN_01, cchs2023_m::LAN_01, [SDC_5A_1]",,cat,1,4,English,English only,N/A,1,English,Knowledge of official languages,Knowledge of official languages,,2.2.0,2025-06-30,active,,, +SDC_5A_1,SDC_5A_1_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, cchs2015_2016_m::SDC_025, cchs2017_2018_m::SDC_025, cchs2019_2020_m::SDC_025, cchs2021_m::SDC_025, cchs2022_m::LAN_01, cchs2023_m::LAN_01, [SDC_5A_1]",,cat,2,4,French,French only,N/A,2,French,Knowledge of official languages,Knowledge of official languages,,2.2.0,2025-06-30,active,,, +SDC_5A_1,SDC_5A_1_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, cchs2015_2016_m::SDC_025, cchs2017_2018_m::SDC_025, cchs2019_2020_m::SDC_025, cchs2021_m::SDC_025, cchs2022_m::LAN_01, cchs2023_m::LAN_01, [SDC_5A_1]",,cat,3,4,English & French,English & French,N/A,3,English & French,Knowledge of official languages,Knowledge of official languages,,2.2.0,2025-06-30,active,,, +SDC_5A_1,SDC_5A_1_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, cchs2015_2016_m::SDC_025, cchs2017_2018_m::SDC_025, cchs2019_2020_m::SDC_025, cchs2021_m::SDC_025, cchs2022_m::LAN_01, cchs2023_m::LAN_01, [SDC_5A_1]",,cat,4,4,Neither,Neither English nor French,N/A,4,Neither,Knowledge of official languages,Knowledge of official languages,,2.2.0,2025-06-30,active,,, +SDC_5A_1,SDC_5A_1_cat4_NAa,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, cchs2015_2016_m::SDC_025, cchs2017_2018_m::SDC_025, cchs2019_2020_m::SDC_025, cchs2021_m::SDC_025, cchs2022_m::LAN_01, cchs2023_m::LAN_01, [SDC_5A_1]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Knowledge of official languages,Knowledge of official languages,,2.2.0,2025-06-30,active,,, +SDC_5A_1,SDC_5A_1_cat4_NAb,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, cchs2015_2016_m::SDC_025, cchs2017_2018_m::SDC_025, cchs2019_2020_m::SDC_025, cchs2021_m::SDC_025, cchs2022_m::LAN_01, cchs2023_m::LAN_01, [SDC_5A_1]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Knowledge of official languages,Knowledge of official languages,,2.2.0,2025-06-30,active,,, +SDC_5A_1,SDC_5A_1_cat4_NAb,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDC_025, cchs2017_2018_p::SDC_025, cchs2015_2016_m::SDC_025, cchs2017_2018_m::SDC_025, cchs2019_2020_m::SDC_025, cchs2021_m::SDC_025, cchs2022_m::LAN_01, cchs2023_m::LAN_01, [SDC_5A_1]",,cat,NA::b,4,missing,missing,N/A,else,else,Knowledge of official languages,Knowledge of official languages,,2.2.0,2025-06-30,active,,, +SDCDCGT_2015plus,SDCDCGT_2015plus_1,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,1,13,White only,White only,N/A,1,White only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_2,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,2,13,South Asian only,South Asian only,N/A,8,South Asian only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_3,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,3,13,Chinese only,Chinese only,N/A,6,Chinese only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_4,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,4,13,Black only,Black only,N/A,2,Black only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_5,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,5,13,Filipino only,Filipino only,N/A,4,Filipino only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_6,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,6,13,Latin American only,Latin American only,N/A,12,Latin American only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_7,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,7,13,Arab only,Arab only,N/A,10,Arab only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_8,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,8,13,Southeastern Asian only,Southeastern Asian only,N/A,9,Southeastern Asian only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_9,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,9,13,West Asian only,West Asian only,N/A,11,West Asian only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_10,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,10,13,Korean only,Korean only,N/A,3,Korean only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_11,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,11,13,Japenese only,Japenese only,N/A,5,Japenese only,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_12,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,12,13,Other racial or cultural origin (only),Other racial or cultural origin (only),N/A,13,Other racial or cultural origin (only),Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_13,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,13,13,Multiple racial or cultural origins,Multiple racial or cultural origins,N/A,14,Multiple racial or cultural origins,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,NA::a,13,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,NA::b,13,missing,missing,N/A,"[97, 99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_2015plus,SDCDCGT_2015plus_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m",[SDCDVCGT],ICES specific,cat,NA::b,13,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,1,7,White,White,N/A,1,White,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,2,7,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,3,7,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,4,7,Aboriginal,Aboriginal,N/A,7,Aboriginal,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,3,Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,5,Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,5,7,Japanese/Korean/South East Asian/Filipino,Japanese/Korean/South East Asian/Filipino,N/A,9,Japanese/Korean/South East Asian/Filipino,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_6,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,6,7,other/multiple origin/unknown/Latin American,other/multiple origin/unknown/Latin American,N/A,12,other/multiple origin/unknown/Latin American,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_6,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,6,7,other/multiple origin/unknown/Latin American,other/multiple origin/unknown/Latin American,N/A,14,other/multiple origin/unknown/Latin American,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_7,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,7,7,South Asian/Arab/West Asian,South Asian/Arab/West Asian,N/A,8,South Asian/Arab/West Asian,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_7,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,7,7,South Asian/Arab/West Asian,South Asian/Arab/West Asian,N/A,"[10,11]",South Asian/Arab/West Asian,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,NA::b,7,missing,missing,N/A,"[97,99]",missing,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_cat7,SDCDCGT_cat7_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, cchs2015_2016_m::SDCDVCGT, cchs2017_2018_m::SDCDVCGT, [SDCDCGT]",ICES specific,cat,NA::b,7,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,1,14,White,White,N/A,1,White,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,2,14,Black,Black,N/A,2,Black,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,3,14,Korean,Korean,N/A,3,Korean,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,4,14,Filipino,Filipino,N/A,4,Filipino,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,5,14,Japanese,Japanese,N/A,5,Japanese,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_6,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,6,14,Chinese,Chinese,N/A,6,Chinese,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_7,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,7,14,Aboriginal/N ame,Aboriginal/N ame,N/A,7,Aboriginal/N ame,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_8,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,8,14,South Asian,South Asian,N/A,8,South Asian,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_9,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,9,14,South East Asian,South East Asian,N/A,9,South East Asian,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_10,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,10,14,Arab,Arab,N/A,10,Arab,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_11,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,11,14,West Asian,West Asian,N/A,11,West Asian,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_12,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,12,14,Latin American,Latin American,N/A,12,Latin American,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_13,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,13,14,Other,Other,N/A,13,Other,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_13,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,14,14,Multiple origins,Multiple origins,N/A,14,Multiple origins,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,NA::a,14,not applicable,not applicable,N/A,96,not applicable,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,NA::b,14,missing,missing,N/A,"[97, 99]",don't know (97); refusal (98); not stated (99),Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDCGT_pre2015,SDCDCGT_pre2015_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m","cchs2001_m::SDCADRAC, cchs2003_m::SDCCDRAC, cchs2005_m::SDCEDCGT, [SDCDCGT]",ICES specific,cat,NA::b,14,missing,missing,N/A,else,else,Ethnicity,Cultural or racial origin,,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCDFOLS,SDCDFOLS_cat4_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, cchs2015_2016_m::SDCDVFLS, cchs2017_2018_m::SDCDVFLS, cchs2019_2020_m::SDCDVFLS, cchs2021_m::SDCDVFLS, cchs2022_m::SDCDVFLS, cchs2023_m::SDCDVFLS, [SDCDFOLS]",,cat,1,4,English,English only,N/A,1,English,First official language spoken,First official language spoken,,2.2.0,2025-06-30,active,,, +SDCDFOLS,SDCDFOLS_cat4_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, cchs2015_2016_m::SDCDVFLS, cchs2017_2018_m::SDCDVFLS, cchs2019_2020_m::SDCDVFLS, cchs2021_m::SDCDVFLS, cchs2022_m::SDCDVFLS, cchs2023_m::SDCDVFLS, [SDCDFOLS]",,cat,2,4,French,French only,N/A,2,French,First official language spoken,First official language spoken,,2.2.0,2025-06-30,active,,, +SDCDFOLS,SDCDFOLS_cat4_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, cchs2015_2016_m::SDCDVFLS, cchs2017_2018_m::SDCDVFLS, cchs2019_2020_m::SDCDVFLS, cchs2021_m::SDCDVFLS, cchs2022_m::SDCDVFLS, cchs2023_m::SDCDVFLS, [SDCDFOLS]",,cat,3,4,English & French,English & French,N/A,3,English & French,First official language spoken,First official language spoken,,2.2.0,2025-06-30,active,,, +SDCDFOLS,SDCDFOLS_cat4_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, cchs2015_2016_m::SDCDVFLS, cchs2017_2018_m::SDCDVFLS, cchs2019_2020_m::SDCDVFLS, cchs2021_m::SDCDVFLS, cchs2022_m::SDCDVFLS, cchs2023_m::SDCDVFLS, [SDCDFOLS]",,cat,4,4,Neither,Neither English nor French,N/A,4,Neither,First official language spoken,First official language spoken,,2.2.0,2025-06-30,active,,, +SDCDFOLS,SDCDFOLS_cat4_NAa,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, cchs2015_2016_m::SDCDVFLS, cchs2017_2018_m::SDCDVFLS, cchs2019_2020_m::SDCDVFLS, cchs2021_m::SDCDVFLS, cchs2022_m::SDCDVFLS, cchs2023_m::SDCDVFLS, [SDCDFOLS]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)",2.2.0,2025-06-30,active,,, +SDCDFOLS,SDCDFOLS_cat4_NAb,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, cchs2015_2016_m::SDCDVFLS, cchs2017_2018_m::SDCDVFLS, cchs2019_2020_m::SDCDVFLS, cchs2021_m::SDCDVFLS, cchs2022_m::SDCDVFLS, cchs2023_m::SDCDVFLS, [SDCDFOLS]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),First official language spoken,First official language spoken,"CCHS2015_2016 and CCHS2017_2018 does not have not applicable (6), don't know (7) or refusal (8)",2.2.0,2025-06-30,active,,, +SDCDFOLS,SDCDFOLS_cat4_NAb,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SDCDVFLS, cchs2017_2018_p::SDCDVFLS, cchs2015_2016_m::SDCDVFLS, cchs2017_2018_m::SDCDVFLS, cchs2019_2020_m::SDCDVFLS, cchs2021_m::SDCDVFLS, cchs2022_m::SDCDVFLS, cchs2023_m::SDCDVFLS, [SDCDFOLS]",,cat,NA::b,4,missing,missing,N/A,else,else,First official language spoken,First official language spoken,,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,5,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,6,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,"[3,4]",English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,4,4,Neither,Neither English nor French (other),N/A,7,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,NA::a,4,not applicable,not applicable,N/A,96,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,NA::b,4,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDLNG,SDCDLNG_cat4_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m","cchs2001_m::SDCADLNG, cchs2003_m::SDCCDLNG, cchs2005_m::SDCEDLNG, [SDCDLNG]",,cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCDRES,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCADRES, cchs2003_m::SDCCDRES, cchs2005_m::SDCEDRES, cchs2015_2016_m::SDCDVRES, cchs2017_2018_m::SDCDVRES, cchs2019_2020_m::SDCDVRES, cchs2021_m::SDCDVRES, cchs2022_m::SDCDVRES, cchs2023_m::SDCDVRES, [SDCDRES]",,cont,copy,N/A,years since immigration,years since immigration,years,"[0,97]",years since immigration,Time in Canada,Length/time in Canada since imm. (D),,2.2.0,2025-06-30,active,,, +SDCDRES,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCADRES, cchs2003_m::SDCCDRES, cchs2005_m::SDCEDRES, cchs2015_2016_m::SDCDVRES, cchs2017_2018_m::SDCDVRES, cchs2019_2020_m::SDCDVRES, cchs2021_m::SDCDVRES, cchs2022_m::SDCDVRES, cchs2023_m::SDCDVRES, [SDCDRES]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Time in Canada,Length/time in Canada since imm. (D),,2.2.0,2025-06-30,active,,, +SDCDRES,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCADRES, cchs2003_m::SDCCDRES, cchs2005_m::SDCEDRES, cchs2015_2016_m::SDCDVRES, cchs2017_2018_m::SDCDVRES, cchs2019_2020_m::SDCDVRES, cchs2021_m::SDCDVRES, cchs2022_m::SDCDVRES, cchs2023_m::SDCDVRES, [SDCDRES]",,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Time in Canada,Length/time in Canada since imm. (D),,2.2.0,2025-06-30,active,,, +SDCDRES,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCADRES, cchs2003_m::SDCCDRES, cchs2005_m::SDCEDRES, cchs2015_2016_m::SDCDVRES, cchs2017_2018_m::SDCDVRES, cchs2019_2020_m::SDCDVRES, cchs2021_m::SDCDVRES, cchs2022_m::SDCDVRES, cchs2023_m::SDCDVRES, [SDCDRES]",,cont,NA::b,N/A,missing,missing,years,else,else,Time in Canada,Length/time in Canada since imm. (D),,2.2.0,2025-06-30,active,,, +SDCDVABT,SDCDVABT_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SDC_015],,cat,1,2,Aboriginal identity,Aboriginal identity,N/A,1,Yes,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SDC_015],,cat,2,2,Non-Aboriginal identity,Non-Aboriginal identity,N/A,2,No,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SDC_015],,cat,NA::a,2,not applicable,not applicable,N/A,6,valid skip,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SDC_015],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SDC_015],,cat,NA::b,2,missing,missing,N/A,else,else,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_1,cat,cchs2022_p,[SDCDVABT],,cat,1,2,Aboriginal identity,Aboriginal identity,N/A,1,Indigenous identity (First Nations; Metis; Inuk/Inuit),Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_2,cat,cchs2022_p,[SDCDVABT],,cat,2,2,Non-Aboriginal identity,Non-Aboriginal identity,N/A,2,Non-Indigenous identity,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAa,cat,cchs2022_p,[SDCDVABT],,cat,NA::a,2,not applicable,not applicable,N/A,6,valid skip,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,cchs2022_p,[SDCDVABT],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,cchs2022_p,[SDCDVABT],,cat,NA::b,2,missing,missing,N/A,else,else,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_1,cat,cchs2005_m,[SDCEFABT],,cat,1,2,Aboriginal identity,Aboriginal identity,N/A,1,Aboriginal (N.A. Indian; Metis; Inuit),Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_2,cat,cchs2005_m,[SDCEFABT],,cat,2,2,Non-Aboriginal identity,Non-Aboriginal identity,N/A,2,Not Aboriginal,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,cchs2005_m,[SDCEFABT],,cat,NA::b,2,missing,missing,N/A,9,not stated,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,cchs2005_m,[SDCEFABT],,cat,NA::b,2,missing,missing,N/A,else,else,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_1,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDABT],,cat,1,2,Aboriginal identity,Aboriginal identity,N/A,1,Aboriginal (First Nations; Metis; Inuit),Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_2,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDABT],,cat,2,2,Non-Aboriginal identity,Non-Aboriginal identity,N/A,2,Not Aboriginal,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAa,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDABT],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDABT],,cat,NA::b,2,missing,missing,N/A,9,not stated,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDABT],,cat,NA::b,2,missing,missing,N/A,else,else,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SDCDVABT],,cat,1,2,Aboriginal identity,Aboriginal identity,N/A,1,Aboriginal/Indigenous identity (First Nations; Metis; Inuk/Inuit),Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SDCDVABT],,cat,2,2,Non-Aboriginal identity,Non-Aboriginal identity,N/A,2,Non-Aboriginal/Non-Indigenous identity,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SDCDVABT],,cat,NA::a,2,not applicable,not applicable,N/A,6,valid skip,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SDCDVABT],,cat,NA::b,2,missing,missing,N/A,9,not stated,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCDVABT,SDCDVABT_cat2_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SDCDVABT],,cat,NA::b,2,missing,missing,N/A,else,else,Aboriginal/Indigenous identity,Aboriginal/Indigenous Identity - (D),,3.0.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_m::SDCAFIMM, cchs2003_m::SDCCFIMM, cchs2005_m::SDCEFIMM, cchs2015_2016_m::SDCDVIMM, cchs2017_2018_m::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCFIMM,SDCFIMM_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_m::SDCAFIMM, cchs2003_m::SDCCFIMM, cchs2005_m::SDCEFIMM, cchs2015_2016_m::SDCDVIMM, cchs2017_2018_m::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCFIMM,SDCFIMM_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_m::SDCAFIMM, cchs2003_m::SDCCFIMM, cchs2005_m::SDCEFIMM, cchs2015_2016_m::SDCDVIMM, cchs2017_2018_m::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_m::SDCAFIMM, cchs2003_m::SDCCFIMM, cchs2005_m::SDCEFIMM, cchs2015_2016_m::SDCDVIMM, cchs2017_2018_m::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, cchs2015_2016_p::SDCDVIMM, cchs2017_2018_p::SDCDVIMM, cchs2001_m::SDCAFIMM, cchs2003_m::SDCCFIMM, cchs2005_m::SDCEFIMM, cchs2015_2016_m::SDCDVIMM, cchs2017_2018_m::SDCDVIMM, [SDCFIMM]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCFIMM,SDCFIMM_cat2_1,cat,"cchs2019_2020_p, cchs2019_2020_m, cchs2021_m",[SDCDVIMM],,cat,1,2,Yes,Yes,N/A,1,Yes,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_2,cat,"cchs2019_2020_p, cchs2019_2020_m, cchs2021_m",[SDCDVIMM],,cat,2,2,No,No,N/A,2,No,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAa,cat,"cchs2019_2020_p, cchs2019_2020_m, cchs2021_m",[SDCDVIMM],,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,"cchs2019_2020_p, cchs2019_2020_m, cchs2021_m",[SDCDVIMM],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,"cchs2019_2020_p, cchs2019_2020_m, cchs2021_m",[SDCDVIMM],,cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_1,cat,cchs2022_p,[SDCDGIMM],,cat,1,2,Yes,Yes,N/A,2,Immigrant or non-permanent resident,Immigrant status,Immigrant Status (D),2022 PUMF: SDCDGIMM category 2 mapped to 1 (Yes),2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_2,cat,cchs2022_p,[SDCDGIMM],,cat,2,2,No,No,N/A,1,Non-immigrant,Immigrant status,Immigrant Status (D),2022 PUMF: SDCDGIMM category 1 mapped to 2 (No),2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAa,cat,cchs2022_p,[SDCDGIMM],,cat,NA::a,2,not applicable,not applicable,N/A,"[6,8]",valid skip (6); refusal (8),Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,cchs2022_p,[SDCDGIMM],,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); not stated (9),Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,cchs2022_p,[SDCDGIMM],,cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_1,cat,"cchs2022_m, cchs2023_m",[SDCDVIMM],,cat,1,2,Yes,Yes,N/A,"[2,3]",Immigrant (landed/naturalized) or non-permanent resident,Immigrant status,Immigrant Status (D),2022+ recoding: categories 2 (immigrant) and 3 (non-perm resident) mapped to 1 (Yes),2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_2,cat,"cchs2022_m, cchs2023_m",[SDCDVIMM],,cat,2,2,No,No,N/A,1,Non-immigrant (citizen by birth),Immigrant status,Immigrant Status (D),2022+ recoding: category 1 (non-immigrant) mapped to 2 (No),2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,"cchs2022_m, cchs2023_m",[SDCDVIMM],,cat,NA::b,2,missing,missing,N/A,9,not stated,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCFIMM,SDCFIMM_cat2_NAb,cat,"cchs2022_m, cchs2023_m",[SDCDVIMM],,cat,NA::b,2,missing,missing,N/A,else,else,Immigrant status,Immigrant Status (D),,2.2.0,2026-02-13,active,,, +SDCGCB,SDCGCB_cat7_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,1,7,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,2,7,Other North America,Other North America,N/A,2,Other North America,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_3,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,3,7,"South, Central America and Caribbean","South, Central America and Caribbean",N/A,3,"South, Central America and Caribbean",Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_4,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,4,7,Europe,Europe,N/A,4,Europe,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_5,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,5,7,Africa,Africa,N/A,5,Africa,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_6,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,6,7,Asia,Asia,N/A,6,Asia,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_7,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,7,7,Oceania,Oceania,N/A,7,Oceania,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_NAa,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCB,SDCGCB_cat7_NAb,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SDCAGCB, cchs2003_m::SDCCGCB, cchs2005_m::SDCEGCB, cchs2011_2012_m::SDCGCB10, cchs2012_m::SDCGCB10, cchs2013_2014_m::SDCGCB10, cchs2015_2016_m::SDCDVCB, cchs2017_2018_m::SDCDVCB, cchs2019_2020_m::SDCDVCB, cchs2021_m::SDCDVCB, cchs2022_m::SDCDVCB, cchs2023_m::SDCDVCB, [SDCGCB]",,cat,NA::b,7,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCBG,SDCGCBG_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,1,2,Canada,Canada,N/A,1,Canada,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCBG,SDCGCBG_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,2,2,Other,Other,N/A,2,Other,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCBG,SDCGCBG_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCBG,SDCGCBG_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Country of birth,Country of birth - (G),CCHS 2001 does not have don't know (7) or refusal (8),2.2.0,2025-06-30,active,,, +SDCGCBG,SDCGCBG_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12, cchs2013_2014_p::SDCGCB13, cchs2014_p::SDCGCB13, cchs2015_2016_p::SDCDGCB, cchs2017_2018_p::SDCDGCB, [SDCGCBG]",,cat,NA::b,2,missing,missing,N/A,else,else,Country of birth,Country of birth - (G),,2.2.0,2025-06-30,active,,, +SDCGCGT,SDCGCGT_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",ICES altered,cat,1,2,White,White,N/A,1,White,Ethnicity,"Cultural or racial origin - (D, G)",,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCGCGT,SDCGCGT_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",ICES altered,cat,2,2,Non-white,Non-white,N/A,2,Visible minority,Ethnicity,"Cultural or racial origin - (D, G)",,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCGCGT,SDCGCGT_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",ICES altered,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ethnicity,"Cultural or racial origin - (D, G)",,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCGCGT,SDCGCGT_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",ICES altered,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ethnicity,"Cultural or racial origin - (D, G)","CCHS 2001 missing don't know (7), refusal (8)",2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCGCGT,SDCGCGT_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, cchs2015_2016_p::SDCDGCGT, cchs2017_2018_p::SDCDGCGT, [SDCGCGT]",ICES altered,cat,NA::b,2,missing,missing,N/A,else,else,Ethnicity,"Cultural or racial origin - (D, G)",,2.2.0,2026-02-13,active,v3.0.0alpha,, +SDCGLHM_cat4,SDCGLHM_cat4_1,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLHM_cat4,SDCGLHM_cat4_2,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLHM_cat4,SDCGLHM_cat4_3,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLHM_cat4,SDCGLHM_cat4_4,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLHM_cat4,SDCGLHM_cat4_NAa,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLHM_cat4,SDCGLHM_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLHM_cat4,SDCGLHM_cat4_NAb,cat,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SDCDGLHM, cchs2017_2018_p::SDCDGLHM, [SDCGLHM]",,cat,NA::b,4,missing,missing,N/A,else,else,Language(s) spoken at home,"Language(s) spoken at home - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_1,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,1,7,English,English,N/A,1,English,Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_2,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,2,7,French,French,N/A,2,French,Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_3,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,3,7,English & French,English & French,N/A,3,English & French,Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_4,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,4,7,English & French and other,English & French and other,N/A,4,English & French and other,Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_5,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,5,7,English & other (not French),English & other (not French),N/A,5,English & other (not French),Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_6,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,6,7,French & other (not English),French & other (not English),N/A,6,French & other (not English),Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_7,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,7,7,Neither English nor French (other),Neither English nor French (other),N/A,7,Neither English nor French (other),Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_NAa,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,NA::a,7,not applicable,not applicable,N/A,96,not applicable,Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_NAb,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,NA::b,7,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLHM_cat7,SDCGLHM_cat7_NAb,cat,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SDCDLHM],,cat,NA::b,7,missing,missing,N/A,else,else,Language(s) spoken at home,Language(s) spoken at home - (D),,2.2.0,2025-06-30,active,,, +SDCGLNG,SDCGLNG_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,1,4,English w/ or w/o other,English with or without other language,N/A,1,English with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLNG,SDCGLNG_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,2,4,French w/ or w/o other,French with or without other language,N/A,2,French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLNG,SDCGLNG_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,3,4,English & French w/ or w/o other,English & French with or without other language,N/A,3,English & French with or without other language,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLNG,SDCGLNG_cat4_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,4,4,Neither,Neither English nor French (other),N/A,4,Neither English nor French (other),Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLNG,SDCGLNG_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLNG,SDCGLNG_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGLNG,SDCGLNG_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p","cchs2001_p::SDCAGLNG, cchs2003_p::SDCCGLNG, cchs2005_p::SDCEGLNG, [SDCGLNG]",,cat,NA::b,4,missing,missing,N/A,else,else,Languages - can converse in,"Languages - can converse in - (D,G)",,2.2.0,2025-06-30,active,,, +SDCGRES,SDCGRES_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,1,2,0 to 9 years,0 to 9 years,N/A,1,0 to 9 years,Time in Canada,"Length/time in Canada since imm. (D, G)",,2.2.0,2025-06-30,active,,, +SDCGRES,SDCGRES_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,2,2,10 years or more,10 years or more,N/A,2,10 years or more,Time in Canada,"Length/time in Canada since imm. (D, G)",,2.2.0,2025-06-30,active,,, +SDCGRES,SDCGRES_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Time in Canada,"Length/time in Canada since imm. (D, G)",,2.2.0,2025-06-30,active,,, +SDCGRES,SDCGRES_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Time in Canada,"Length/time in Canada since imm. (D, G)","CCHS 2001 missing don't know (7), refusal (8)",2.2.0,2025-06-30,active,,, +SDCGRES,SDCGRES_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,2,missing,missing,N/A,else,else,Time in Canada,"Length/time in Canada since imm. (D, G)",,2.2.0,2025-06-30,active,,, +SDCGRES_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,4.5,N/A,0 to 9 years,0 to 9 years,years,1,0 to 9 years,Time in Canada,"Length/time in Canada since imm. - continuous midpoint (D, G)","PUMF midpoint conversion: 0-9 years -> 4.5, 10+ years -> 15. Same databaseStart and variableStart as SDCGRES.",3.0.0,2026-04-09,active,,, +SDCGRES_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,15,N/A,10 years or more,10 years or more,years,2,10 years or more,Time in Canada,"Length/time in Canada since imm. - continuous midpoint (D, G)","PUMF midpoint conversion: 0-9 years -> 4.5, 10+ years -> 15. Same databaseStart and variableStart as SDCGRES.",3.0.0,2026-04-09,active,,, +SDCGRES_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,Time in Canada,"Length/time in Canada since imm. - continuous midpoint (D, G)","PUMF midpoint conversion: 0-9 years -> 4.5, 10+ years -> 15. Same databaseStart and variableStart as SDCGRES.",3.0.0,2026-04-09,active,,, +SDCGRES_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Time in Canada,"Length/time in Canada since imm. - continuous midpoint (D, G)","PUMF midpoint conversion: 0-9 years -> 4.5, 10+ years -> 15. Same databaseStart and variableStart as SDCGRES.",3.0.0,2026-04-09,active,,, +SDCGRES_cont,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, cchs2015_2016_p::SDCDGRES, cchs2017_2018_p::SDCDGRES, [SDCGRES]",,cat,NA::b,N/A,missing,missing,years,else,else,Time in Canada,"Length/time in Canada since imm. - continuous midpoint (D, G)","PUMF midpoint conversion: 0-9 years -> 4.5, 10+ years -> 15. Same databaseStart and variableStart as SDCGRES.",3.0.0,2026-04-09,active,,, +SLP_02,SLP_02_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02,SLP_02_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02,SLP_02_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02,SLP_02_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02,SLP_02_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,5,5,All the time,All the time,N/A,5,All the time,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02,SLP_02_cat5_NAa,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02,SLP_02_cat5_NAb,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02,SLP_02_cat5_NAb,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_010, cchs2017_2018_p::SLP_010, cchs2005_m::SLPE_02, cchs2015_2016_m::SLP_010, cchs2017_2018_m::SLP_010, [SLP_02]",ICES altered,cat,NA::b,5,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02_cat3,SLP_02_cat3_1,cat,"cchs2001_p, cchs2001_m",[GENA_04],ICES altered,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Trouble sleeping,Freq. - trouble sleeping,CCHS 2001 has different categories from other cycles,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02_cat3,SLP_02_cat3_2,cat,"cchs2001_p, cchs2001_m",[GENA_04],ICES altered,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02_cat3,SLP_02_cat3_3,cat,"cchs2001_p, cchs2001_m",[GENA_04],ICES altered,cat,3,3,Never,Never,N/A,3,Never,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02_cat3,SLP_02_cat3_NAa,cat,"cchs2001_p, cchs2001_m",[GENA_04],ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02_cat3,SLP_02_cat3_NAb,cat,"cchs2001_p, cchs2001_m",[GENA_04],ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_02_cat3,SLP_02_cat3_NAb,cat,"cchs2001_p, cchs2001_m",[GENA_04],ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Trouble sleeping,Freq. - trouble sleeping,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,5,5,All the time,All the time,N/A,5,All the time,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_NAa,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_NAb,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03,SLP_03_cat5_NAb,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_015, cchs2017_2018_p::SLP_015, cchs2005_m::SLPE_03, cchs2015_2016_m::SLP_015, cchs2017_2018_m::SLP_015, [SLP_03]",ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03_cat3,SLP_03_cat3_1,cat,"cchs2001_p, cchs2001_m",[GENA_05],ICES altered,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Sleep refreshing,Freq. - find sleep refreshing,CCHS 2001 has different categories from other cycles,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03_cat3,SLP_03_cat3_2,cat,"cchs2001_p, cchs2001_m",[GENA_05],ICES altered,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03_cat3,SLP_03_cat3_3,cat,"cchs2001_p, cchs2001_m",[GENA_05],ICES altered,cat,3,3,Never,Never,N/A,3,Never,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03_cat3,SLP_03_cat3_NAa,cat,"cchs2001_p, cchs2001_m",[GENA_05],ICES altered,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03_cat3,SLP_03_cat3_NAb,cat,"cchs2001_p, cchs2001_m",[GENA_05],ICES altered,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_03_cat3,SLP_03_cat3_NAb,cat,"cchs2001_p, cchs2001_m",[GENA_05],ICES altered,cat,NA::b,3,missing,missing,N/A,else,else,Sleep refreshing,Freq. - find sleep refreshing,,2.2.0,2025-06-30,active,v3.0.0alpha,, +SLP_04,SLP_04_cat5_1,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,1,5,None of the time,None of the time,N/A,1,None of the time,Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04,SLP_04_cat5_2,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,2,5,Little of the time,Little of the time,N/A,2,Little of the time,Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04,SLP_04_cat5_3,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04,SLP_04_cat5_4,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04,SLP_04_cat5_5,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,5,5,All the time,All the time,N/A,5,All the time,Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04,SLP_04_cat5_NAa,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04,SLP_04_cat5_NAb,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04,SLP_04_cat5_NAb,cat,"cchs2007_2008_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2015_2016_p::SLP_020, cchs2017_2018_p::SLP_020, cchs2005_m::SLPE_04, cchs2015_2016_m::SLP_020, cchs2017_2018_m::SLP_020, [SLP_04]",,cat,NA::b,5,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake,,2.2.0,2025-06-30,active,,, +SLP_04_cat3,SLP_04_cat3_1,cat,"cchs2001_p, cchs2001_m",[GENA_06],,cat,1,3,Most of the time,Most of the time,N/A,1,Most of the time,Difficulty awake,Freq. - diffficult to stay awake,CCHS 2001 has different categories from other cycles,2.1.0,2025-06-30,active,,, +SLP_04_cat3,SLP_04_cat3_2,cat,"cchs2001_p, cchs2001_m",[GENA_06],,cat,2,3,Sometimes,Sometimes,N/A,2,Sometimes,Difficulty awake,Freq. - diffficult to stay awake,,2.1.0,2025-06-30,active,,, +SLP_04_cat3,SLP_04_cat3_3,cat,"cchs2001_p, cchs2001_m",[GENA_06],,cat,3,3,Never,Never,N/A,3,Never,Difficulty awake,Freq. - diffficult to stay awake,,2.1.0,2025-06-30,active,,, +SLP_04_cat3,SLP_04_cat3_NAa,cat,"cchs2001_p, cchs2001_m",[GENA_06],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Difficulty awake,Freq. - diffficult to stay awake,,2.1.0,2025-06-30,active,,, +SLP_04_cat3,SLP_04_cat3_NAb,cat,"cchs2001_p, cchs2001_m",[GENA_06],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Difficulty awake,Freq. - diffficult to stay awake,,2.1.0,2025-06-30,active,,, +SLP_04_cat3,SLP_04_cat3_NAb,cat,"cchs2001_p, cchs2001_m",[GENA_06],,cat,NA::b,3,missing,missing,N/A,else,else,Difficulty awake,Freq. - diffficult to stay awake,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,1,11,<3 hours,<3 hours,Hours,1,<3 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_7,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_8,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_9,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_10,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_11,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_2015plus,SLPG01_2015plus_cat11_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p",[SLPG005],,cat,NA::b,11,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_1,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,1,12,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_2,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,2,12,2-<3 hours,2-<3 hours,Hours,2,2-<3 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_3,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,3,12,3-<4 hours,3-<4 hours,Hours,3,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_4,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,4,12,4-<5 hours,4-<5 hours,Hours,4,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_5,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,5,12,5-<6 hours,5-<6 hours,Hours,5,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_6,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,6,12,6-<7 hours,6-<7 hours,Hours,6,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_7,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,7,12,7-<8 hours,7-<8 hours,Hours,7,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_8,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,8,12,8-<9 hours,8-<9 hours,Hours,8,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_9,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,9,12,9-<10 hours,9-<10 hours,Hours,9,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_10,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,10,12,10-<11 hours,10-<11 hours,Hours,10,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_11,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,11,12,11-<12 hours,11-<12 hours,Hours,11,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_12,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,12,12,>= 12 hours,>= 12 hours,Hours,12,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_NAa,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,NA::a,12,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_NAb,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,NA::b,12,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cat12,SLPG01_cat12_cat12_NAb,cat,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,NA::b,12,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,1,N/A,<2 hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,2.5,N/A,2-<3 hours,convereted hours (2-<3 hours),Hours,2,convereted hours (2-<3 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,3.5,N/A,3-<4 hours,converted hours (3-<4 hours),Hours,3,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,4.5,N/A,4-<5 hours,converted hours (4-<5 hours),Hours,4,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,5.5,N/A,5-<6 hours,converted hours (5-<6 hours),Hours,5,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,6.5,N/A,6-<7 hours,converted hours (6-<7 hours),Hours,6,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,7.5,N/A,7-<8 hours,converted hours (7-<8 hours),Hours,7,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,8.5,N/A,8-<9 hours,converted hours (8-<9 hours),Hours,8,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,9.5,N/A,9-<10 hours,converted hours (9-<10 hours),Hours,9,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,10.5,N/A,10-<11 hours,converted hours (10-<11 hours),Hours,10,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,11.5,N/A,11-<12 hours,converted hours (11-<12 hours),Hours,11,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,13,N/A,>= 12 hours,converted hours (>= 12 hours),Hours,12,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2001_p, cchs2007_2008_p, cchs2001_m, cchs2005_m, cchs2007_2008_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2015_2016_m, cchs2017_2018_m","cchs2001_p::GENA_03, cchs2001_m::GENA_03, cchs2005_m::SLPE_01, cchs2015_2016_m::SLP_005, cchs2017_2018_m::SLP_005, [SLP_01]",,cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,1.5,N/A,<2 hours,converted hours (<2 hours),Hours,1,converted hours (<2 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,3.5,N/A,3-<4 hours,converted hours (3-<4 hours),Hours,2,converted hours (3-<4 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,4.5,N/A,4-<5 hours,converted hours (4-<5 hours),Hours,3,converted hours (4-<5 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,5.5,N/A,5-<6 hours,converted hours (5-<6 hours),Hours,4,converted hours (5-<6 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,6.5,N/A,6-<7 hours,converted hours (6-<7 hours),Hours,5,converted hours (6-<7 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,7.5,N/A,7-<8 hours,converted hours (7-<8 hours),Hours,6,converted hours (7-<8 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,8.5,N/A,8-<9 hours,converted hours (8-<9 hours),Hours,7,converted hours (8-<9 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,9.5,N/A,9-<10 hours,converted hours (9-<10 hours),Hours,8,converted hours (9-<10 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,10.5,N/A,10-<11 hours,converted hours (10-<11 hours),Hours,9,converted hours (10-<11 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,11.5,N/A,11-<12 hours,converted hours (11-<12 hours),Hours,10,converted hours (11-<12 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,13,N/A,>= 12 hours,converted hours (>= 12 hours),Hours,11,converted hours (>= 12 hours),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::a,N/A,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,N/A,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_cont,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SLPG005, cchs2017_2018_p::SLPG005, [SLPG01]",,cat,NA::b,N/A,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,2.1.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_1,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,1,11,<2 hours,<2 hours,Hours,1,<2 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_2,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,2,11,3-<4 hours,3-<4 hours,Hours,2,3-<4 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_3,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,3,11,4-<5 hours,4-<5 hours,Hours,3,4-<5 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_4,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,4,11,5-<6 hours,5-<6 hours,Hours,4,5-<6 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_5,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,5,11,6-<7 hours,6-<7 hours,Hours,5,6-<7 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_6,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,6,11,7-<8 hours,7-<8 hours,Hours,6,7-<8 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_7,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,7,11,8-<9 hours,8-<9 hours,Hours,7,8-<9 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_8,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,8,11,9-<10 hours,9-<10 hours,Hours,8,9-<10 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_9,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,9,11,10-<11 hours,10-<11 hours,Hours,9,10-<11 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_10,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,10,11,11-<12 hours,11-<12 hours,Hours,10,11-<12 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_11,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,11,11,>= 12 hours,>= 12 hours,Hours,11,>= 12 hours,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_NAa,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,NA::a,11,not applicable,not applicable,Hours,96,not applicable,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_NAb,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,NA::b,11,missing,missing,Hours,"[97,99]",don't know (97); refusal (98); not stated (99),Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SLPG01_pre2015,SLPG01_pre2015_cat11_NAb,cat,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m",[SLPG01],,cat,NA::b,11,missing,missing,Hours,else,else,Hours sleep,No./hours spent sleeping each night,,2.2.0,2025-06-30,active,,, +SMK_005,SMK_005_cat3_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",[SMK_005],,cat,1,3,Daily,Daily,N/A,1,Daily,Smoking freq (2015+),Type of smoker presently (2015+ era-specific name for SMK_202),BACKWARD COMPATIBILITY: Superseded by SMK_202. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_005 is the 2015+ era-specific name.,, +SMK_005,SMK_005_cat3_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",[SMK_005],,cat,2,3,Occasionally,Occasionally,N/A,2,Occasionally,Smoking freq (2015+),Type of smoker presently (2015+ era-specific name for SMK_202),BACKWARD COMPATIBILITY: Superseded by SMK_202. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_005 is the 2015+ era-specific name.,, +SMK_005,SMK_005_cat3_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",[SMK_005],,cat,3,3,Not at all,Not at all,N/A,3,Not at all,Smoking freq (2015+),Type of smoker presently (2015+ era-specific name for SMK_202),BACKWARD COMPATIBILITY: Superseded by SMK_202. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_005 is the 2015+ era-specific name.,, +SMK_005,SMK_005_cat3_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",[SMK_005],,cat,NA::a,3,not applicable,not applicable,N/A,6,not applicable,Smoking freq (2015+),Type of smoker presently (2015+ era-specific name for SMK_202),BACKWARD COMPATIBILITY: Superseded by SMK_202. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_005 is the 2015+ era-specific name.,, +SMK_005,SMK_005_cat3_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",[SMK_005],,cat,NA::b,3,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Smoking freq (2015+),Type of smoker presently (2015+ era-specific name for SMK_202),BACKWARD COMPATIBILITY: Superseded by SMK_202. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_005 is the 2015+ era-specific name.,, +SMK_005,SMK_005_cat3_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m",[SMK_005],,cat,NA::b,3,missing,missing,N/A,else,else,Smoking freq (2015+),Type of smoker presently (2015+ era-specific name for SMK_202),BACKWARD COMPATIBILITY: Superseded by SMK_202. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_005 is the 2015+ era-specific name.,, +SMK_01A,SMK_01A_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2019_2020_p::SMK_020, cchs2022_p::CSS_15, cchs2023_p::CSS_15, cchs2001_m::SMKA_01A, cchs2003_m::SMKC_01A, cchs2005_m::SMKE_01A, cchs2015_2016_m::SMK_020, cchs2017_2018_m::SMK_020, cchs2019_2020_m::SMK_020, cchs2021_m::SMK_020, cchs2022_m::CSS_15, cchs2023_m::CSS_15, [SMK_01A]",ICES confirmed,cat,1,2,Yes,Yes,N/A,1,Yes,Smoked 100+ cigs,Ever smoked 100 or more cigarettes in lifetime,"Available 2001-2021 PUMF, 2001-2023 Master. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via CSS_15. PUMF coverage unchanged (ends 2021). Pass-through categorical variable.,, +SMK_01A,SMK_01A_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2019_2020_p::SMK_020, cchs2022_p::CSS_15, cchs2023_p::CSS_15, cchs2001_m::SMKA_01A, cchs2003_m::SMKC_01A, cchs2005_m::SMKE_01A, cchs2015_2016_m::SMK_020, cchs2017_2018_m::SMK_020, cchs2019_2020_m::SMK_020, cchs2021_m::SMK_020, cchs2022_m::CSS_15, cchs2023_m::CSS_15, [SMK_01A]",ICES confirmed,cat,2,2,No,No,N/A,2,No,Smoked 100+ cigs,Ever smoked 100 or more cigarettes in lifetime,"Available 2001-2021 PUMF, 2001-2023 Master. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via CSS_15. PUMF coverage unchanged (ends 2021). Pass-through categorical variable.,, +SMK_01A,SMK_01A_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2019_2020_p::SMK_020, cchs2022_p::CSS_15, cchs2023_p::CSS_15, cchs2001_m::SMKA_01A, cchs2003_m::SMKC_01A, cchs2005_m::SMKE_01A, cchs2015_2016_m::SMK_020, cchs2017_2018_m::SMK_020, cchs2019_2020_m::SMK_020, cchs2021_m::SMK_020, cchs2022_m::CSS_15, cchs2023_m::CSS_15, [SMK_01A]",ICES confirmed,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Smoked 100+ cigs,Ever smoked 100 or more cigarettes in lifetime,"Available 2001-2021 PUMF, 2001-2023 Master. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via CSS_15. PUMF coverage unchanged (ends 2021). Pass-through categorical variable.,, +SMK_01A,SMK_01A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2019_2020_p::SMK_020, cchs2022_p::CSS_15, cchs2023_p::CSS_15, cchs2001_m::SMKA_01A, cchs2003_m::SMKC_01A, cchs2005_m::SMKE_01A, cchs2015_2016_m::SMK_020, cchs2017_2018_m::SMK_020, cchs2019_2020_m::SMK_020, cchs2021_m::SMK_020, cchs2022_m::CSS_15, cchs2023_m::CSS_15, [SMK_01A]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Smoked 100+ cigs,Ever smoked 100 or more cigarettes in lifetime,"Available 2001-2021 PUMF, 2001-2023 Master. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via CSS_15. PUMF coverage unchanged (ends 2021). Pass-through categorical variable.,, +SMK_01A,SMK_01A_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2019_2020_p::SMK_020, cchs2022_p::CSS_15, cchs2023_p::CSS_15, cchs2001_m::SMKA_01A, cchs2003_m::SMKC_01A, cchs2005_m::SMKE_01A, cchs2015_2016_m::SMK_020, cchs2017_2018_m::SMK_020, cchs2019_2020_m::SMK_020, cchs2021_m::SMK_020, cchs2022_m::CSS_15, cchs2023_m::CSS_15, [SMK_01A]",ICES confirmed,cat,NA::b,2,missing,missing,N/A,else,else,Smoked 100+ cigs,Ever smoked 100 or more cigarettes in lifetime,"Available 2001-2021 PUMF, 2001-2023 Master. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via CSS_15. PUMF coverage unchanged (ends 2021). Pass-through categorical variable.,, +SMK_01B,SMK_01B_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01B, cchs2003_p::SMKC_01B, cchs2005_p::SMKE_01B, cchs2015_2016_p::SMK_025, cchs2017_2018_p::SMK_025, cchs2019_2020_p::SMK_025, cchs2022_p::CSS_05, cchs2023_p::CSS_05, cchs2001_m::SMKA_01B, cchs2003_m::SMKC_01B, cchs2005_m::SMKE_01B, cchs2015_2016_m::SMK_025, cchs2017_2018_m::SMK_025, cchs2019_2020_m::SMK_025, cchs2021_m::SMK_025, cchs2022_m::CSS_05, cchs2023_m::CSS_05, [SMK_01B]",Yes,cat,1,2,Yes,Yes,N/A,1,Yes,Ever smoked whole cig,Ever smoked a whole cigarette,,3.0.0-alpha,2026-03-11,active,v3.0.0: 2015-2021 mapped to SMK_025; 2022-2023 Master mapped to CSS_05. 2022 PUMF (CSS_05) not yet verified in data - excluded from databaseStart pending confirmation.,, +SMK_01B,SMK_01B_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01B, cchs2003_p::SMKC_01B, cchs2005_p::SMKE_01B, cchs2015_2016_p::SMK_025, cchs2017_2018_p::SMK_025, cchs2019_2020_p::SMK_025, cchs2022_p::CSS_05, cchs2023_p::CSS_05, cchs2001_m::SMKA_01B, cchs2003_m::SMKC_01B, cchs2005_m::SMKE_01B, cchs2015_2016_m::SMK_025, cchs2017_2018_m::SMK_025, cchs2019_2020_m::SMK_025, cchs2021_m::SMK_025, cchs2022_m::CSS_05, cchs2023_m::CSS_05, [SMK_01B]",Yes,cat,2,2,No,No,N/A,2,No,Ever smoked whole cig,Ever smoked a whole cigarette,,3.0.0-alpha,2026-03-11,active,v3.0.0: 2015-2021 mapped to SMK_025; 2022-2023 Master mapped to CSS_05. 2022 PUMF (CSS_05) not yet verified in data - excluded from databaseStart pending confirmation.,, +SMK_01B,SMK_01B_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01B, cchs2003_p::SMKC_01B, cchs2005_p::SMKE_01B, cchs2015_2016_p::SMK_025, cchs2017_2018_p::SMK_025, cchs2019_2020_p::SMK_025, cchs2022_p::CSS_05, cchs2023_p::CSS_05, cchs2001_m::SMKA_01B, cchs2003_m::SMKC_01B, cchs2005_m::SMKE_01B, cchs2015_2016_m::SMK_025, cchs2017_2018_m::SMK_025, cchs2019_2020_m::SMK_025, cchs2021_m::SMK_025, cchs2022_m::CSS_05, cchs2023_m::CSS_05, [SMK_01B]",Yes,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever smoked whole cig,Ever smoked a whole cigarette,,3.0.0-alpha,2026-03-11,active,v3.0.0: 2015-2021 mapped to SMK_025; 2022-2023 Master mapped to CSS_05. 2022 PUMF (CSS_05) not yet verified in data - excluded from databaseStart pending confirmation.,, +SMK_01B,SMK_01B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01B, cchs2003_p::SMKC_01B, cchs2005_p::SMKE_01B, cchs2015_2016_p::SMK_025, cchs2017_2018_p::SMK_025, cchs2019_2020_p::SMK_025, cchs2022_p::CSS_05, cchs2023_p::CSS_05, cchs2001_m::SMKA_01B, cchs2003_m::SMKC_01B, cchs2005_m::SMKE_01B, cchs2015_2016_m::SMK_025, cchs2017_2018_m::SMK_025, cchs2019_2020_m::SMK_025, cchs2021_m::SMK_025, cchs2022_m::CSS_05, cchs2023_m::CSS_05, [SMK_01B]",Yes,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever smoked whole cig,Ever smoked a whole cigarette,,3.0.0-alpha,2026-03-11,active,v3.0.0: 2015-2021 mapped to SMK_025; 2022-2023 Master mapped to CSS_05. 2022 PUMF (CSS_05) not yet verified in data - excluded from databaseStart pending confirmation.,, +SMK_01B,SMK_01B_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01B, cchs2003_p::SMKC_01B, cchs2005_p::SMKE_01B, cchs2015_2016_p::SMK_025, cchs2017_2018_p::SMK_025, cchs2019_2020_p::SMK_025, cchs2022_p::CSS_05, cchs2023_p::CSS_05, cchs2001_m::SMKA_01B, cchs2003_m::SMKC_01B, cchs2005_m::SMKE_01B, cchs2015_2016_m::SMK_025, cchs2017_2018_m::SMK_025, cchs2019_2020_m::SMK_025, cchs2021_m::SMK_025, cchs2022_m::CSS_05, cchs2023_m::CSS_05, [SMK_01B]",Yes,cat,NA::b,2,missing,missing,N/A,else,else,Ever smoked whole cig,Ever smoked a whole cigarette,,3.0.0-alpha,2026-03-11,active,v3.0.0: 2015-2021 mapped to SMK_025; 2022-2023 Master mapped to CSS_05. 2022 PUMF (CSS_05) not yet verified in data - excluded from databaseStart pending confirmation.,, +SMK_01C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,copy,N/A,years,Age in years,years,"[8,99]",Age in years,Age 1st cig,Age smoked first whole cigarette,Evidence-based minimum age 8 (Holford et al.),3.0.0-alpha,2026-01-04,active,NEW: Age first cigarette (continuous) for Master files 2001-2023.,, +SMK_01C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age 1st cig,Age smoked first whole cigarette,,3.0.0-alpha,2026-01-04,active,NEW: Age first cigarette (continuous) for Master files 2001-2023.,, +SMK_01C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age 1st cig,Age smoked first whole cigarette,,3.0.0-alpha,2026-01-04,active,NEW: Age first cigarette (continuous) for Master files 2001-2023.,, +SMK_01C,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::b,N/A,missing,missing,years,else,else,Age 1st cig,Age smoked first whole cigarette,,3.0.0-alpha,2026-01-04,active,NEW: Age first cigarette (continuous) for Master files 2001-2023.,, +SMK_030,SMK_030_cat2_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_030]",,cat,1,2,Yes,Yes,N/A,1,Yes,Ever daily (2015+),Smoked daily - lifetime (2015+ era-specific name for SMK_05D),BACKWARD COMPATIBILITY: Superseded by SMK_05D. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_030 is the 2015+ era-specific name.,, +SMK_030,SMK_030_cat2_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_030]",,cat,2,2,No,No,N/A,2,No,Ever daily (2015+),Smoked daily - lifetime (2015+ era-specific name for SMK_05D),BACKWARD COMPATIBILITY: Superseded by SMK_05D. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_030 is the 2015+ era-specific name.,, +SMK_030,SMK_030_cat2_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_030]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever daily (2015+),Smoked daily - lifetime (2015+ era-specific name for SMK_05D),BACKWARD COMPATIBILITY: Superseded by SMK_05D. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_030 is the 2015+ era-specific name.,, +SMK_030,SMK_030_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_030]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever daily (2015+),Smoked daily - lifetime (2015+ era-specific name for SMK_05D),BACKWARD COMPATIBILITY: Superseded by SMK_05D. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_030 is the 2015+ era-specific name.,, +SMK_030,SMK_030_cat2_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_030]",,cat,NA::b,2,missing,missing,N/A,else,else,Ever daily (2015+),Smoked daily - lifetime (2015+ era-specific name for SMK_05D),BACKWARD COMPATIBILITY: Superseded by SMK_05D. Era-specific pass-through (2015-2018 PUMF and Master).,3.0.0-alpha,2026-01-05,active,v3.0.0: Maintained for backward compatibility. SMK_030 is the 2015+ era-specific name.,, +SMK_040,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","DerivedVar::[SMK_203, SMK_207]",,N/A,Func::calculate_SMKG040_cont,N/A,N/A,Age in years,years,N/A,Age in years,Age daily (ever),Age started smoking cigarettes daily (all ever-daily smokers),Evidence-based minimum age 8 (Holford et al.),3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, ever-daily) for Master 2001-2023.",, +SMK_040,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","DerivedVar::[SMK_203, SMK_207]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (ever),Age started smoking cigarettes daily (all ever-daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, ever-daily) for Master 2001-2023.",, +SMK_040,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","DerivedVar::[SMK_203, SMK_207]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (ever),Age started smoking cigarettes daily (all ever-daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, ever-daily) for Master 2001-2023.",, +SMK_040,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,copy,N/A,years,Age in years,years,"[8,99]",Age in years,Age daily (ever),Age started smoking cigarettes daily (all ever-daily smokers),Evidence-based minimum age 8 (Holford et al.),3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, ever-daily) for Master 2001-2023.",, +SMK_040,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age daily (ever),Age started smoking cigarettes daily (all ever-daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, ever-daily) for Master 2001-2023.",, +SMK_040,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (ever),Age started smoking cigarettes daily (all ever-daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, ever-daily) for Master 2001-2023.",, +SMK_040,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,NA::b,N/A,missing,missing,years,else,else,Age daily (ever),Age started smoking cigarettes daily (all ever-daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, ever-daily) for Master 2001-2023.",, +SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, cchs2019_2020_p::SMK_050, cchs2022_p::CSS_30, cchs2023_p::CSS_30, cchs2001_m::SMKA_05B, cchs2003_m::SMKC_05B, cchs2005_m::SMKE_05B, cchs2015_2016_m::SMK_050, cchs2017_2018_m::SMK_050, cchs2019_2020_m::SMK_050, cchs2021_m::SMK_050, cchs2022_m::CSS_30, cchs2023_m::CSS_30, [SMK_05B]",ICES confirmed,cont,copy,N/A,Cigs/day - occ,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - occasional smoker,Cigs/day (occ),Number of cigarettes smoked daily - occasional smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, cchs2019_2020_p::SMK_050, cchs2022_p::CSS_30, cchs2023_p::CSS_30, cchs2001_m::SMKA_05B, cchs2003_m::SMKC_05B, cchs2005_m::SMKE_05B, cchs2015_2016_m::SMK_050, cchs2017_2018_m::SMK_050, cchs2019_2020_m::SMK_050, cchs2021_m::SMK_050, cchs2022_m::CSS_30, cchs2023_m::CSS_30, [SMK_05B]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,Cigs/day (occ),Number of cigarettes smoked daily - occasional smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, cchs2019_2020_p::SMK_050, cchs2022_p::CSS_30, cchs2023_p::CSS_30, cchs2001_m::SMKA_05B, cchs2003_m::SMKC_05B, cchs2005_m::SMKE_05B, cchs2015_2016_m::SMK_050, cchs2017_2018_m::SMK_050, cchs2019_2020_m::SMK_050, cchs2021_m::SMK_050, cchs2022_m::CSS_30, cchs2023_m::CSS_30, [SMK_05B]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),Cigs/day (occ),Number of cigarettes smoked daily - occasional smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05B,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, cchs2019_2020_p::SMK_050, cchs2022_p::CSS_30, cchs2023_p::CSS_30, cchs2001_m::SMKA_05B, cchs2003_m::SMKC_05B, cchs2005_m::SMKE_05B, cchs2015_2016_m::SMK_050, cchs2017_2018_m::SMK_050, cchs2019_2020_m::SMK_050, cchs2021_m::SMK_050, cchs2022_m::CSS_30, cchs2023_m::CSS_30, [SMK_05B]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,Cigs/day (occ),Number of cigarettes smoked daily - occasional smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, cchs2019_2020_p::SMK_055, cchs2022_p::CSS_35, cchs2023_p::CSS_35, cchs2001_m::SMKA_05C, cchs2003_m::SMKC_05C, cchs2005_m::SMKE_05C, cchs2015_2016_m::SMK_055, cchs2017_2018_m::SMK_055, cchs2019_2020_m::SMK_055, cchs2021_m::SMK_055, cchs2022_m::CSS_35, cchs2023_m::CSS_35, [SMK_05C]",ICES confirmed,cont,copy,N/A,Days smoked >= 1 cig,# days smoked at least 1 cigarette,days,"[0,31]",# days smoked at least 1 cigarette,Days smoked/month,Days smoked at least 1 cigarette in past month,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, cchs2019_2020_p::SMK_055, cchs2022_p::CSS_35, cchs2023_p::CSS_35, cchs2001_m::SMKA_05C, cchs2003_m::SMKC_05C, cchs2005_m::SMKE_05C, cchs2015_2016_m::SMK_055, cchs2017_2018_m::SMK_055, cchs2019_2020_m::SMK_055, cchs2021_m::SMK_055, cchs2022_m::CSS_35, cchs2023_m::CSS_35, [SMK_05C]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,days,96,not applicable,Days smoked/month,Days smoked at least 1 cigarette in past month,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, cchs2019_2020_p::SMK_055, cchs2022_p::CSS_35, cchs2023_p::CSS_35, cchs2001_m::SMKA_05C, cchs2003_m::SMKC_05C, cchs2005_m::SMKE_05C, cchs2015_2016_m::SMK_055, cchs2017_2018_m::SMK_055, cchs2019_2020_m::SMK_055, cchs2021_m::SMK_055, cchs2022_m::CSS_35, cchs2023_m::CSS_35, [SMK_05C]",ICES confirmed,cont,NA::b,N/A,missing,missing,days,"[97,99]",don't know (97); refusal (98); not stated (99),Days smoked/month,Days smoked at least 1 cigarette in past month,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05C,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, cchs2019_2020_p::SMK_055, cchs2022_p::CSS_35, cchs2023_p::CSS_35, cchs2001_m::SMKA_05C, cchs2003_m::SMKC_05C, cchs2005_m::SMKE_05C, cchs2015_2016_m::SMK_055, cchs2017_2018_m::SMK_055, cchs2019_2020_m::SMK_055, cchs2021_m::SMK_055, cchs2022_m::CSS_35, cchs2023_m::CSS_35, [SMK_05C]",ICES confirmed,cont,NA::b,N/A,missing,missing,days,else,else,Days smoked/month,Days smoked at least 1 cigarette in past month,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_05D,SMK_05D_cat2_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, cchs2019_2020_p::SMK_030, cchs2001_m::SMKA_05D, cchs2003_m::SMKC_05D, cchs2005_m::SMKE_05D, cchs2015_2016_m::SMK_030, cchs2017_2018_m::SMK_030, cchs2019_2020_m::SMK_030, cchs2021_m::SMK_030, cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_05D]",,cat,1,2,Yes,Occasional smoker who previously smoked daily,N/A,1,Yes,Ever daily (occ),Ever smoked cigarettes daily (asked of occasional smokers),"Available 2001-2021 PUMF, 2001-2023 Master. Universe: occasional and non-smokers. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via SPU_05. PUMF coverage unchanged (ends 2021). Source variable changed from SMK_05D to SMK_030 in 2015.,, +SMK_05D,SMK_05D_cat2_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, cchs2019_2020_p::SMK_030, cchs2001_m::SMKA_05D, cchs2003_m::SMKC_05D, cchs2005_m::SMKE_05D, cchs2015_2016_m::SMK_030, cchs2017_2018_m::SMK_030, cchs2019_2020_m::SMK_030, cchs2021_m::SMK_030, cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_05D]",,cat,2,2,No,Occasional smoker never daily,N/A,2,No,Ever daily (occ),Ever smoked cigarettes daily (asked of occasional smokers),"Available 2001-2021 PUMF, 2001-2023 Master. Universe: occasional and non-smokers. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via SPU_05. PUMF coverage unchanged (ends 2021). Source variable changed from SMK_05D to SMK_030 in 2015.,, +SMK_05D,SMK_05D_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, cchs2019_2020_p::SMK_030, cchs2001_m::SMKA_05D, cchs2003_m::SMKC_05D, cchs2005_m::SMKE_05D, cchs2015_2016_m::SMK_030, cchs2017_2018_m::SMK_030, cchs2019_2020_m::SMK_030, cchs2021_m::SMK_030, cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_05D]",,cat,NA::a,2,not applicable,not applicable,N/A,6,not applicable,Ever daily (occ),Ever smoked cigarettes daily (asked of occasional smokers),"Available 2001-2021 PUMF, 2001-2023 Master. Universe: occasional and non-smokers. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via SPU_05. PUMF coverage unchanged (ends 2021). Source variable changed from SMK_05D to SMK_030 in 2015.,, +SMK_05D,SMK_05D_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, cchs2019_2020_p::SMK_030, cchs2001_m::SMKA_05D, cchs2003_m::SMKC_05D, cchs2005_m::SMKE_05D, cchs2015_2016_m::SMK_030, cchs2017_2018_m::SMK_030, cchs2019_2020_m::SMK_030, cchs2021_m::SMK_030, cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_05D]",,cat,NA::b,2,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Ever daily (occ),Ever smoked cigarettes daily (asked of occasional smokers),"Available 2001-2021 PUMF, 2001-2023 Master. Universe: occasional and non-smokers. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via SPU_05. PUMF coverage unchanged (ends 2021). Source variable changed from SMK_05D to SMK_030 in 2015.,, +SMK_05D,SMK_05D_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, cchs2019_2020_p::SMK_030, cchs2001_m::SMKA_05D, cchs2003_m::SMKC_05D, cchs2005_m::SMKE_05D, cchs2015_2016_m::SMK_030, cchs2017_2018_m::SMK_030, cchs2019_2020_m::SMK_030, cchs2021_m::SMK_030, cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_05D]",,cat,NA::b,2,missing,missing,N/A,else,else,Ever daily (occ),Ever smoked cigarettes daily (asked of occasional smokers),"Available 2001-2021 PUMF, 2001-2023 Master. Universe: occasional and non-smokers. For 2022-2023 PUMF analyses, use SMKDSTY-based variables.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage via SPU_05. PUMF coverage unchanged (ends 2021). Source variable changed from SMK_05D to SMK_030 in 2015.,, +SMK_06A_2001,SMK_06A_2001_cat4_1,cat,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,When stopped smoking - former occ. smokers (2001),When stopped smoking - former occasional smokers (2001),,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2001,SMK_06A_2001_cat4_2,cat,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,When stopped smoking - former occ. smokers (2001),When stopped smoking - former occasional smokers (2001),,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2001,SMK_06A_2001_cat4_3,cat,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,When stopped smoking - former occ. smokers (2001),When stopped smoking - former occasional smokers (2001),,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2001,SMK_06A_2001_cat4_4,cat,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,When stopped smoking - former occ. smokers (2001),When stopped smoking - former occasional smokers (2001),,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2001,SMK_06A_2001_cat4_NAa,cat,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,When stopped smoking - former occ. smokers (2001),When stopped smoking - former occasional smokers (2001),,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2001,SMK_06A_2001_cat4_NAb,cat,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),When stopped smoking - former occ. smokers (2001),When stopped smoking - former occasional smokers (2001),,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2001,SMK_06A_2001_cat4_NAb,cat,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,NA::b,4,missing,missing,years,else,else,When stopped smoking - former occ. smokers (2001),When stopped smoking - former occasional smokers (2001),,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2003plus,SMK_06A_2003plus_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year,When stopped smoking - former occ. smokers (2003+),"When stopped smoking - former occasional smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2003plus,SMK_06A_2003plus_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,2,4,1 to 2 years,1 year to less than 2 years ago,years,2,1 year to < 2 years,When stopped smoking - former occ. smokers (2003+),"When stopped smoking - former occasional smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2003plus,SMK_06A_2003plus_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,3,4,2 to 3 years,2 years to less than 3 years ago,years,3,2 years to < 3 years,When stopped smoking - former occ. smokers (2003+),"When stopped smoking - former occasional smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2003plus,SMK_06A_2003plus_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,4,4,>= 3 years,3 or more years ago,years,4,3 or more years,When stopped smoking - former occ. smokers (2003+),"When stopped smoking - former occasional smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2003plus,SMK_06A_2003plus_cat4_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,When stopped smoking - former occ. smokers (2003+),"When stopped smoking - former occasional smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2003plus,SMK_06A_2003plus_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),When stopped smoking - former occ. smokers (2003+),"When stopped smoking - former occasional smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_2003plus,SMK_06A_2003plus_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,NA::b,4,missing,missing,years,else,else,When stopped smoking - former occ. smokers (2003+),"When stopped smoking - former occasional smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_06A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,0.5,4,<1 year,Less than 1 year ago,years,1,Less than 1 year,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)","2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-10,active,Fixed to use direct mapping per v2.1 pattern.,, +SMK_06A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,1.5,4,1-2 years,1 to less than 2 years ago,years,2,1-2 years,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)","2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-10,active,Fixed to use direct mapping per v2.1 pattern.,, +SMK_06A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,4,4,3-5 years,2 to less than 3 years ago,years,3,3-5 years,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)","2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-10,active,Fixed to use direct mapping per v2.1 pattern.,, +SMK_06A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,15,4,>5 years,3 or more years ago,years,4,>5 years,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)","2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-10,active,Fixed to use direct mapping per v2.1 pattern.,, +SMK_06A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)","2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-10,active,Fixed to use direct mapping per v2.1 pattern.,, +SMK_06A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)","2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-10,active,Fixed to use direct mapping per v2.1 pattern.,, +SMK_06A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_06A],,cat,NA::b,4,missing,missing,years,else,else,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)","2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-10,active,Fixed to use direct mapping per v2.1 pattern.,, +SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,0.5,4,<1 year,Less than 1 year ago,years,1,Less than 1 year,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)",Midpoint conversion: cat 1 -> 0.5 years,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,1.5,4,1-2 years,1 to less than 2 years ago,years,2,1-2 years,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)",Midpoint conversion: cat 2 -> 1.5 years,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,2.5,4,2-3 years,2 to less than 3 years ago,years,3,2-3 years,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)",Midpoint conversion: cat 3 -> 2.5 years,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,5,4,3+ years,3 or more years ago,years,4,3+ years,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)",Midpoint conversion: cat 4 -> 4 years (conservative),3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)",,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)",,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_06A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]",,cat,NA::b,4,missing,missing,years,else,else,Yrs quit (occ),"Years since stopped smoking (former occasional smokers, continuous)",,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_06C,N/A,cont,cchs2001_m,[SMKA_06A],,cat,0.5,4,<1 year,Less than 1 year ago,years,1,Less than 1 year,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_06A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_06C,N/A,cont,cchs2001_m,[SMKA_06A],,cat,1.5,4,1-2 years,1 to 2 years ago,years,2,1-2 years,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_06A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_06C,N/A,cont,cchs2001_m,[SMKA_06A],,cat,4,4,3-5 years,2 to less than 3 years ago,years,3,3-5 years,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_06A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_06C,N/A,cont,cchs2001_m,[SMKA_06A],,cat,15,4,>5 years,3 or more years ago,years,4,>5 years,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_06A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_06C,N/A,cont,cchs2001_m,[SMKA_06A],,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_06A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_06C,N/A,cont,cchs2001_m,[SMKA_06A],,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_06A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_06C,N/A,cont,cchs2001_m,[SMKA_06A],,cat,NA::b,4,missing,missing,years,else,else,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_06A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_06C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, cchs2015_2016_m::SMK_070, cchs2017_2018_m::SMK_070, cchs2019_2020_m::SMK_070, cchs2021_m::SMK_070, [SMK_06C]",,cont,copy,N/A,years,Actual years from continuous source variable,years,copy,years,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),Master: pass-through from continuous source variable,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_06C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, cchs2015_2016_m::SMK_070, cchs2017_2018_m::SMK_070, cchs2019_2020_m::SMK_070, cchs2021_m::SMK_070, [SMK_06C]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_06C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, cchs2015_2016_m::SMK_070, cchs2017_2018_m::SMK_070, cchs2019_2020_m::SMK_070, cchs2021_m::SMK_070, [SMK_06C]",,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_06C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, cchs2015_2016_m::SMK_070, cchs2017_2018_m::SMK_070, cchs2019_2020_m::SMK_070, cchs2021_m::SMK_070, [SMK_06C]",,cont,NA::b,N/A,missing,missing,years,else,else,Yrs quit occ,Years since stopped smoking - never daily occasional (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_09A_2001,SMK_09A_2001_cat4_1,cat,"cchs2001_p, cchs2001_m",[SMKA_09A],ICES confirmed,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,When stopped daily - former daily smokers (4-cat) (2001),"When stopped smoking daily - former daily smokers, harmonized to 4 categories (2001)",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2001,SMK_09A_2001_cat4_2,cat,"cchs2001_p, cchs2001_m",[SMKA_09A],ICES confirmed,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,When stopped daily - former daily smokers (4-cat) (2001),"When stopped smoking daily - former daily smokers, harmonized to 4 categories (2001)",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2001,SMK_09A_2001_cat4_3,cat,"cchs2001_p, cchs2001_m",[SMKA_09A],ICES confirmed,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,When stopped daily - former daily smokers (4-cat) (2001),"When stopped smoking daily - former daily smokers, harmonized to 4 categories (2001)",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2001,SMK_09A_2001_cat4_4,cat,"cchs2001_p, cchs2001_m",[SMKA_09A],ICES confirmed,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,When stopped daily - former daily smokers (4-cat) (2001),"When stopped smoking daily - former daily smokers, harmonized to 4 categories (2001)",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2001,SMK_09A_2001_cat4_NAa,cat,"cchs2001_p, cchs2001_m",[SMKA_09A],ICES confirmed,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,When stopped daily - former daily smokers (4-cat) (2001),"When stopped smoking daily - former daily smokers, harmonized to 4 categories (2001)",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2001,SMK_09A_2001_cat4_NAb,cat,"cchs2001_p, cchs2001_m",[SMKA_09A],ICES confirmed,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),When stopped daily - former daily smokers (4-cat) (2001),"When stopped smoking daily - former daily smokers, harmonized to 4 categories (2001)",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2001,SMK_09A_2001_cat4_NAb,cat,"cchs2001_p, cchs2001_m",[SMKA_09A],ICES confirmed,cat,NA::b,4,missing,missing,years,else,else,When stopped daily - former daily smokers (4-cat) (2001),"When stopped smoking daily - former daily smokers, harmonized to 4 categories (2001)",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2003plus,SMK_09A_2003plus_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",ICES confirmed,cat,1,4,<1 year,Less than one year ago,years,1,Less than 1 year,When stopped daily - former daily smokers (2003+),"When stopped smoking daily - former daily smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2003plus,SMK_09A_2003plus_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",ICES confirmed,cat,2,4,1 to <2 years,1 year to less than 2 years ago,years,2,1 to <2 years,When stopped daily - former daily smokers (2003+),"When stopped smoking daily - former daily smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2003plus,SMK_09A_2003plus_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",ICES confirmed,cat,3,4,2 to <3 years,2 years to less than 3 years ago,years,3,2 to <3 years,When stopped daily - former daily smokers (2003+),"When stopped smoking daily - former daily smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2003plus,SMK_09A_2003plus_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",ICES confirmed,cat,4,4,3 or more years,3 or more years ago,years,4,3 or more years,When stopped daily - former daily smokers (2003+),"When stopped smoking daily - former daily smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2003plus,SMK_09A_2003plus_cat4_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",ICES confirmed,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,When stopped daily - former daily smokers (2003+),"When stopped smoking daily - former daily smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2003plus,SMK_09A_2003plus_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",ICES confirmed,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),When stopped daily - former daily smokers (2003+),"When stopped smoking daily - former daily smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_2003plus,SMK_09A_2003plus_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",ICES confirmed,cat,NA::b,4,missing,missing,years,else,else,When stopped daily - former daily smokers (2003+),"When stopped smoking daily - former daily smokers, 2003 onward",,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_09A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_09A],,cat,0.5,4,<1 year,converted age - Less than one year ago,years,1,Less than one year ago,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_09A],,cat,1.5,4,1 to <2 years,converted age - 1 year to 2 years ago,years,2,1 year to 2 years ago,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_09A],,cat,4,4,3 to 5 years,converted age - 3 years to 5 years ago,years,3,3 years to 5 years ago,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_09A],,cat,15,4,> 5 years,converted age - More than 5 years ago,years,4,More than 5 years ago,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_09A],,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_09A],,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2001_p, cchs2001_m",[SMKA_09A],,cat,NA::b,4,missing,missing,years,else,else,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",,cat,0.5,4,<1 year,converted age - Less than one year ago,years,1,Less than 1 year,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),,3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",,cat,1.5,4,1 to <2 years,converted age - 1 year to less than 2 years ago,years,2,1 to <2 years,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),,3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",,cat,2.5,4,2 to <3 years,converted age - 2 years to less than 3 years ago,years,3,2 to <3 years,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),,3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",,cat,5,4,3 or more years,converted age - 3 or more years ago,years,4,3 years or more,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),,3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),,3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),,3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]",,cat,NA::b,4,missing,missing,years,else,else,Yrs quit daily,Years since stopped smoking daily - former daily (continuous derived),,3.0.0-alpha,2026-01-04,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_09C,N/A,cont,cchs2001_m,[SMKA_09A],,cat,0.5,4,<1 year,Less than 1 year ago,years,1,Less than 1 year,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_09A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_09C,N/A,cont,cchs2001_m,[SMKA_09A],,cat,1.5,4,1-2 years,1 to 2 years ago,years,2,1-2 years,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_09A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_09C,N/A,cont,cchs2001_m,[SMKA_09A],,cat,4,4,3-5 years,2 to less than 3 years ago,years,3,3-5 years,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_09A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_09C,N/A,cont,cchs2001_m,[SMKA_09A],,cat,15,4,>5 years,3 or more years ago,years,4,>5 years,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_09A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_09C,N/A,cont,cchs2001_m,[SMKA_09A],,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_09A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_09C,N/A,cont,cchs2001_m,[SMKA_09A],,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_09A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_09C,N/A,cont,cchs2001_m,[SMKA_09A],,cat,NA::b,4,missing,missing,years,else,else,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),"2001 categories differ from 2003+: cat 3='3-5 years' (not '2-3 years'), cat 4='>5 years' (not '3+ years'). Gap at 2-3 years handled by interviewer rounding. Cat 4 midpoint (15) based on empirical distribution from 2003-2008 grouped PUMF data where ~78% of >5yr quitters were 11+ years. See 2001_category_discrepancy.md.",3.0.0-alpha,2026-02-22,active,2001 Master: midpoint imputation from SMKA_09A (no continuous companion in 2001). DDI shows different category labels for 2001 vs 2003+ - verify.,, +SMK_09C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",,cont,copy,N/A,years,Actual years from continuous source variable,years,copy,years,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),Master: pass-through from continuous source variable,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_09C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_09C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_09C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",,cont,NA::b,N/A,missing,missing,years,else,else,Yrs quit daily,Years since stopped smoking daily - former daily (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_10_gate,SMK_10_gate_cat2_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_p::SMKC_10, cchs2005_p::SMKE_10, cchs2015_2016_p::SMK_095, cchs2017_2018_p::SMK_095, cchs2019_2020_p::SMK_095, cchs2003_m::SMKC_10, cchs2005_m::SMKE_10, cchs2015_2016_m::SMK_095, cchs2017_2018_m::SMK_095, cchs2019_2020_m::SMK_095, cchs2021_m::SMK_095, cchs2022_m::SPU_30, cchs2023_m::SPU_30, [SMK_10]",,cat,1,2,Yes,Quit completely when stopped daily,,1,Yes,Quit gate,Quit completely when stopped daily (gate variable),,3.0.0-alpha,2026-01-04,active,"NEW: Quit gate (quit completely when stopped daily). Master/PUMF 2003-2023. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_10_gate,SMK_10_gate_cat2_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_p::SMKC_10, cchs2005_p::SMKE_10, cchs2015_2016_p::SMK_095, cchs2017_2018_p::SMK_095, cchs2019_2020_p::SMK_095, cchs2003_m::SMKC_10, cchs2005_m::SMKE_10, cchs2015_2016_m::SMK_095, cchs2017_2018_m::SMK_095, cchs2019_2020_m::SMK_095, cchs2021_m::SMK_095, cchs2022_m::SPU_30, cchs2023_m::SPU_30, [SMK_10]",,cat,2,2,No,Continued occasional smoking,,2,No,Quit gate,Quit completely when stopped daily (gate variable),,3.0.0-alpha,2026-01-04,active,"NEW: Quit gate (quit completely when stopped daily). Master/PUMF 2003-2023. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_10_gate,SMK_10_gate_cat2_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_p::SMKC_10, cchs2005_p::SMKE_10, cchs2015_2016_p::SMK_095, cchs2017_2018_p::SMK_095, cchs2019_2020_p::SMK_095, cchs2003_m::SMKC_10, cchs2005_m::SMKE_10, cchs2015_2016_m::SMK_095, cchs2017_2018_m::SMK_095, cchs2019_2020_m::SMK_095, cchs2021_m::SMK_095, cchs2022_m::SPU_30, cchs2023_m::SPU_30, [SMK_10]",,cat,NA::a,2,not applicable,not applicable,,6,not applicable,Quit gate,Quit completely when stopped daily (gate variable),,3.0.0-alpha,2026-01-04,active,"NEW: Quit gate (quit completely when stopped daily). Master/PUMF 2003-2023. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_10_gate,SMK_10_gate_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_p::SMKC_10, cchs2005_p::SMKE_10, cchs2015_2016_p::SMK_095, cchs2017_2018_p::SMK_095, cchs2019_2020_p::SMK_095, cchs2003_m::SMKC_10, cchs2005_m::SMKE_10, cchs2015_2016_m::SMK_095, cchs2017_2018_m::SMK_095, cchs2019_2020_m::SMK_095, cchs2021_m::SMK_095, cchs2022_m::SPU_30, cchs2023_m::SPU_30, [SMK_10]",,cat,NA::b,2,missing,missing,,else,else,Quit gate,Quit completely when stopped daily (gate variable),,3.0.0-alpha,2026-01-04,active,"NEW: Quit gate (quit completely when stopped daily). Master/PUMF 2003-2023. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_10_gate,SMK_10_gate_cat2_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_p::SMKC_10, cchs2005_p::SMKE_10, cchs2015_2016_p::SMK_095, cchs2017_2018_p::SMK_095, cchs2019_2020_p::SMK_095, cchs2003_m::SMKC_10, cchs2005_m::SMKE_10, cchs2015_2016_m::SMK_095, cchs2017_2018_m::SMK_095, cchs2019_2020_m::SMK_095, cchs2021_m::SMK_095, cchs2022_m::SPU_30, cchs2023_m::SPU_30, [SMK_10]",,cat,NA::b,2,missing,missing,,"[7,9]",don't know (7); refusal (8); not stated (9),Quit gate,Quit completely when stopped daily (gate variable),,3.0.0-alpha,2026-01-04,active,"NEW: Quit gate (quit completely when stopped daily). Master/PUMF 2003-2023. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_10A_2015plus,SMK_10A_2015plus_cat4_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2023_m::SPU_35, [SMK_100]",,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year,When quit completely - former daily reducers,When quit completely - former daily smokers who continued as occasional,,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). 2015+ categories.,, +SMK_10A_2015plus,SMK_10A_2015plus_cat4_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2023_m::SPU_35, [SMK_100]",,cat,2,4,1 to <2 years,1 year to less than 2 years ago,years,2,1 year to <2 years,When quit completely - former daily reducers,When quit completely - former daily smokers who continued as occasional,,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). 2015+ categories.,, +SMK_10A_2015plus,SMK_10A_2015plus_cat4_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2023_m::SPU_35, [SMK_100]",,cat,3,4,2 to <3 years,2 years to less than 3 years ago,years,3,2 years to <3 years,When quit completely - former daily reducers,When quit completely - former daily smokers who continued as occasional,,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). 2015+ categories.,, +SMK_10A_2015plus,SMK_10A_2015plus_cat4_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2023_m::SPU_35, [SMK_100]",,cat,4,4,>=3 years,3 or more years ago,years,4,3 or more years,When quit completely - former daily reducers,When quit completely - former daily smokers who continued as occasional,,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). 2015+ categories.,, +SMK_10A_2015plus,SMK_10A_2015plus_cat4_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2023_m::SPU_35, [SMK_100]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,When quit completely - former daily reducers,When quit completely - former daily smokers who continued as occasional,,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). 2015+ categories.,, +SMK_10A_2015plus,SMK_10A_2015plus_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2023_m::SPU_35, [SMK_100]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),When quit completely - former daily reducers,When quit completely - former daily smokers who continued as occasional,,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). 2015+ categories.,, +SMK_10A_2015plus,SMK_10A_2015plus_cat4_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2023_m::SPU_35, [SMK_100]",,cat,NA::b,4,missing,missing,years,else,else,When quit completely - former daily reducers,When quit completely - former daily smokers who continued as occasional,,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). 2015+ categories.,, +SMK_10A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, cchs2019_2020_p::SMK_100, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, cchs2015_2016_m::SMK_100, cchs2017_2018_m::SMK_100, cchs2019_2020_m::SMK_100, cchs2021_m::SMK_100, cchs2023_m::SPU_35, [SMK_10A]",,cat,0.5,4,<1 year,Less than 1 year ago,years,1,Less than 1 year,Yrs quit (reducer),"Years since quit completely (former daily who continued occasional, continuous)",Midpoint conversion: cat 1 -> 0.5 years,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_10A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, cchs2019_2020_p::SMK_100, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, cchs2015_2016_m::SMK_100, cchs2017_2018_m::SMK_100, cchs2019_2020_m::SMK_100, cchs2021_m::SMK_100, cchs2023_m::SPU_35, [SMK_10A]",,cat,1.5,4,1-2 years,1 to less than 2 years ago,years,2,1-2 years,Yrs quit (reducer),"Years since quit completely (former daily who continued occasional, continuous)",Midpoint conversion: cat 2 -> 1.5 years,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_10A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, cchs2019_2020_p::SMK_100, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, cchs2015_2016_m::SMK_100, cchs2017_2018_m::SMK_100, cchs2019_2020_m::SMK_100, cchs2021_m::SMK_100, cchs2023_m::SPU_35, [SMK_10A]",,cat,2.5,4,2-3 years,2 to less than 3 years ago,years,3,2-3 years,Yrs quit (reducer),"Years since quit completely (former daily who continued occasional, continuous)",Midpoint conversion: cat 3 -> 2.5 years,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_10A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, cchs2019_2020_p::SMK_100, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, cchs2015_2016_m::SMK_100, cchs2017_2018_m::SMK_100, cchs2019_2020_m::SMK_100, cchs2021_m::SMK_100, cchs2023_m::SPU_35, [SMK_10A]",,cat,5,4,3+ years,3 or more years ago,years,4,3+ years,Yrs quit (reducer),"Years since quit completely (former daily who continued occasional, continuous)",Midpoint conversion: cat 4 -> 4 years (conservative),3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_10A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, cchs2019_2020_p::SMK_100, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, cchs2015_2016_m::SMK_100, cchs2017_2018_m::SMK_100, cchs2019_2020_m::SMK_100, cchs2021_m::SMK_100, cchs2023_m::SPU_35, [SMK_10A]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Yrs quit (reducer),"Years since quit completely (former daily who continued occasional, continuous)",,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_10A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, cchs2019_2020_p::SMK_100, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, cchs2015_2016_m::SMK_100, cchs2017_2018_m::SMK_100, cchs2019_2020_m::SMK_100, cchs2021_m::SMK_100, cchs2023_m::SPU_35, [SMK_10A]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit (reducer),"Years since quit completely (former daily who continued occasional, continuous)",,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_10A_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, cchs2019_2020_p::SMK_100, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, cchs2015_2016_m::SMK_100, cchs2017_2018_m::SMK_100, cchs2019_2020_m::SMK_100, cchs2021_m::SMK_100, cchs2023_m::SPU_35, [SMK_10A]",,cat,NA::b,4,missing,missing,years,else,else,Yrs quit (reducer),"Years since quit completely (former daily who continued occasional, continuous)",,3.0.0-alpha,2026-01-10,active,PUMF-only (except 2001). Master continuous moved to StatCan variable name.,, +SMK_10A_pre2015,SMK_10A_pre2015_cat4_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, [SMK_10A]",,cat,1,4,<1 year,Less than one year ago,years,1,Less than one year ago,Quit time reducer (pre-2015 cat),When quit completely - former daily continued occasional (pre-2015 categorical),,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). Pre-2015 categories.,, +SMK_10A_pre2015,SMK_10A_pre2015_cat4_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, [SMK_10A]",,cat,2,4,1 to 2 years,1 year to 2 years ago,years,2,1 year to 2 years ago,Quit time reducer (pre-2015 cat),When quit completely - former daily continued occasional (pre-2015 categorical),,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). Pre-2015 categories.,, +SMK_10A_pre2015,SMK_10A_pre2015_cat4_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, [SMK_10A]",,cat,3,4,3 to 5 years,3 years to 5 years ago,years,3,3 years to 5 years ago,Quit time reducer (pre-2015 cat),When quit completely - former daily continued occasional (pre-2015 categorical),,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). Pre-2015 categories.,, +SMK_10A_pre2015,SMK_10A_pre2015_cat4_4,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, [SMK_10A]",,cat,4,4,>5 years,More than 5 years ago,years,4,More than 5 years ago,Quit time reducer (pre-2015 cat),When quit completely - former daily continued occasional (pre-2015 categorical),,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). Pre-2015 categories.,, +SMK_10A_pre2015,SMK_10A_pre2015_cat4_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, [SMK_10A]",,cat,NA::a,4,not applicable,not applicable,years,6,not applicable,Quit time reducer (pre-2015 cat),When quit completely - former daily continued occasional (pre-2015 categorical),,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). Pre-2015 categories.,, +SMK_10A_pre2015,SMK_10A_pre2015_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, [SMK_10A]",,cat,NA::b,4,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Quit time reducer (pre-2015 cat),When quit completely - former daily continued occasional (pre-2015 categorical),,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). Pre-2015 categories.,, +SMK_10A_pre2015,SMK_10A_pre2015_cat4_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_p::SMKC_10A, cchs2005_p::SMKE_10A, cchs2003_m::SMKC_10A, cchs2005_m::SMKE_10A, [SMK_10A]",,cat,NA::b,4,missing,missing,years,else,else,Quit time reducer (pre-2015 cat),When quit completely - former daily continued occasional (pre-2015 categorical),,3.0.0-alpha,2026-01-05,active,New for v3.0.0. SMK_10A for reducers (former daily who continued occasional). Pre-2015 categories.,, +SMK_10C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_10C, cchs2005_m::SMKE_10C, cchs2015_2016_m::SMK_110, cchs2017_2018_m::SMK_110, cchs2019_2020_m::SMK_110, cchs2021_m::SMK_110, [SMK_10C]",,cont,copy,N/A,years,Actual years from continuous source variable,years,copy,years,Yrs quit complete,Years since quit completely - former daily reducer (Master continuous),Master: pass-through from continuous source variable,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_10C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_10C, cchs2005_m::SMKE_10C, cchs2015_2016_m::SMK_110, cchs2017_2018_m::SMK_110, cchs2019_2020_m::SMK_110, cchs2021_m::SMK_110, [SMK_10C]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Yrs quit complete,Years since quit completely - former daily reducer (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_10C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_10C, cchs2005_m::SMKE_10C, cchs2015_2016_m::SMK_110, cchs2017_2018_m::SMK_110, cchs2019_2020_m::SMK_110, cchs2021_m::SMK_110, [SMK_10C]",,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Yrs quit complete,Years since quit completely - former daily reducer (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_10C,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_10C, cchs2005_m::SMKE_10C, cchs2015_2016_m::SMK_110, cchs2017_2018_m::SMK_110, cchs2019_2020_m::SMK_110, cchs2021_m::SMK_110, [SMK_10C]",,cont,NA::b,N/A,missing,missing,years,else,else,Yrs quit complete,Years since quit completely - former daily reducer (Master continuous),,3.0.0-alpha,2026-02-21,active,Master continuous pass-through. Design B: StatCan variable name for Master.,, +SMK_202,SMK_202_cat3_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKA_202, cchs2003_p::SMKC_202, cchs2005_p::SMKE_202, cchs2015_2016_p::SMK_005, cchs2017_2018_p::SMK_005, cchs2019_2020_p::SMK_005, cchs2001_m::SMKA_202, cchs2003_m::SMKC_202, cchs2005_m::SMKE_202, cchs2015_2016_m::SMK_005, cchs2017_2018_m::SMK_005, cchs2019_2020_m::SMK_005, cchs2021_m::SMK_005, [SMK_202]",,cat,1,3,Daily,Smokes daily,,1,Daily,Smoking freq,"Current cigarette smoking frequency (daily, occasional, not at all)","Full coverage 2001-2023 PUMF and Master. Recommended for cross-cycle current smoking status. Source: SMK_202 (2001-2014), SMK_005 (2015-2021), CSS_05 (2022-2023).",3.0.0-alpha,2026-01-04,active,v3.0.0: Full cycle coverage. Extended from V2.1 with 2019-2023 cycles. Source variable naming changed to SMK_005 in 2015 and CSS_05 in 2022.,, +SMK_202,SMK_202_cat3_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKA_202, cchs2003_p::SMKC_202, cchs2005_p::SMKE_202, cchs2015_2016_p::SMK_005, cchs2017_2018_p::SMK_005, cchs2019_2020_p::SMK_005, cchs2001_m::SMKA_202, cchs2003_m::SMKC_202, cchs2005_m::SMKE_202, cchs2015_2016_m::SMK_005, cchs2017_2018_m::SMK_005, cchs2019_2020_m::SMK_005, cchs2021_m::SMK_005, [SMK_202]",,cat,2,3,Occasionally,Smokes occasionally,,2,Occasionally,Smoking freq,"Current cigarette smoking frequency (daily, occasional, not at all)","Full coverage 2001-2023 PUMF and Master. Recommended for cross-cycle current smoking status. Source: SMK_202 (2001-2014), SMK_005 (2015-2021), CSS_05 (2022-2023).",3.0.0-alpha,2026-01-04,active,v3.0.0: Full cycle coverage. Extended from V2.1 with 2019-2023 cycles. Source variable naming changed to SMK_005 in 2015 and CSS_05 in 2022.,, +SMK_202,SMK_202_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKA_202, cchs2003_p::SMKC_202, cchs2005_p::SMKE_202, cchs2015_2016_p::SMK_005, cchs2017_2018_p::SMK_005, cchs2019_2020_p::SMK_005, cchs2001_m::SMKA_202, cchs2003_m::SMKC_202, cchs2005_m::SMKE_202, cchs2015_2016_m::SMK_005, cchs2017_2018_m::SMK_005, cchs2019_2020_m::SMK_005, cchs2021_m::SMK_005, [SMK_202]",,cat,3,3,Not at all,Does not smoke at all,,3,Not at all,Smoking freq,"Current cigarette smoking frequency (daily, occasional, not at all)","Full coverage 2001-2023 PUMF and Master. Recommended for cross-cycle current smoking status. Source: SMK_202 (2001-2014), SMK_005 (2015-2021), CSS_05 (2022-2023).",3.0.0-alpha,2026-01-04,active,v3.0.0: Full cycle coverage. Extended from V2.1 with 2019-2023 cycles. Source variable naming changed to SMK_005 in 2015 and CSS_05 in 2022.,, +SMK_202,SMK_202_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKA_202, cchs2003_p::SMKC_202, cchs2005_p::SMKE_202, cchs2015_2016_p::SMK_005, cchs2017_2018_p::SMK_005, cchs2019_2020_p::SMK_005, cchs2001_m::SMKA_202, cchs2003_m::SMKC_202, cchs2005_m::SMKE_202, cchs2015_2016_m::SMK_005, cchs2017_2018_m::SMK_005, cchs2019_2020_m::SMK_005, cchs2021_m::SMK_005, [SMK_202]",,cat,NA::a,3,not applicable,not applicable,,6,not applicable,Smoking freq,"Current cigarette smoking frequency (daily, occasional, not at all)","Full coverage 2001-2023 PUMF and Master. Recommended for cross-cycle current smoking status. Source: SMK_202 (2001-2014), SMK_005 (2015-2021), CSS_05 (2022-2023).",3.0.0-alpha,2026-01-04,active,v3.0.0: Full cycle coverage. Extended from V2.1 with 2019-2023 cycles. Source variable naming changed to SMK_005 in 2015 and CSS_05 in 2022.,, +SMK_202,SMK_202_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKA_202, cchs2003_p::SMKC_202, cchs2005_p::SMKE_202, cchs2015_2016_p::SMK_005, cchs2017_2018_p::SMK_005, cchs2019_2020_p::SMK_005, cchs2001_m::SMKA_202, cchs2003_m::SMKC_202, cchs2005_m::SMKE_202, cchs2015_2016_m::SMK_005, cchs2017_2018_m::SMK_005, cchs2019_2020_m::SMK_005, cchs2021_m::SMK_005, [SMK_202]",,cat,NA::b,3,missing,missing,,"[7,9]",don't know (7); refusal (8); not stated (9),Smoking freq,"Current cigarette smoking frequency (daily, occasional, not at all)","Full coverage 2001-2023 PUMF and Master. Recommended for cross-cycle current smoking status. Source: SMK_202 (2001-2014), SMK_005 (2015-2021), CSS_05 (2022-2023).",3.0.0-alpha,2026-01-04,active,v3.0.0: Full cycle coverage. Extended from V2.1 with 2019-2023 cycles. Source variable naming changed to SMK_005 in 2015 and CSS_05 in 2022.,, +SMK_202,SMK_202_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKA_202, cchs2003_p::SMKC_202, cchs2005_p::SMKE_202, cchs2015_2016_p::SMK_005, cchs2017_2018_p::SMK_005, cchs2019_2020_p::SMK_005, cchs2001_m::SMKA_202, cchs2003_m::SMKC_202, cchs2005_m::SMKE_202, cchs2015_2016_m::SMK_005, cchs2017_2018_m::SMK_005, cchs2019_2020_m::SMK_005, cchs2021_m::SMK_005, [SMK_202]",,cat,NA::b,3,missing,missing,,else,else,Smoking freq,"Current cigarette smoking frequency (daily, occasional, not at all)","Full coverage 2001-2023 PUMF and Master. Recommended for cross-cycle current smoking status. Source: SMK_202 (2001-2014), SMK_005 (2015-2021), CSS_05 (2022-2023).",3.0.0-alpha,2026-01-04,active,v3.0.0: Full cycle coverage. Extended from V2.1 with 2019-2023 cycles. Source variable naming changed to SMK_005 in 2015 and CSS_05 in 2022.,, +SMK_203,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,copy,N/A,years,Age in years,years,"[8,99]",Age in years,Age daily (curr),Age started smoking cigarettes daily (current daily smokers),Evidence-based minimum age 8 (Holford et al.),3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, current daily) for Master 2001-2023.",, +SMK_203,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age daily (curr),Age started smoking cigarettes daily (current daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, current daily) for Master 2001-2023.",, +SMK_203,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (curr),Age started smoking cigarettes daily (current daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, current daily) for Master 2001-2023.",, +SMK_203,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,NA::b,N/A,missing,missing,years,else,else,Age daily (curr),Age started smoking cigarettes daily (current daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, current daily) for Master 2001-2023.",, +SMK_203,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_005, SMK_040]",,N/A,Func::calculate_SMKG203_cont,N/A,N/A,Age in years,years,N/A,Age in years,Age daily (curr),Age started smoking cigarettes daily (current daily smokers),Evidence-based minimum age 8 (Holford et al.),3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, current daily) for Master 2001-2023.",, +SMK_203,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_005, SMK_040]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (curr),Age started smoking cigarettes daily (current daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, current daily) for Master 2001-2023.",, +SMK_203,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_005, SMK_040]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (curr),Age started smoking cigarettes daily (current daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, current daily) for Master 2001-2023.",, +SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, cchs2019_2020_p::SMK_045, cchs2022_p::CSS_25, cchs2023_p::CSS_25, cchs2001_m::SMKA_204, cchs2003_m::SMKC_204, cchs2005_m::SMKE_204, cchs2015_2016_m::SMK_045, cchs2017_2018_m::SMK_045, cchs2019_2020_m::SMK_045, cchs2021_m::SMK_045, cchs2022_m::CSS_25, cchs2023_m::CSS_25, [SMK_204]",ICES confirmed,cont,copy,N/A,Cigs/day - daily,# of cigarettes smoked daily - daily smoker,cigarettes,"[1,99]",# of cigarettes smoked daily - daily smoker,Cigs/day (current),Number of cigarettes smoked daily - daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, cchs2019_2020_p::SMK_045, cchs2022_p::CSS_25, cchs2023_p::CSS_25, cchs2001_m::SMKA_204, cchs2003_m::SMKC_204, cchs2005_m::SMKE_204, cchs2015_2016_m::SMK_045, cchs2017_2018_m::SMK_045, cchs2019_2020_m::SMK_045, cchs2021_m::SMK_045, cchs2022_m::CSS_25, cchs2023_m::CSS_25, [SMK_204]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,Cigs/day (current),Number of cigarettes smoked daily - daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, cchs2019_2020_p::SMK_045, cchs2022_p::CSS_25, cchs2023_p::CSS_25, cchs2001_m::SMKA_204, cchs2003_m::SMKC_204, cchs2005_m::SMKE_204, cchs2015_2016_m::SMK_045, cchs2017_2018_m::SMK_045, cchs2019_2020_m::SMK_045, cchs2021_m::SMK_045, cchs2022_m::CSS_25, cchs2023_m::CSS_25, [SMK_204]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),Cigs/day (current),Number of cigarettes smoked daily - daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_204,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, cchs2019_2020_p::SMK_045, cchs2022_p::CSS_25, cchs2023_p::CSS_25, cchs2001_m::SMKA_204, cchs2003_m::SMKC_204, cchs2005_m::SMKE_204, cchs2015_2016_m::SMK_045, cchs2017_2018_m::SMK_045, cchs2019_2020_m::SMK_045, cchs2021_m::SMK_045, cchs2022_m::CSS_25, cchs2023_m::CSS_25, [SMK_204]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,Cigs/day (current),Number of cigarettes smoked daily - daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_207,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, [SMK_207]",,cont,copy,N/A,years,Age in years,years,"[8,99]",Age in years,Age daily (fmr),Age started smoking cigarettes daily (former daily smokers),Evidence-based minimum age 8 (Holford et al.),3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, former daily) for Master 2001-2023.",, +SMK_207,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, [SMK_207]",,cont,NA::a,N/A,not applicable,not applicable,years,96,not applicable,Age daily (fmr),Age started smoking cigarettes daily (former daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, former daily) for Master 2001-2023.",, +SMK_207,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, [SMK_207]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (fmr),Age started smoking cigarettes daily (former daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, former daily) for Master 2001-2023.",, +SMK_207,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, [SMK_207]",,cont,NA::b,N/A,missing,missing,years,else,else,Age daily (fmr),Age started smoking cigarettes daily (former daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, former daily) for Master 2001-2023.",, +SMK_207,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_030, SMK_040]",,N/A,Func::calculate_SMKG207_cont,N/A,N/A,Age in years,years,N/A,Age in years,Age daily (fmr),Age started smoking cigarettes daily (former daily smokers),Evidence-based minimum age 8 (Holford et al.),3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, former daily) for Master 2001-2023.",, +SMK_207,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_030, SMK_040]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (fmr),Age started smoking cigarettes daily (former daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, former daily) for Master 2001-2023.",, +SMK_207,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_030, SMK_040]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (fmr),Age started smoking cigarettes daily (former daily smokers),,3.0.0-alpha,2026-01-04,active,"NEW: Age started daily (continuous, former daily) for Master 2001-2023.",, +SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, cchs2019_2020_p::SMK_075, cchs2001_m::SMKA_208, cchs2003_m::SMKC_208, cchs2005_m::SMKE_208, cchs2015_2016_m::SMK_075, cchs2017_2018_m::SMK_075, cchs2019_2020_m::SMK_075, cchs2021_m::SMK_075, cchs2022_m::SPU_20, cchs2023_m::SPU_20, [SMK_208]",ICES confirmed,cont,copy,N/A,Cigs/day - fmr daily,Cigarettes/day - former daily,cigarettes,"[1,99]",# of cigarettes smoke each day - former daily,Cigs/day (former),Number of cigarettes smoked daily - former daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, cchs2019_2020_p::SMK_075, cchs2001_m::SMKA_208, cchs2003_m::SMKC_208, cchs2005_m::SMKE_208, cchs2015_2016_m::SMK_075, cchs2017_2018_m::SMK_075, cchs2019_2020_m::SMK_075, cchs2021_m::SMK_075, cchs2022_m::SPU_20, cchs2023_m::SPU_20, [SMK_208]",ICES confirmed,cont,NA::a,N/A,not applicable,not applicable,cigarettes,996,not applicable,Cigs/day (former),Number of cigarettes smoked daily - former daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, cchs2019_2020_p::SMK_075, cchs2001_m::SMKA_208, cchs2003_m::SMKC_208, cchs2005_m::SMKE_208, cchs2015_2016_m::SMK_075, cchs2017_2018_m::SMK_075, cchs2019_2020_m::SMK_075, cchs2021_m::SMK_075, cchs2022_m::SPU_20, cchs2023_m::SPU_20, [SMK_208]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,"[997,999]",don't know (997); refusal (998); not stated (999),Cigs/day (former),Number of cigarettes smoked daily - former daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMK_208,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, cchs2019_2020_p::SMK_075, cchs2001_m::SMKA_208, cchs2003_m::SMKC_208, cchs2005_m::SMKE_208, cchs2015_2016_m::SMK_075, cchs2017_2018_m::SMK_075, cchs2019_2020_m::SMK_075, cchs2021_m::SMK_075, cchs2022_m::SPU_20, cchs2023_m::SPU_20, [SMK_208]",ICES confirmed,cont,NA::b,N/A,missing,missing,cigarettes,else,else,Cigs/day (former),Number of cigarettes smoked daily - former daily smokers,,3.0.0-alpha,2026-01-04,active,"Migrated from production. Converted deprecated _i suffix to _m. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKDGSTP,SMKDGSTP_cat5_0,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,0,5,<1 year,Less than 1 year,N/A,0,<1 year,Yrs quit (P cat),Years since quit smoking completely (PUMF grouped categorical),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. PUMF categorical 2015+ only. DDI shows 5 categories (0-4).,, +SMKDGSTP,SMKDGSTP_cat5_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,1,5,1-2 years,1 to 2 years,N/A,1,1-2 years,Yrs quit (P cat),Years since quit smoking completely (PUMF grouped categorical),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. PUMF categorical 2015+ only. DDI shows 5 categories (0-4).,, +SMKDGSTP,SMKDGSTP_cat5_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,2,5,3-5 years,3 to 5 years,N/A,2,3-5 years,Yrs quit (P cat),Years since quit smoking completely (PUMF grouped categorical),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. PUMF categorical 2015+ only. DDI shows 5 categories (0-4).,, +SMKDGSTP,SMKDGSTP_cat5_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,3,5,6-10 years,6 to 10 years,N/A,3,6-10 years,Yrs quit (P cat),Years since quit smoking completely (PUMF grouped categorical),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. PUMF categorical 2015+ only. DDI shows 5 categories (0-4).,, +SMKDGSTP,SMKDGSTP_cat5_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,4,5,11+ years,11 or more years,N/A,4,11+ years,Yrs quit (P cat),Years since quit smoking completely (PUMF grouped categorical),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. PUMF categorical 2015+ only. DDI shows 5 categories (0-4).,, +SMKDGSTP,SMKDGSTP_cat5_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,Yrs quit (P cat),Years since quit smoking completely (PUMF grouped categorical),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. PUMF categorical 2015+ only. DDI shows 5 categories (0-4).,, +SMKDGSTP,SMKDGSTP_cat5_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit (P cat),Years since quit smoking completely (PUMF grouped categorical),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. PUMF categorical 2015+ only. DDI shows 5 categories (0-4).,, +SMKDGSTP_cont,N/A,cont,"cchs2003_m, cchs2005_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP",,cont,copy,N/A,N/A,Years since quit,years,"[0,79]",Years since quit,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m",[SMKDSTP],,cont,copy,N/A,N/A,Years since quit,years,"[0,82]",Years since quit,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m",[SMKDVSTP],,cont,copy,N/A,N/A,Years since quit,years,"[0,88]",Years since quit,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP, cchs2007_2008_m::SMKDSTP, cchs2009_2010_m::SMKDSTP, cchs2009_m::SMKDSTP, cchs2010_m::SMKDSTP, cchs2011_2012_m::SMKDSTP, cchs2012_m::SMKDSTP, cchs2013_2014_m::SMKDSTP, cchs2014_m::SMKDSTP, [SMKDVSTP]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP, cchs2007_2008_m::SMKDSTP, cchs2009_2010_m::SMKDSTP, cchs2009_m::SMKDSTP, cchs2010_m::SMKDSTP, cchs2011_2012_m::SMKDSTP, cchs2012_m::SMKDSTP, cchs2013_2014_m::SMKDSTP, cchs2014_m::SMKDSTP, [SMKDVSTP]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,0.5,N/A,N/A,<1 year midpoint,years,1,<1 year,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,1.5,N/A,N/A,1-2 years midpoint,years,2,1-2 years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,4,N/A,N/A,3-5 years midpoint,years,3,3-5 years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,8,N/A,N/A,6-10 years midpoint,years,4,6-10 years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,15,N/A,N/A,11+ years midpoint,years,5,11+ years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, [SMKGSTP]",,cat,NA::b,N/A,missing,missing,years,else,else,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,0.5,N/A,N/A,<1 year midpoint,years,0,<1 year,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,1.5,N/A,N/A,1-2 years midpoint,years,1,1-2 years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,4,N/A,N/A,3-5 years midpoint,years,2,3-5 years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,8,N/A,N/A,6-10 years midpoint,years,3,6-10 years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,15,N/A,N/A,11+ years midpoint,years,4,11+ years,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,NA::a,N/A,not applicable,not applicable,years,6,not applicable,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,NA::b,N/A,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDGSTP_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p",[SMKDGSTP],,cat,NA::b,N/A,missing,missing,years,else,else,Yrs quit smoking,Years since quit smoking completely,,3.0.0-alpha,2026-01-05,active,"Split from SMKDSTP 2026-01-05. PUMF 2007-2014 continuous, PUMF 2015+ midpoint, Master pass-through.",, +SMKDSTY,SMKDSTY_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,1,6,Daily,Daily smoker (pre-2015 and post-2015),N/A,1,1,Smoking type,Type of smoker derived (6-category),Same meaning all cycles,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,2,6,Occasional (any),Occasional smoker (pre-2015: former daily; post-2015: any current),N/A,2,2,Smoking type,Type of smoker derived (6-category),CAUTION: 2001-2014 = former daily/current occasional; 2015+ = any current occasional. Meaning changed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,3,6,Occ or fmr daily,Pre-2015: Occasional never daily; Post-2015: Former daily,N/A,3,3,Smoking type,Type of smoker derived (6-category),CAUTION: 2001-2014 = never daily/current occasional; 2015+ = former daily. Meaning changed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,4,6,Fmr daily or fmr occ,Pre-2015: Former daily; Post-2015: Former occasional,N/A,4,4,Smoking type,Type of smoker derived (6-category),CAUTION: 2001-2014 = former daily/non-smoker; 2015+ = former occasional. Meaning changed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,5,6,Fmr occ/experimental,Pre-2015: Former occasional; Post-2015: Experimental smoker,N/A,5,5,Smoking type,Type of smoker derived (6-category),"CAUTION: 2001-2014 = former occasional/non-smoker; 2015+ = experimental (1+ cig, <100). MAJOR semantic change.",3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,6,6,Never smoked,Never smoked a whole cigarette (all cycles),N/A,6,6,Smoking type,Type of smoker derived (6-category),Same meaning all cycles,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Smoking type,Type of smoker derived (6-category),,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking type,Type of smoker derived (6-category),,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY,SMKDSTY_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,NA::b,6,missing,missing,N/A,else,else,Smoking type,Type of smoker derived (6-category),,3.0.0-alpha,2026-01-04,active,"v3.0.0: NEW variable (not in V2.1). Raw pass-through of StatCan derived smoking status. Required for pack-years calculation. Categories 1 and 6 comparable across all cycles; categories 2-5 have different meanings pre-2015 vs post-2015. For comparable cross-cycle analyses, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_1,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,1,6,Daily,Current daily smoker,N/A,1,Daily,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_2,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,2,6,Occasional,Current occasional smoker,N/A,2,Occasional,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_3,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,3,6,Former daily,Former daily smoker (non-smoker now),N/A,3,Former daily,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_4,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,4,6,Former occasional,Former occasional (non-smoker now),N/A,4,Former occasional,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_5,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,5,6,Experimental,"Experimental smoker (at least 1 cig, non-smoker now)",N/A,5,Experimental,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_6,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_NAa,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_2009plus,SMKDSTY_2009plus_cat6_NAb,cat,"cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",yes,cat,NA::b,6,missing,missing,N/A,else,else,Type of smoker (6-cat 2009+),"Type of smoker (6-category, 2009+ categories per SMKDVSTY scheme)",2015+ only. Direct SMKDVSTY pass-through. Not available pre-2015; use SMKDSTY_original for earlier cycles or SMKDSTY_cat3/cat5 for full cross-cycle coverage.,3.0.0-alpha,2026-01-04,active,"v3.0.0: 2015+ category structure including 'experimental smoker' (category 5). Extended from V2.1 with 2019-2023 coverage. For analyses spanning pre-2015 and post-2015, use SMKDSTY_cat3 or SMKDSTY_cat5.",, +SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",,cat,1,3,Current,Current smoker,N/A,"[1,3]",Daily (1); Occasional (2); Always occasional (3),Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",,cat,2,3,Former,Former smoker,N/A,"[4,5]",Former daily(4); Former occasional (5),Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat3,SMKDSTY_cat3_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SMKDVSTY],,cat,1,3,Current,Current smoker,N/A,"[1,2]",Daily (1); Occasional (2),Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat3,SMKDSTY_cat3_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SMKDVSTY],,cat,2,3,Former,Former smoker,N/A,"[3,5]",Former daily (3); Former occasional (4); Experimental (5),Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat3,SMKDSTY_cat3_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,3,3,Never smoked,Never smoked,N/A,6,Never smoked,Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat3,SMKDSTY_cat3_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,NA::a,3,not applicable,not applicable,N/A,96,not applicable,Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat3,SMKDSTY_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,NA::b,3,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat3,SMKDSTY_cat3_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",,cat,NA::b,3,missing,missing,N/A,else,else,Smoking (3-cat),"Smoking status (3-category): current, former, never",Full coverage 2001-2023 PUMF and Master. Collapsed to current/former/never. Recommended for cross-cycle comparisons requiring full comparability.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended for cross-cycle analyses. Collapses 6-category SMKDSTY to 3 categories, avoiding all semantic breaks between pre-2015 and post-2015. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",ICES confirmed,cat,1,5,Daily,Current daily smoker,N/A,1,Daily,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SMKDVSTY],ICES confirmed,cat,2,5,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SMKDVSTY],ICES confirmed,cat,4,5,Former occasional,Former occasional,N/A,"[4,5]",Former occasional,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SMKDVSTY],ICES confirmed,cat,3,5,Former daily,Former daily smoker,N/A,3,Former daily,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SMKDVSTY],ICES confirmed,cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,2,5,Occasional,Current occasional smoker,N/A,2,Occasional,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,3,5,Former daily,Former daily smoker,N/A,3,Former daily,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,3,5,Former daily,Former daily smoker,N/A,4,Former daily,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,4,5,Former occasional,Former occasional,N/A,5,Former occasional,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,5,5,Never smoked,Never smoked,N/A,6,Never smoked,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",ICES confirmed,cat,NA::a,5,not applicable,not applicable,N/A,96,not applicable,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_cat5,SMKDSTY_cat5_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,5,missing,missing,N/A,else,else,Smoking (5-cat),"Smoking status (5-category): daily, occasional, former daily, former occasional, never",Full coverage 2001-2023 PUMF and Master. 5-category avoiding semantic break. Merges occasional subtypes and former occasional/experimental. Use when more detail than 3-category is needed.,3.0.0-alpha,2026-01-04,active,"v3.0.0: Recommended when more detail than 3-category is needed. Merges pre-2015 'occasional (former daily)' + 'occasional (never daily)' into 'occasional', and post-2015 'former occasional' + 'experimental' into 'former occasional'. Extended from V2.1 with 2019-2023 coverage.",, +SMKDSTY_original,SMKDSTY_original_cat6_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,1,6,Daily,Daily smoker,N/A,1,Daily,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,2,6,Occ (fmr daily),Former daily current occasional smoker,N/A,2,Occasional,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,3,6,Always occasional,Never daily current occasional smoker,N/A,3,Always occasional,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_4,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,4,6,Former daily,Former daily current nonsmoker,N/A,4,Former daily,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_5,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,5,Former occasional,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_6,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,6,6,Never smoked,Never smoked,N/A,6,Never smoked,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::a,6,not applicable,not applicable,N/A,96,not applicable,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,6,missing,missing,N/A,"[97,99]",don't know (97); refusal (98); not stated (99),Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, [SMKDSTY]",ICES confirmed,cat,NA::b,6,missing,missing,N/A,else,else,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,N/A,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,Func::calculate_SMKDSTY_original,N/A,N/A,N/A,N/A,N/A,N/A,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_1,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,1,6,Daily,Daily smoker,N/A,N/A,Daily,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_2,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,2,6,Occ (fmr daily),Former daily current occasional smoker,N/A,N/A,Occasional,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_3,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,3,6,Always occasional,Never daily current occasional smoker,N/A,N/A,Always occasional,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_4,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,4,6,Former daily,Former daily current nonsmoker,N/A,N/A,Former daily,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_5,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,5,6,Former occasional,Never daily current nonsmoker (former occasional),N/A,N/A,Former occasional,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_6,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,6,6,Never smoked,Never smoked,N/A,N/A,Never smoked,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,NA::a,6,not applicable,not applicable,N/A,N/A,not applicable,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDSTY_original,SMKDSTY_original_cat6_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_202, SMK_05D, SMK_01A]",ICES confirmed,N/A,NA::b,6,missing,missing,N/A,N/A,missing,Type of smoker (6-cat original),"Type of smoker (6-category, original StatCan scheme with derivation for post-2014)","Pre-2015 category structure for all cycles. Available 2001-2018 PUMF, 2001-2023 Master. 2015+ values derived from SMK_202, SMK_05D, SMK_01A.",3.0.0-alpha,2026-01-04,active,v3.0.0: Extended from V2.1 with 2019-2023 Master coverage. Uses calculate_SMKDSTY_original() for 2015+ cycles to maintain pre-2015 category definitions. PUMF derivation validated through 2018.,, +SMKDVSTP,N/A,cont,"cchs2003_m, cchs2005_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP",,cont,copy,N/A,N/A,Years since quit,years,"[0,79]",Years since quit,Yrs quit smoking,Years since quit smoking completely (Master continuous),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. Master continuous pass-through.,, +SMKDVSTP,N/A,cont,"cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m",[SMKDSTP],,cont,copy,N/A,N/A,Years since quit,years,"[0,82]",Years since quit,Yrs quit smoking,Years since quit smoking completely (Master continuous),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. Master continuous pass-through.,, +SMKDVSTP,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",[SMKDVSTP],,cont,copy,N/A,N/A,Years since quit,years,"[0,88]",Years since quit,Yrs quit smoking,Years since quit smoking completely (Master continuous),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. Master continuous pass-through.,, +SMKDVSTP,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP, cchs2007_2008_m::SMKDSTP, cchs2009_2010_m::SMKDSTP, cchs2009_m::SMKDSTP, cchs2010_m::SMKDSTP, cchs2011_2012_m::SMKDSTP, cchs2012_m::SMKDSTP, cchs2013_2014_m::SMKDSTP, cchs2014_m::SMKDSTP, [SMKDVSTP]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Yrs quit smoking,Years since quit smoking completely (Master continuous),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. Master continuous pass-through.,, +SMKDVSTP,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP, cchs2007_2008_m::SMKDSTP, cchs2009_2010_m::SMKDSTP, cchs2009_m::SMKDSTP, cchs2010_m::SMKDSTP, cchs2011_2012_m::SMKDSTP, cchs2012_m::SMKDSTP, cchs2013_2014_m::SMKDSTP, cchs2014_m::SMKDSTP, [SMKDVSTP]",,cont,NA::b,N/A,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Yrs quit smoking,Years since quit smoking completely (Master continuous),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. Master continuous pass-through.,, +SMKDVSTP,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP, cchs2007_2008_m::SMKDSTP, cchs2009_2010_m::SMKDSTP, cchs2009_m::SMKDSTP, cchs2010_m::SMKDSTP, cchs2011_2012_m::SMKDSTP, cchs2012_m::SMKDSTP, cchs2013_2014_m::SMKDSTP, cchs2014_m::SMKDSTP, [SMKDVSTP]",,cont,NA::b,N/A,missing,missing,years,else,else,Yrs quit smoking,Years since quit smoking completely (Master continuous),,3.0.0-alpha,2026-01-05,active,Split from SMKDSTP 2026-01-05. Master continuous pass-through.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,3,15 To 17 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,4,18 To 19 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,5,20 To 24 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,6,25 To 29 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,7,30 To 34 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,8,35 To 39 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,9,40 To 44 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,10,45 To 49 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,11,50 Years or more,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,NA::b,11,missing,missing,years,else,else,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,1,11,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_2,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,2,11,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_3,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,3,11,15 To 17 Years,age smoked first whole cigarette (15 to 17),years,"[15,18)",15 To 17 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_4,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,4,11,18 To 19 Years,age smoked first whole cigarette (18 to 19),years,"[18,20)",18 To 19 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_5,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,5,11,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_6,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,6,11,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_7,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,7,11,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_8,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,8,11,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_9,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,9,11,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_10,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,10,11,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_11,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,11,11,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_NAa,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::a,11,not applicable,not applicable,years,996,not applicable,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_NAb,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_2005plus,SMKG01C_2005plus_cat11_NAb,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::b,11,missing,missing,years,else,else,Age 1st cig (2005+ cat),"Age smoked first cigarette (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,8,10,5-11 years,Midpoint of 5-11 years,years,1,5-11 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,13,10,12-14 years,Midpoint of 12-14 years,years,2,12-14 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,17,10,15-19 years,Midpoint of 15-19 years,years,3,15-19 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,22,10,20-24 years,Midpoint of 20-24 years,years,4,20-24 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,27,10,25-29 years,Midpoint of 25-29 years,years,5,25-29 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,32,10,30-34 years,Midpoint of 30-34 years,years,6,30-34 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,37,10,35-39 years,Midpoint of 35-39 years,years,7,35-39 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,42,10,40-44 years,Midpoint of 40-44 years,years,8,40-44 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,47,10,45-49 years,Midpoint of 45-49 years,years,9,45-49 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,55,10,50+ years,Assumed midpoint for 50+,years,10,50+ years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",,cat,NA::b,10,missing,missing,years,else,else,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,8,11,5-11 years,Midpoint of 5-11 years,years,1,5-11 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,13,11,12-14 years,Midpoint of 12-14 years,years,2,12-14 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,16,11,15-17 years,Midpoint of 15-17 years,years,3,15-17 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,18.5,11,18-19 years,Midpoint of 18-19 years,years,4,18-19 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,22,11,20-24 years,Midpoint of 20-24 years,years,5,20-24 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,27,11,25-29 years,Midpoint of 25-29 years,years,6,25-29 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,32,11,30-34 years,Midpoint of 30-34 years,years,7,30-34 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,37,11,35-39 years,Midpoint of 35-39 years,years,8,35-39 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,42,11,40-44 years,Midpoint of 40-44 years,years,9,40-44 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,47,11,45-49 years,Midpoint of 45-49 years,years,10,45-49 years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,55,11,50+ years,Assumed midpoint for 50+,years,11,50+ years,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2015_2016_p",cchs2015_2016_p::SMKG035,,cat,NA::a,11,not applicable,not applicable,years,11,50+ years,Age 1st cig,Age smoked first whole cigarette,StatCan defect in 2015-2016 PUMF: SMKG035 code 11 pools valid skip (~44k) and not stated (~1.3k) with true age 50+ (~95); official data dictionary lists 11 = 45737 with no 96/99 rows. Mapped to NA::a (dominant class). See cchsflow-data#3.,3.0.0-alpha,2026-01-04,active,Added 2015-2016 exception row for StatCan SMKG035 defect.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, [SMKG01C]",,cat,NA::b,11,missing,missing,years,else,else,Age 1st cig,Age smoked first whole cigarette,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,copy,10,years,Midpoint of 12-14 years,years,"[8,95]",Age in years (8 to 95),Age 1st cig,Age smoked first whole cigarette,Master: direct pass-through of continuous values,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,Age 1st cig,Age smoked first whole cigarette,Master: valid skip (not in universe),3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]",,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age 1st cig,Age smoked first whole cigarette,Master: missing (don't know/refused),3.0.0-alpha,2026-01-04,active,Removed _s/_i. Shorter labels. Added PUMF 2019-2021.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,1,5 To 11 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,2,12 To 14 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,3,10,15 to 19 years,age smoked first whole cigarette (18 to 19),years,3,15 To 19 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,4,20 To 24 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,5,25 To 29 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,6,30 To 34 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,7,35 To 39 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,8,40 To 44 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,9,45 To 49 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,10,50 Years or more,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_NAa,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C",ICES altered,cat,NA::b,10,missing,missing,years,else,else,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_1,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,1,10,5 To 11 Years,age smoked first whole cigarette (5 to 11),years,"[5,12)",5 To 11 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_2,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,2,10,12 To 14 Years,age smoked first whole cigarette (12 to 14),years,"[12,15)",12 To 14 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_3,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,3,10,15 to 19 years,age smoked first whole cigarette (18 to 19),years,"[15,20)",15 To 19 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_4,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,4,10,20 To 24 Years,age smoked first whole cigarette (20 to 24),years,"[20,25)",20 To 24 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_5,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,5,10,25 To 29 Years,age smoked first whole cigarette (25 to 29),years,"[25,30)",25 To 29 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_6,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,6,10,30 To 34 Years,age smoked first whole cigarette (30 to 34),years,"[30,35)",30 To 34 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_7,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,7,10,35 To 39 Years,age smoked first whole cigarette (35 to 39),years,"[35,40)",35 To 39 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_8,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,8,10,40 To 44 Years,age smoked first whole cigarette (40 to 44),years,"[40,45)",40 To 44 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_9,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,9,10,45 To 49 Years,age smoked first whole cigarette (45 to 49),years,"[45,50)",45 To 49 Years,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_10,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,10,10,50 Years or more,age smoked first whole cigarette (50 plus),years,"[50,80]",50 Years or more,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_NAa,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_NAb,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG01C_pre2005,SMKG01C_pre2005_cat10_NAb,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C",ICES altered,cont,NA::b,10,missing,missing,years,else,else,Age 1st cig (pre-2005 cat),"Age smoked first cigarette (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_1,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily/former daily smoker,years,1,5 To 11 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_2,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily/former daily smoker,years,2,12 To 14 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_3,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily/former daily smoker,years,3,15 To 17 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_4,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily/former daily smoker,years,4,18 To 19 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_5,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily/former daily smoker,years,5,20 To 24 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_6,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily/former daily smoker,years,6,25 To 29 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_7,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily/former daily smoker,years,7,30 To 34 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_8,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily/former daily smoker,years,8,35 To 39 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_9,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily/former daily smoker,years,9,40 To 44 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_10,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily/former daily smoker,years,10,45 To 49 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_11,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,11,11,50 Years or more,age (50 or more) started smoking daily - daily/former daily smoker,years,11,50 Years or more,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_NAa,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily smoking,Age started smoking daily - ever-daily (categorical),Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_NAb,cat,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],DGM,cat,NA::b,11,missing,missing,years,else,else,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_1,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily/former daily smoker,years,"[5,12)",5 To 11 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_2,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily/former daily smoker,years,"[12,15)",12 To 14 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_3,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily/former daily smoker,years,"[15,18)",15 To 17 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_4,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily/former daily smoker,years,"[18,20)",18 To 19 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_5,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily/former daily smoker,years,"[20,25)",20 To 24 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_6,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily/former daily smoker,years,"[25,30)",25 To 29 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_7,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily/former daily smoker,years,"[30,35)",30 To 34 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_8,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily/former daily smoker,years,"[35,40)",35 To 39 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_9,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily/former daily smoker,years,"[40,45)",40 To 44 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_10,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily/former daily smoker,years,"[45,50)",45 To 49 Years,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_11,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,11,11,50 Years or more,age (50 or more) started smoking daily - daily/former daily smoker,years,"[50,84]",50 Years or more,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_NAa,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,NA::a,11,not applicable,not applicable,years,996,not applicable,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040,SMKG040_cat11_NAb,cat,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",DGM,cont,NA::b,11,missing,missing,years,else,else,Age daily smoking,Age started smoking daily - ever-daily (categorical),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,N/A,Func::calculate_SMKG040_cont,N/A,N/A,Age in years (pseudo-continuous),years,N/A,Age in years (1 to 55),Age daily (ever),Age started smoking daily - ever-daily (derived),PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (ever),Age started smoking daily - ever-daily (derived),,3.0.0-alpha,2026-01-04,active,,, +SMKG040_cont,N/A,cont,"cchs2001_p, cchs2003_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (ever),Age started smoking daily - ever-daily (derived),,3.0.0-alpha,2026-01-04,active,,, +SMKG040_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,N/A,Func::calculate_SMKG040_cont,N/A,N/A,Age in years (pseudo-continuous),years,N/A,Age in years (1 to 55),Age daily (ever),Age started smoking daily - ever-daily (derived),PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (ever),Age started smoking daily - ever-daily (derived),,3.0.0-alpha,2026-01-04,active,,, +SMKG040_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKG203_cont, SMKG207_cont]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (ever),Age started smoking daily - ever-daily (derived),,3.0.0-alpha,2026-01-04,active,,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,8,11,5-11 years,Midpoint of 5-11 years,years,1,5-11 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,13,11,12-14 years,Midpoint of 12-14 years,years,2,12-14 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,16,11,15-17 years,Midpoint of 15-17 years,years,3,15-17 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,18.5,11,18-19 years,Midpoint of 18-19 years,years,4,18-19 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,22,11,20-24 years,Midpoint of 20-24 years,years,5,20-24 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,27,11,25-29 years,Midpoint of 25-29 years,years,6,25-29 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,32,11,30-34 years,Midpoint of 30-34 years,years,7,30-34 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,37,11,35-39 years,Midpoint of 35-39 years,years,8,35-39 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,42,11,40-44 years,Midpoint of 40-44 years,years,9,40-44 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,47,11,45-49 years,Midpoint of 45-49 years,years,10,45-49 years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,55,11,50+ years,Assumed midpoint for 50+,years,11,50+ years,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],,cat,NA::b,11,missing,missing,years,else,else,Age daily (ever),Age started smoking daily grouped - ever-daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","DerivedVar::[SMK_203, SMK_207]",,N/A,Func::calculate_SMKG040_cont,N/A,N/A,Age in years,years,N/A,Age in years,Age daily (ever),Age started smoking daily grouped - ever-daily,Master pre-2015: derive from SMK_203 + SMK_207,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","DerivedVar::[SMK_203, SMK_207]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (ever),Age started smoking daily - ever-daily (derived),,3.0.0-alpha,2026-01-04,active,,, +SMKG040_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","DerivedVar::[SMK_203, SMK_207]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (ever),Age started smoking daily - ever-daily (derived),,3.0.0-alpha,2026-01-04,active,,, +SMKG040_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,copy,N/A,years,Midpoint of 12-14 years,years,"[8,95]",Age in years (8 to 95),Age daily (ever),Age started smoking daily grouped - ever-daily,Master: direct pass-through of continuous values,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age daily (ever),Age started smoking daily grouped - ever-daily,Master: valid skip (not in universe),3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age daily (ever),Age started smoking daily grouped - ever-daily,Master: missing (don't know/refused),3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG040_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]",,cont,NA::b,N/A,missing,missing,years,else,else,Age daily (ever),Age started smoking daily - ever-daily (derived),PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2015-2021.,, +SMKG06C,SMKG06C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG06C,SMKG06C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG06C,SMKG06C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,3,3,11+ years,11 or more years,years,3,11 or more years,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG06C,SMKG06C_cat3_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::a,3,not applicable,not applicable,years,6,not applicable,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG06C,SMKG06C_cat3_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG06C,SMKG06C_cat3_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, [SMKG06C]",,cat,NA::b,3,missing,missing,years,else,else,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG06C,SMKG06C_cat3_1,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, [SMK_06C]",,cont,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG06C,SMKG06C_cat3_2,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, [SMK_06C]",,cont,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG06C,SMKG06C_cat3_3,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, [SMK_06C]",,cont,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG06C,SMKG06C_cat3_NAa,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, [SMK_06C]",,cont,NA::a,3,not applicable,not applicable,years,996,not applicable,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG06C,SMKG06C_cat3_NAb,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, [SMK_06C]",,cont,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG06C,SMKG06C_cat3_NAb,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2003_m::SMKC_06C, cchs2005_m::SMKE_06C, [SMK_06C]",,cont,NA::b,3,missing,missing,years,else,else,Yrs quit occ,Years since stopped smoking - never daily occasional (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C,SMKG09C_cat3_1,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,1,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C,SMKG09C_cat3_2,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,2,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C,SMKG09C_cat3_3,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,3,3,11+ years,11 or more years,years,3,11 or more years,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C,SMKG09C_cat3_NAa,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,NA::a,3,not applicable,not applicable,years,6,not applicable,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C,SMKG09C_cat3_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),Don't know (7) and refusal (8) not included in CCHS 2015-2016 and CCHS 2017-2018,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C,SMKG09C_cat3_NAb,cat,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,NA::b,3,missing,missing,years,else,else,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C,SMKG09C_cat3_1,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,1,3,3 to 5 years,3 to 5 years,years,"[3,6)",3 to 5 years,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C,SMKG09C_cat3_2,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,2,3,6 to 10 years,6 to 10 years,years,"[6,11)",6 to 10 years,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C,SMKG09C_cat3_3,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,3,3,11+ years,11 or more years,years,"[11,82]",11 or more years,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C,SMKG09C_cat3_NAa,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,NA::a,3,not applicable,not applicable,years,996,not applicable,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C,SMKG09C_cat3_NAb,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C,SMKG09C_cat3_NAb,cat,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,NA::b,3,missing,missing,years,else,else,Yrs quit daily,Years since stopped smoking daily - former daily (PUMF categorical),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,4,3,3 to 5 years,3 to 5 years,years,1,3 to 5 years,Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,8,3,6 to 10 years,6 to 10 years,years,2,6 to 10 years,Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,12,3,11+ years,11 or more years,years,3,11 or more years,Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,NA::a,3,not applicable,not applicable,years,6,not applicable,Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,NA::b,3,missing,missing,years,"[7,9]",don't know (7); refusal (8); not stated (9),Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),Don't know (7) and refusal (8) not included in CCHS 2015-2016 and CCHS 2017-2018,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C_cont,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2019_2020_p::SMKG090, [SMKG09C]",ICES altered,cat,NA::b,3,missing,missing,years,else,else,Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,"Restored from inst/extdata. Has both PUMF and Master. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +SMKG09C_cont,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,copy,N/A,valid range,Valid continuous range,years,"[0,121]",Valid range,Stop age - former daily,Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C_cont,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,NA::a,3,not applicable,not applicable,years,996,not applicable,Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C_cont,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,NA::b,3,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG09C_cont,N/A,cont,"cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]",ICES altered,cont,NA::b,3,missing,missing,years,else,else,Yrs quit (fmr daily),Years since stopped smoking daily - former daily (PUMF continuous derived),,3.0.0-alpha,2026-01-04,active,Restored from inst/extdata. Has both PUMF and Master.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - daily smoker,years,3,15 To 17 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - daily smoker,years,4,18 To 19 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,5,20 To 24 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,6,25 To 29 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,7,30 To 34 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,8,35 To 39 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,9,40 To 44 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,10,45 To 49 Years,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,11,11,50 Years or more,age (50 plus) started smoking daily - daily smoker,years,11,50 Years or more,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age 1st cig (daily),Age started to smoke daily - daily smoker (G),Don't know (97) and refusal (98) not included in CCHS 2015-2016 and CCHS 2017-2018,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,else,else,Age 1st cig (daily),Age started to smoke daily - daily smoker (G),,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,"[5,12)",5 To 11 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,"[12,15)",12 To 14 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,"[15,18)",15 To 17 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,"[18,20)",18 To 19 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,"[20,25)",20 To 24 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,"[25,30)",25 To 29 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,"[30,35)",30 To 34 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,"[35,40)",35 To 39 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,"[40,45)",40 To 44 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,"[45,50)",45 To 49 Years,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,"[50,80]",50 Years or more,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,NA::a,11,not applicable,not applicable,years,996,not applicable,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_2005plus,SMKG203_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_203, [SMK_203]",ICES altered,cont,NA::b,11,missing,missing,years,else,else,Start age daily (fmr),Age started to smoke daily - former daily smoker,,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,8,10,5-11 years,Midpoint of 5-11 years,years,1,5-11 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,13,10,12-14 years,Midpoint of 12-14 years,years,2,12-14 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,17,10,15-19 years,Midpoint of 15-19 years,years,3,15-19 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,22,10,20-24 years,Midpoint of 20-24 years,years,4,20-24 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,27,10,25-29 years,Midpoint of 25-29 years,years,5,25-29 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,32,10,30-34 years,Midpoint of 30-34 years,years,6,30-34 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,37,10,35-39 years,Midpoint of 35-39 years,years,7,35-39 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,42,10,40-44 years,Midpoint of 40-44 years,years,8,40-44 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,47,10,45-49 years,Midpoint of 45-49 years,years,9,45-49 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,55,10,50+ years,Assumed midpoint for 50+,years,10,50+ years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",,cat,NA::b,10,missing,missing,years,else,else,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,8,11,5-11 years,Midpoint of 5-11 years,years,1,5-11 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,13,11,12-14 years,Midpoint of 12-14 years,years,2,12-14 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,16,11,15-17 years,Midpoint of 15-17 years,years,3,15-17 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,18.5,11,18-19 years,Midpoint of 18-19 years,years,4,18-19 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,22,11,20-24 years,Midpoint of 20-24 years,years,5,20-24 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,27,11,25-29 years,Midpoint of 25-29 years,years,6,25-29 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,32,11,30-34 years,Midpoint of 30-34 years,years,7,30-34 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,37,11,35-39 years,Midpoint of 35-39 years,years,8,35-39 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,42,11,40-44 years,Midpoint of 40-44 years,years,9,40-44 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,47,11,45-49 years,Midpoint of 45-49 years,years,10,45-49 years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,55,11,50+ years,Assumed midpoint for 50+,years,11,50+ years,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG203, [SMKG203]",,cat,NA::b,11,missing,missing,years,else,else,Age daily (ever),Age started smoking daily grouped - current daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMK_005, SMKG040_cont]",,N/A,Func::calculate_SMKG203_cont,N/A,N/A,Age in years (pseudo-continuous),years,N/A,Age in years (1 to 55),Age daily (curr),Age started smoking daily - current daily (derived),PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMK_005, SMKG040_cont]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (curr),Age started smoking daily - current daily (derived),,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMK_005, SMKG040_cont]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (curr),Age started smoking daily - current daily (derived),,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,copy,N/A,years,Midpoint of 12-14 years,years,"[8,95]",Age in years (8 to 95),Age daily (ever),Age started smoking daily grouped - current daily,Master: direct pass-through of continuous values,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age daily (ever),Age started smoking daily grouped - current daily,Master: valid skip (not in universe),3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age daily (ever),Age started smoking daily grouped - current daily,Master: missing (don't know/refused),3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, [SMK_203]",,cont,NA::b,N/A,missing,missing,years,else,else,Age daily (curr),Age started smoking daily - current daily (derived),PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_005, SMK_040]",,N/A,Func::calculate_SMKG203_cont,N/A,N/A,Age in years,years,N/A,Age in years,Age daily (ever),Age started smoking daily grouped - current daily,Master post-2015: filter SMK_040 by current daily status,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_005, SMK_040]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (ever),Age started smoking daily grouped - current daily,,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_005, SMK_040]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (ever),Age started smoking daily grouped - current daily,,3.0.0-alpha,2026-01-04,active,Removed _i. Clearer label. PUMF only for 2001-2021.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,3,10,15 to 19 years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_NAa,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203",ICES altered,cat,NA::b,10,missing,missing,years,else,else,Age 1st cig (daily),"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_1,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_2,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_3,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,3,10,15 to 19 years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 to 19 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_4,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_5,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_6,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_7,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_8,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_9,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_10,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,84]",50 Years or more,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_NAa,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_NAb,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG203_pre2005,SMKG203_pre2005_cat10_NAb,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203",ICES altered,cont,NA::b,10,missing,missing,years,else,else,Start age - daily smoker,"Age started smoking daily - current daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_1,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,1,5 To 11 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_2,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,2,12 To 14 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_3,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,3,15 To 17 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_4,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,4,18 To 19 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_5,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,5,20 To 24 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_6,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,6,25 To 29 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_7,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,7,30 To 34 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_8,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,8,35 To 39 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_9,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,9,40 To 44 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_10,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,10,45 To 49 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_11,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,11,50 Years or more,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_NAa,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_NAb,cat,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,else,else,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_1,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,1,11,5 To 11 Years,age (5 to 11) started smoking daily - former daily smoker,years,"[5,12)",5 To 11 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_2,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,2,11,12 To 14 Years,age (12 to 14) started smoking daily - former daily smoker,years,"[12,15)",12 To 14 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_3,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,3,11,15 To 17 Years,age (15 to 17) started smoking daily - former daily smoker,years,"[15,18)",15 To 17 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_4,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,4,11,18 To 19 Years,age (18 to 19) started smoking daily - former daily smoker,years,"[18,20)",18 To 19 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_5,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,5,11,20 To 24 Years,age (20 to 24) started smoking daily - former daily smoker,years,"[20,25)",20 To 24 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_6,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,6,11,25 To 29 Years,age (25 to 29) started smoking daily - former daily smoker,years,"[25,30)",25 To 29 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_7,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,7,11,30 To 34 Years,age (30 to 34) started smoking daily - former daily smoker,years,"[30,35)",30 To 34 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_8,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,8,11,35 To 39 Years,age (35 to 39) started smoking daily - former daily smoker,years,"[35,40)",35 To 39 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_9,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,9,11,40 To 44 Years,age (40 to 44) started smoking daily - former daily smoker,years,"[40,45)",40 To 44 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_10,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,10,11,45 To 49 Years,age (45 to 49) started smoking daily - former daily smoker,years,"[45,50)",45 To 49 Years,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_11,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,11,11,50 Years or more,age (50 plus) started smoking daily - former daily smoker,years,"[50,80]",50 Years or more,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_NAa,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,NA::a,11,not applicable,not applicable,years,996,not applicable,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_NAb,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,11,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_2005plus,SMKG207_2005plus_cat11_NAb,cat,"cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2005_m::SMKE_207, [SMK_207]",ICES altered,cont,NA::b,11,missing,missing,years,else,else,Age daily fmr (2005+ cat),"Age started smoking daily - former daily (2005+, 11-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,8,10,5-11 years,Midpoint of 5-11 years,years,1,5-11 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,13,10,12-14 years,Midpoint of 12-14 years,years,2,12-14 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,17,10,15-19 years,Midpoint of 15-19 years,years,3,15-19 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,22,10,20-24 years,Midpoint of 20-24 years,years,4,20-24 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,27,10,25-29 years,Midpoint of 25-29 years,years,5,25-29 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,32,10,30-34 years,Midpoint of 30-34 years,years,6,30-34 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,37,10,35-39 years,Midpoint of 35-39 years,years,7,35-39 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,42,10,40-44 years,Midpoint of 40-44 years,years,8,40-44 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,47,10,45-49 years,Midpoint of 45-49 years,years,9,45-49 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,55,10,50+ years,Assumed midpoint for 50+,years,10,50+ years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",,cat,NA::b,10,missing,missing,years,else,else,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,8,11,5-11 years,Midpoint of 5-11 years,years,1,5-11 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,13,11,12-14 years,Midpoint of 12-14 years,years,2,12-14 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,16,11,15-17 years,Midpoint of 15-17 years,years,3,15-17 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,18.5,11,18-19 years,Midpoint of 18-19 years,years,4,18-19 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,22,11,20-24 years,Midpoint of 20-24 years,years,5,20-24 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,27,11,25-29 years,Midpoint of 25-29 years,years,6,25-29 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,32,11,30-34 years,Midpoint of 30-34 years,years,7,30-34 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,37,11,35-39 years,Midpoint of 35-39 years,years,8,35-39 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,42,11,40-44 years,Midpoint of 40-44 years,years,9,40-44 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,47,11,45-49 years,Midpoint of 45-49 years,years,10,45-49 years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,55,11,50+ years,Assumed midpoint for 50+,years,11,50+ years,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::a,11,not applicable,not applicable,years,96,not applicable,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::SMKEG207, [SMKG207]",,cat,NA::b,11,missing,missing,years,else,else,Age daily (ever),Age started smoking daily grouped - former daily,PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMK_030, SMKG040_cont]",,N/A,Func::calculate_SMKG207_cont,N/A,N/A,Age in years (pseudo-continuous),years,N/A,Age in years (1 to 55),Age daily (fmr),Age started smoking daily - former daily (derived),PUMF: midpoint imputation from grouped categories,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMK_030, SMKG040_cont]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (fmr),Age started smoking daily - former daily (derived),,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMK_030, SMKG040_cont]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (fmr),Age started smoking daily - former daily (derived),,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, [SMK_207]",,cat,copy,N/A,years,Midpoint of 12-14 years,years,"[8,95]",Age in years (8 to 95),Age daily (ever),Age started smoking daily grouped - former daily,Master: direct pass-through of continuous values,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, [SMK_207]",,cat,NA::a,N/A,not applicable,not applicable,years,996,not applicable,Age daily (ever),Age started smoking daily grouped - former daily,Master: valid skip (not in universe),3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, [SMK_207]",,cat,NA::b,N/A,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age daily (ever),Age started smoking daily grouped - former daily,Master: missing (don't know/refused),3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_030, SMK_040]",,N/A,Func::calculate_SMKG207_cont,N/A,N/A,Age in years,years,N/A,Age in years,Age daily (ever),Age started smoking daily grouped - former daily,Master 2015+: filter by former daily status,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_030, SMK_040]",,cont,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Age daily (ever),Age started smoking daily grouped - former daily,,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_cont,N/A,cont,"cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_030, SMK_040]",,cont,NA::b,N/A,missing,missing,years,N/A,missing,Age daily (ever),Age started smoking daily grouped - former daily,,3.0.0-alpha,2026-01-04,active,Removed _s/_i. Clearer label. PUMF only for 2001-2021.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_1,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,1,5 To 11 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_2,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,2,12 To 14 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_3,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,3,10,15 to 19 years,age (15 to 19) started smoking daily - daily smoker,years,3,15 to 19 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_4,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,4,20 To 24 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_5,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,5,25 To 29 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_6,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,6,30 To 34 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_7,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,7,35 To 39 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_8,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,8,40 To 44 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_9,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,9,45 To 49 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_10,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,10,50 Years or more,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_NAa,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,NA::a,10,not applicable,not applicable,years,96,not applicable,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,NA::b,10,missing,missing,years,"[97,99]",don't know (97); refusal (98); not stated (99),Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_NAb,cat,"cchs2001_p, cchs2003_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207",ICES altered,cat,NA::b,10,missing,missing,years,else,else,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_1,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,1,10,5 To 11 Years,age (5 to 11) started smoking daily - daily smoker,years,"[5,12)",5 To 11 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_2,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,2,10,12 To 14 Years,age (12 to 14) started smoking daily - daily smoker,years,"[12,15)",12 To 14 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_3,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,3,10,15 to 19 years,age (15 to 19) started smoking daily - daily smoker,years,"[15,20)",15 To 19 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_4,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,4,10,20 To 24 Years,age (20 to 24) started smoking daily - daily smoker,years,"[20,25)",20 To 24 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_5,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,5,10,25 To 29 Years,age (25 to 29) started smoking daily - daily smoker,years,"[25,30)",25 To 29 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_6,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,6,10,30 To 34 Years,age (30 to 34) started smoking daily - daily smoker,years,"[30,35)",30 To 34 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_7,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,7,10,35 To 39 Years,age (35 to 39) started smoking daily - daily smoker,years,"[35,40)",35 To 39 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_8,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,8,10,40 To 44 Years,age (40 to 44) started smoking daily - daily smoker,years,"[40,45)",40 To 44 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_9,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,9,10,45 To 49 Years,age (45 to 49) started smoking daily - daily smoker,years,"[45,50)",45 To 49 Years,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_10,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,10,10,50 Years or more,age (50 or more) started smoking daily - daily smoker,years,"[50,80]",50 Years or more,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_NAa,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,NA::a,10,not applicable,not applicable,years,996,not applicable,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_NAb,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,NA::b,10,missing,missing,years,"[997,999]",don't know (997); refusal (998); not stated (999),Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +SMKG207_pre2005,SMKG207_pre2005_cat10_NAb,cat,"cchs2001_m, cchs2003_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207",ICES altered,cont,NA::b,10,missing,missing,years,else,else,Age daily fmr (pre-2005 cat),"Age started smoking daily - former daily (pre-2005, 10-category)",,3.0.0-alpha,2026-01-04,active,Migrated from production. Converted deprecated _i suffix to _m.,, +smoke_simple,smoke_simple_catN/A_Func::smoke_simple_fun,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,Func::smoke_simple_fun,N/A,N/A,N/A,N/A,N/A,N/A,Simple smoking status,"Simplified smoking status (current, former, never)",,2.2.0,2025-11-18,active,,, +smoke_simple,smoke_simple_cat4_0,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,0,4,Non-smoker (never smoked),Non-smoker (never smoked),N/A,N/A,Non-smoker (never smoked),Simple smoking status,"Simplified smoking status (current, former, never)",,2.2.0,2025-11-18,active,,, +smoke_simple,smoke_simple_cat4_1,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,1,4,Current smoker (daily and occasional),Current smoker (daily and occasional),N/A,N/A,Current smoker (daily and occasional),Simple smoking status,"Simplified smoking status (current, former, never)",,2.2.0,2025-11-18,active,,, +smoke_simple,smoke_simple_cat4_2,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,2,4,Former daily smoker quit less than 5 years or former occasional smoker,Former daily smoker quit less than 5 years or former occasional smoker,N/A,N/A,Former daily smoker quit less than 5 years or former occasional smoker,Simple smoking status,"Simplified smoking status (current, former, never)",,2.2.0,2025-11-18,active,,, +smoke_simple,smoke_simple_cat4_3,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,3,4,Former daily smoker quit >5 years,Former daily smoker quit >5 years,N/A,N/A,Former daily smoker quit >5 years,Simple smoking status,"Simplified smoking status (current, former, never)",,2.2.0,2025-11-18,active,,, +smoke_simple,smoke_simple_cat4_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,NA::a,4,not applicable,not applicable,N/A,N/A,not applicable,Simple smoking status,"Simplified smoking status (current, former, never)",,2.2.0,2025-11-18,active,,, +smoke_simple,smoke_simple_cat4_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,N/A,NA::b,4,missing,missing,N/A,N/A,missing,Simple smoking status,"Simplified smoking status (current, former, never)",,2.2.0,2025-11-18,active,,, +smoked_100_lifetime,smoked_100_lifetime_catN/A_Func::calculate_smoked_100_lifetime,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_01A],,cat,Func::calculate_smoked_100_lifetime,2,N/A,,,N/A,Ever smoked 100+ cigarettes,,,,3.0.0-alpha,2026-02-23,active,,, +smoked_100_lifetime,smoked_100_lifetime_cat2_NAa,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_01A],,cat,NA::a,2,not applicable,not applicable,,N/A,not applicable,,,,3.0.0-alpha,2026-02-23,active,,, +smoked_100_lifetime,smoked_100_lifetime_cat2_NAb,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m",DerivedVar::[SMK_01A],,cat,NA::b,2,missing,missing,,N/A,missing,,,,3.0.0-alpha,2026-02-23,active,,, +SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_01,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_005,cchs2017_2018_p::SPS_005,[SPS_01]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people to depend on for help,Five-item social provision scale -There are people I can depend on to help me if I really need it.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_02,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_010,cchs2017_2018_p::SPS_010,[SPS_02]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - people who enjoy same social activities,Five-item social provision scale -There are people who enjoy the same social activities I do.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_03,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_015,cchs2017_2018_p::SPS_015,[SPS_03]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - close relationships,Five-item social provision scale - I have close relationships that provide me with a sense of emotional security and well-being.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_04,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_020,cchs2017_2018_p::SPS_020,[SPS_04]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - important decision discussion,Five-item social provision scale - There is someone I could talk to about important decisions in my life.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_05,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_025,cchs2017_2018_p::SPS_025,[SPS_05]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - competence and skill are recognized,Five-item social provision scale - I have relationships where my competence and skill are recognized.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_06,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_030,cchs2017_2018_p::SPS_030,[SPS_06]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - trustworthy person for advice,Five-item social provision scale - There is a trustworthy person I could turn to for advice if I were having problems.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_07,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_035,cchs2017_2018_p::SPS_035,[SPS_07]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - group with shared attitudes and beliefs,Five-item social provision scale - I feel part of a group of people who share my attitudes and beliefs.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_08,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_040,cchs2017_2018_p::SPS_040,[SPS_08]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond with a least one person,Five-item social provision scale - I feel a strong emotional bond with at least one other person.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_09,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_045,cchs2017_2018_p::SPS_045,[SPS_09]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - admired talents and abilities,Five-item social provision scale - There are people who admire my talents and abilities.,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",NA,cat,1,4,Strongly agree,Strongly agree,N/A,1,Strongly agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,"For CCHS cycles 2015-2018, question was not asked in proxy interview",2.2.0,2025-06-30,active,NA,NA,NA +SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",NA,cat,2,4,Agree,Agree,N/A,2,Agree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",NA,cat,3,4,Disagree,Disagree,N/A,3,Disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",NA,cat,4,4,Strongly disagree,Strongly disagree,N/A,4,Strongly disagree,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",NA,cat,NA::a,4,not applicable,not applicable,N/A,6,not applicable,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",NA,cat,NA::b,4,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS_10,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","cchs2015_2016_p::SPS_050,cchs2017_2018_p::SPS_050,[SPS_10]",NA,cat,NA::b,4,missing,missing,N/A,else,else,SPS-5 - strong emotional bond,Five-item social provision scale - strong emotional bond with a least one person,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",NA,N/A,Func::SPS_5_fun,N/A,N/A,N/A,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall,NA,2.2.0,2025-06-30,active,NA,NA,NA +SPS5_der,N/A,cont,"cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2012_m","DerivedVar::[SPS_03, SPS_04, SPS_05, SPS_07, SPS_10]",NA,N/A,NA::b,N/A,missing,missing,N/A,N/A,N/A,SPS-5,Five-item social provision scale - overall,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_01],NA,cont,copy,N/A,# friends and relatives,Number of friends and relatives,N/A,"[0,99]",Number of friends and relatives,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_01],NA,cont,NA::a,N/A,not applicable,not applicable,N/A,996,not applicable,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_01],NA,cont,NA::b,N/A,missing,missing,N/A,"[997,999]",don't know (997); refusal (998); not stated (999),MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_01,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_01],NA,cont,NA::b,N/A,missing,missing,N/A,else,else,MOS - number of close friend and relatives,"Medical Outcome Study - Social Support Survey - About how many close friends and close relatives do you have, that is, people you feel at ease with and can talk to about what is on your mind?",NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_02,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_02],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give help if confined to bed,Medical Outcome Study - Social Support Survey - Someone to help you if you were confined to bed,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_03,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_03],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to listen,Medical Outcome Study - Social Support Survey - Someone you can count on to listen to you when you need to talk,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_04,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_04],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to provide/give advice about a crisis,Medical Outcome Study - Social Support Survey - Someone to give you advice about a crisis,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_05,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_05],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to take to doctor,Medical Outcome Study - Social Support Survey - - Someone to take you to the doctor if you needed it,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_06,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_06],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who shows love and affection,Medical Outcome Study - Social Support Survey - Someone who shows you love and affection,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_07,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_07],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to have a good time with,Medical Outcome Study - Social Support Survey - Someone to have a good time with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_08,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_08],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give info to help understand a situation,Medical Outcome Study - Social Support Survey - Someone to give you information in order to help you understand a situation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_09,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_09],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to confide in,Medical Outcome Study - Social Support Survey - Someone to confide in or talk to about yourself or your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_10,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_10],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who gives hugs,Medical Outcome Study - Social Support Survey - Someone who hugs you,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_11,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_11],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to get together with for relaxation,Medical Outcome Study - Social Support Survey - Someone to get together with for relaxation,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_12,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_12],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to prepare meals,Medical Outcome Study - Social Support Survey - Someone to prepare your meals if you were unable to do it yourself,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_13,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_13],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to give advice,Medical Outcome Study - Social Support Survey - Someone whose advice you really want,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_14,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_14],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do things to get mind off things,Medical Outcome Study - Social Support Survey - Someone to do things with to help you get your mind off things,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_15,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_15],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to help with daily chores if sick,Medical Outcome Study - Social Support Survey - Someone to help with daily chores if you were sick,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_16,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_16],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to share most private worries and fears with,Medical Outcome Study - Social Support Survey - Someone to share your most private worries and fears with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_17,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_17],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to turn to for suggestions for personal problems,Medical Outcome Study - Social Support Survey - Someone to turn to for suggestions about how to deal with a personal problem,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_18,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_18],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone to do something enjoyable with,Medical Outcome Study - Social Support Survey - Someone to do something enjoyable with,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_19,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_19],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who understands problems,Medical Outcome Study - Social Support Survey - Someone who understands your problems,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,1,5,None of the time,None of the time,N/A,1,None of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,2,5,A little of the time,A little of the time,N/A,2,A little of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,3,5,Some of the time,Some of the time,N/A,3,Some of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,4,5,Most of the time,Most of the time,N/A,4,Most of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,5,5,All of the time,All of the time,N/A,5,All of the time,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,NA::a,5,not applicable,not applicable,N/A,6,not applicable,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,NA::b,5,missing,missing,N/A,"[7,9]",don't know (7); refusal (8); not stated (9),MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +SSA_20,N/A,cont,"cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2009_m, cchs2010_m, cchs2012_m",[SSA_20],NA,cat,NA::b,5,missing,missing,N/A,else,else,MOS - has someone who loves and makes feel wanted,Medical Outcome Study - Social Support Survey - Someone to love you and make you feel wanted,NA,2.2.0,2025-06-30,active,NA,NA,NA +time_quit_smoking,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMK_09A_cont, SMK_06A_cont]",,N/A,Func::calculate_time_quit_smoking,N/A,N/A,N/A,years,N/A,Years since quit,Yrs since quit smoking,Years since quit smoking (combined former daily and occasional),3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMK_09A_cont, SMK_06A_cont]",,N/A,NA::a,N/A,not applicable,not applicable,years,N/A,not applicable,Yrs since quit smoking,Years since quit smoking (combined former daily and occasional),Never smoker or current smoker,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMK_09A_cont, SMK_06A_cont]",,N/A,NA::b,N/A,missing,missing,years,N/A,missing,Yrs since quit smoking,Years since quit smoking (combined former daily and occasional),Missing all input sources,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_complete,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate, SMK_06A_cont, SMK_09A_cont, SMK_10A_cont]",,N/A,Func::calculate_time_quit_smoking_complete,2,,,years,N/A,,Yrs quit smoking completely,Years since quit smoking completely,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_complete,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate, SMK_06A_cont, SMK_09A_cont, SMK_10A_cont]",,N/A,NA::a,2,not applicable,not applicable,years,N/A,not applicable,Yrs quit smoking completely,Years since quit smoking completely,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_complete,N/A,cont,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_10_gate, SMK_06A_cont, SMK_09A_cont, SMK_10A_cont]",,N/A,NA::b,2,missing,missing,years,N/A,missing,Yrs quit smoking completely,Years since quit smoking completely,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_daily,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMKDSTY_cat5, SMK_09A_cont]",,N/A,Func::calculate_time_quit_smoking_daily,2,,,years,N/A,,Yrs quit smoking daily,Years since quit smoking daily - former daily smokers,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_daily,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_09A_cont, SMK_09C]",,N/A,Func::calculate_time_quit_smoking_daily,2,,,years,N/A,,Yrs quit smoking daily,Years since quit smoking daily - former daily smokers,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_daily,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMKDSTY_cat5, SMK_09A_cont]",,N/A,NA::a,2,not applicable,not applicable,years,N/A,not applicable,Yrs quit smoking daily,Years since quit smoking daily - former daily smokers,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_daily,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_09A_cont, SMK_09C]",,N/A,NA::a,2,not applicable,not applicable,years,N/A,not applicable,Yrs quit smoking daily,Years since quit smoking daily - former daily smokers,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_daily,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p","DerivedVar::[SMKDSTY_cat5, SMK_09A_cont]",,N/A,NA::b,2,missing,missing,years,N/A,missing,Yrs quit smoking daily,Years since quit smoking daily - former daily smokers,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +time_quit_smoking_daily,N/A,cont,"cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_09A_cont, SMK_09C]",,N/A,NA::b,2,missing,missing,years,N/A,missing,Yrs quit smoking daily,Years since quit smoking daily - former daily smokers,3.0.0,3.0.0-alpha,2026-01-04,active,"Label clarified. Added Master 2001-2023, PUMF 2001-2018. Extended PUMF to 2019-2023 (2021_p, 2023_p need DDI confirmation).",, +WTS_M,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]",NA,N/A,copy,N/A,N/A,N/A,N/A,"[1.07,71809.93]",N/A,Weight,Weights,NA,2.2.0,2025-06-30,active,NA,NA,NA +WTS_S,N/A,cont,"cchs2009_m, cchs2010_m, cchs2012_m",[WTS_S],NA,N/A,copy,N/A,N/A,N/A,N/A,"[2.94,65198.17]",N/A,Weight - Share,NA,NA,2.2.0,2025-06-30,active,NA,NA,NA diff --git a/worksheets/cshgm-variable-details.csv b/worksheets/cshgm-variable-details.csv deleted file mode 100644 index 85607f5..0000000 --- a/worksheets/cshgm-variable-details.csv +++ /dev/null @@ -1,28 +0,0 @@ -variable,dummyVariable,typeEnd,databaseStart,variableStart,typeStart,recEnd,numValidCat,catLabel,catLabelLong,units,recStart,catStartLabel,variableStartShortLabel,variableStartLabel,notes -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,Func::SurveyCycle.fun,10,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2001_p,10,cchs2001_p,2001 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2003_p,10,cchs2003_p,2003 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2005_p,10,cchs2005_p,2005 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2007_2008_p,10,cchs2007_2008_p,2007 to 2008 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2009_2010_p,10,cchs2009_2010_p,2009 to 2010 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2010_p,10,cchs2010_p,2010 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2011_2012_p,10,cchs2011_2012_p,2011 to 2012 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2012_p,10,cchs2012_p,2012 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2013_2014_p,10,cchs2013_2014_p,2013 to 2014 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -SurveyCycle,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],N/A,cchs2014_p,10,cchs2014_p,2014 cycle,N/A,N/A,N/A,Dataset name,Dataset name, -resp_cond_der_2,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_condition_der],cat,1,2,Yes,"Has respiratory condition: Asthma, COPD/Emphysema, Bronchitis",N/A,1,Over 35 years with condition,Respiratory condition,Respiratory condition, -resp_cond_der_2,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_condition_der],cat,1,2,Yes,"Has respiratory condition: Asthma, COPD/Emphysema, Bronchitis",N/A,2,Under 35 years with condition,Respiratory condition,Respiratory condition, -resp_cond_der_2,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_condition_der],cat,2,2,No,"Does not have any of Asthma, COPD/Emphysema or Bronchitis",N/A,3,No condition,Respiratory condition,Respiratory condition, -resp_cond_der_2,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_condition_der],cat,NA::b,2,missing,missing,N/A,NA::b,missing,Respiratory condition,Respiratory condition, -resp_cond_der_2,N/A,cat,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_condition_der],cat,NA::a,2,not applicable,not applicable,N/A,else,not applicable,Respiratory condition,Respiratory condition, -HUI3_beta_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUIDHSI],N/A,Func::hui_beta_transform,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -HUI3_beta_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUIDHSI],N/A,"(0,1)",N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -ALWDWKY_HUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[ALCDTTM, ALWDWKY]",N/A,Func::ALWDWKY_HUI,N/A,N/A,N/A,drinks/week,N/A,N/A,N/A,N/A,"In CCHS, non-drinkers have their drinks/week set to non-applicable. For the predictive model, we set them to zero." -ALWDWKY_HUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[ALCDTTM, ALWDWKY]",N/A,NA::a,N/A,not applicable,not applicable,drinks/week,N/A,not applicable (996),drinks/week,Weekly consumption of alcohol, -ALWDWKY_HUI,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[ALCDTTM, ALWDWKY]",N/A,NA::b,N/A,missing,missing,drinks/week,N/A,don't know (997); refusal (998); not stated (999),drinks/week,Weekly consumption of alcohol, -HUI3_arc_sine_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUIDHSI],cont,Func::hui_arc_sine_transform,N/A,N/A,N/A,N/A,N/A,N/A,HUI3,Health Utility Index Mark 3, -HUI3_arc_sine_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUIDHSI],cont,"[-1,1]",N/A,N/A,N/A,N/A,N/A,N/A,HUI3,Health Utility Index Mark 3, -HUI3_arc_sine_back_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUI3_arc_sine_transformed],cont,Func::hui_arc_sine_back_transformed,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -HUI3_arc_sine_back_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUI3_arc_sine_transformed],cont,"[-0.36,1]",N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -HUI3_beta_back_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUI3_beta_transformed],cont,Func::hui_beta_back_transformed,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, -HUI3_beta_back_transformed,N/A,cont,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HUI3_beta_transformed],cont,"[-0.36,1]",N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A, diff --git a/worksheets/cshgm-variables-2.csv b/worksheets/cshgm-variables-2.csv deleted file mode 100644 index b7e8622..0000000 --- a/worksheets/cshgm-variables-2.csv +++ /dev/null @@ -1,37 +0,0 @@ -Ontario_role,Ontario_variable,cchsflow_included,variable,label,labelLong,section,subject,variableType,units,databaseStart,variableStart,description,role,transformationType -,,yes,SMK_005,Type of smoker presently,Type of smoker presently,Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[SMK_005],, -sensitivity testing,,yes,SMK_01A,s100,"In lifetime, smoked 100 or more cigarettes",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2001_i::SMKA_01A, cchs2003_i::SMKC_01A, cchs2005_i::SMKE_01A, cchs2015_2016_i::SMK_020, cchs2017_2018_i::SMK_020, [SMK_01A]",, -required,smkc_01b,no,SMK_01B,,Ever smoked whole cigarette,,,,,,,,, -,,yes,SMK_030,Smoked daily - lifetime (occasional/former smoker),Smoked daily - lifetime (occasional/former smoker),Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p",[SMK_030],, -,,yes,SMK_05B,cigdayo,# of cigarettes smoked daily - occasional smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, [SMK_05B], cchs2001_1::SMKA_05B, cchs2003_i::SMKC_05B, cchs2005_i::SMKE_05B, cchs2015_2016_i::SMK_050, cchs2017_2018_i::SMK_050, [SMK_05B]",, -,,yes,SMK_05C,Number of days - smoked 1 cigarette or more (occ. smoker),"In the past month, on how many days have you smoked 1 or more cigarettes?",Health behaviour,Smoking,Continuous,days,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, [SMK_05C], cchs2001_i::SMKA_05C, cchs2003_i::SMKC_05C, cchs2005_i::SMKE_05C, cchs2015_2016_i::SMK_055, cchs2017_2018_i::SMK_055, [SMK_05C]",, -,,yes,SMK_05D,evd,Ever smoked cigarettes daily - occasional smoker,Health behaviour,Smoking,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, [SMK_05D]",, -,,yes,SMK_06A_A,stpn,When did you stop smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,,cchs2001_p,cchs2001_p::SMKA_06A,, -,,yes,SMK_06A_B,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",, -required,smkc_06a-c,yes,SMK_06A_cont,stpn,When did you stop smoking daily - occasional,Health behaviour,Smoking,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKA_06A, cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_100, cchs2017_2018_p::SMK_100, [SMK_06A]",, -,,yes,SMK_09A_A,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,,cchs2001_p,cchs2001_p::SMKA_09A,, -,,yes,SMK_09A_B,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, [SMK_09A]",, -,smkc_10a-c,yes,SMK_09A_cont,stpd,When did you stop smoking daily - former daily,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_09A, cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2001_i::SMKA_09A, cchs2003_i::SMKC_09A, cchs2005_i::SMKE_09A, cchs2015_2016_i::SMK_080, cchs2017_2018_i::SMK_080, [SMK_09A]",, -required,smkc_204,yes,SMK_204,cigdayd,# of cigarettes smoked daily - daily smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, [SMK_204]",, -required,smkc_208,yes,SMK_208,# of cigarettes smoke each day - former daily,# of cigarettes smoked each day - former daily smoker,Health behaviour,Smoking,Continuous,cigarettes,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, [SMK_208]",, -,,yes,SMKDSTY_A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2001_i::SMKADSTY, cchs2003_i::SMKCDSTY, cchs2005_i::SMKEDSTY, [SMKDSTY]","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)", -,,yes,SMKDSTY_B,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, experimental, never",Health behaviour,Smoking,Categorical,N/A,,"cchs2015_2016_p, cchs2017_2018_p","cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY",, -,,yes,SMKDSTY_cat3,Smoking status,"Type of smoker: current, former, never",Health behaviour,Smoking,Categorical,N/A,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]",Re-categorization of SMKDSTY to be used for smoking imputation, -,,yes,SMKDSTY_cat5,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,Yes,"cchs2015_2016_p, cchs2017_2018, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]","Re-categorization of SMKDSTY to be used for smoking imputation. SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category", -,,yes,SMKG01C_A,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2001_i::SMKAG01C, cchs2003_i::SMKC_01C, cchs2005_i::SMKE_01C, cchs2015_2016_i::SMK_035, cchs2017_2018_i::SMK_035, [SMK_01C]",, -,,yes,SMKG01C_B,agec1,Age smoked first cigarette,Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, [SMKG01C]",, -,,yes,SMKG01C_cont,agec1,Age smoked first cigarette,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2009_s::SMK_01C, cchs2010_s::SMK_01C, cchs2012_s::SMK_01C, cchs2003_i::SMKC_01c, cchs2005_i::SMKE_01C, [SMKG01C]",, -,,yes,SMKG040,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Categorical,Years,,"cchs2015_2016_p, cchs2017_2018_p",[SMKG040],, -,,yes,SMKG040_cont,agecigdfd,Age started to smoke daily - daily/former daily smoker,Health behaviour,Smoking,Continuous,Years,,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKG203_cont, SMKG207_cont], [SMKG040]",, -,,yes,SMKG06C,stpny,Years since stopped smoking daily - never daily,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2003_p::SMKCG06C, cchs2005_p::SMKEG06C, cchs2009_s::SMK_06C, cchs2010_s::SMK_06C, cchs2012_s::SMK_06C, [SMKG06C]",, -,,yes,SMKG09C,stpdy,Years since stopped smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i, cchs2015_2016_i, cchs2017_2018_i","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, cchs2015_2016_p::SMKG090, cchs2017_2018_p::SMKG090, cchs2009_s::SMK_09C, cchs2010_s::SMK_09C, cchs2012_s::SMK_09C, cchs2003_i::SMKC_09C, cchs2005_i::SMKE_09C, cchs2015_2016_i::SMK_090, cchs2017_2018_i::SMK_090, [SMKG09C]",, -,,yes,SMKG203_A,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2001_i::SMKAG203, cchs2003_i::SMKC_203, cchs2005_i::SMKE_203, [SMK_203]",, -,,yes,SMKG203_B,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, [SMKG203]",, -required,smkc_203,yes,SMKG203_cont,agecigd,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2005_p::SMKEG203, cchs2009_s::SMK_203, cchs2010_s::SMK_203, cchs2012_s::SMK_203, cchs2001_i::SMKAG203, [SMKG203], DerivedVar::[SMK_005, SMKG040]",, -,,yes,SMKG207_A,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,Yes,"cchs2001_p, cchs2003_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2001_i, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2001_i::SMKAG207, cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMK_207]",, -,,yes,SMKG207_B,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Categorical,Years,,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, [SMKG207]",, -,,yes,SMKG207_cont,agecigfd,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Continuous,Years,Yes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s, cchs2003_i, cchs2005_i, cchs2007_2008_i, cchs2009_2010_i, cchs2011_2012_i, cchs2013_2014_i ","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2005_p::SMKEG207, cchs2009_s::SMK_207, cchs2010_s::SMK_207, cchs2012_s::SMK_207, cchs2003_i::SMKC_207, cchs2005_i::SMKE_207, [SMKG207], DerivedVar::[SMK_030, SMKG040]",, -,,yes,pack_years_cat,Categorical PackYears,Categorical smoking pack-years,Health behaviour,Smoking,Categorical,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pack_years_der],Derived categorical variable using pack_years_der, -,,yes,pack_years_der,PackYears,Smoking pack-years,Health behaviour,Smoking,Continuous,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",, -,,yes,smoke_simple,Simple smoking status,Simple smoking status,Health behaviour,Smoking,Categorical,N/A,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",, -,,yes,time_quit_smoking,Time since quit,Time since quit smoking,Health behaviour,Smoking,Continuous,Years,,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[SMK_09A_B, SMKG09C]",, \ No newline at end of file diff --git a/worksheets/cshgm-variables.csv b/worksheets/cshgm-variables.csv deleted file mode 100644 index 35a66cc..0000000 --- a/worksheets/cshgm-variables.csv +++ /dev/null @@ -1,355 +0,0 @@ -variable,label,labelLong,section,subject,variableType,units,databaseStart,variableStart,description,role,transformationType -ADL_01,Help preparing meals,Needs help - preparing meals,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6A, cchs2003_p::RACC_6A, cchs2005_p::RACE_6A, cchs2007_2008_p::RAC_6A, [ADL_01]",,intermediate,N/A -ADL_02,Help appointments/errands,Needs help - getting to appointments/errands,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6B, cchs2003_p::RACC_6B1, cchs2005_p::RACE_6B1, cchs2007_2008_p::RAC_6B1, [ADL_02]",,intermediate,N/A -ADL_03,Help housework,Needs help - doing housework,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6C, cchs2003_p::RACC_6C, cchs2005_p::RACE_6C, cchs2007_2008_p::RAC_6C, [ADL_03]",,intermediate,N/A -ADL_04,Help personal care,Needs help - personal care,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6E, cchs2003_p::RACC_6E, cchs2005_p::RACE_6E, cchs2007_2008_p::RAC_6E, [ADL_04]",,intermediate,N/A -ADL_05,Help move inside house,Needs help - moving about inside house,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_6F, cchs2003_p::RACC_6F, cchs2005_p::RACE_6F, cchs2007_2008_p::RAC_6F, [ADL_05]",,intermediate,N/A -ADL_score_5,ADL score ,"Derived using the ADL variables common to all cycles from 2001 to 2014 (ADL_01, ADL_02, ADL_03, ADL_04, ADL_05) to represent the number of tasks that an individual needs help with.",Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[ADL_01, ADL_02, ADL_03, ADL_04, ADL_05]",,"intermediate, table-3, sub-group",N/A -ADM_RNO,Sequential record number,Sequential record number,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ADMA_RNO, cchs2003_p::ADMC_RNO, cchs2005_p::ADME_RNO, [ADM_RNO]",,id-generation,N/A -age_X_arthritis,Age and arthritis interaction,Age and arthritis interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_051]",,imputation-predictor,"interact[DHHGAGE_D, CCC_051]" -age_X_BMI,Age and BMI interaction,Age and BMI interaction,Health status,BMI,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, HWTGBMI_der]",,imputation-predictor,"interact[DHHGAGE_D, HWTGBMI_der]" -age_X_bowel_disorder,Age and bowel disorder interaction,Age and bowel disorder interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_171]",,imputation-predictor,"interact[DHHGAGE_D, CCC_171]" -age_X_cancer,Age and cancer interaction,Age and cancer interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_131]",,imputation-predictor,"interact[DHHGAGE_D, CCC_131]" -age_X_diabetes,Age and diabetes interaction,Age and diabetes interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_101]",,imputation-predictor,"interact[DHHGAGE_D, CCC_101]" -age_X_diet,Age and diet score interaction,Age and diet score interaction,Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, diet_score]",,imputation-predictor,"interact[DHHGAGE_D, diet_score]" -age_X_drinker_type,Age and drinker type interaction,Age and drinker type interaction,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, ALCDTTM]",,imputation-predictor,"interact[DHHGAGE_D, ALCDTTM]" -age_X_drinks_last_week,Age and drinks last week interaction,Age and drinks last week interaction,Health behaviour,Alcohol,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, ALWDWKY_HUI]",,imputation-predictor,"interact[DHHGAGE_D, ALWDWKY_HUI]" -age_X_education,Age and education interaction,Age and education interaction,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, EDUDR04]",,imputation-predictor,"interact[DHHGAGE_D, EDUDR04]" -age_X_hbp,Age and high blood pressure interaction,Age and high blood pressure interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_071]",,imputation-predictor,"interact[DHHGAGE_D, CCC_071]" -age_X_heart_disease,Age and heart disease interaction,Age and heart disease interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_121]",,imputation-predictor,"interact[DHHGAGE_D, CCC_121]" -age_X_mood_disorder,Age and mood disorder interaction,Age and mood disorder interaction,Health status,Chronic condition,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_280]",,imputation-predictor,"interact[DHHGAGE_D, CCC_280]" -age_X_pack_years,Age and pack years interaction,Age and pack years interaction,Health behaviour,Smoking,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, pack_years_der]",,imputation-predictor,"interact[DHHGAGE_D, pack_years_der]" -age_X_physical_act,Age and physical activity interaction,Age and physical activity interaction,Health behaviour,Exercise,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, PACDEE]",,imputation-predictor,"interact[DHHGAGE_D, PACDEE]" -age_X_respiratory_condition,Age and has respiratory condition interaction,Age and has respiratory condition interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, resp_cond_der_2]",,imputation-predictor,"interact[DHHGAGE_D, resp_cond_der_2]" -age_X_smoking_status,Age and smoking status interaction,Age and smoking status interaction,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, smoke_simple]",,imputation-predictor,"interact[DHHGAGE_D, smoke_simple]" -age_X_stroke,Age and stroke interaction,Age and stroke interaction,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D, CCC_151]",,imputation-predictor,"interact[DHHGAGE_D, CCC_151]" -ALCDTTM,Drinker type (last 12 months),Type of drinker (12 months),Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCADTYP, cchs2003_p::ALCCDTYP, cchs2005_p::ALCEDTYP, [ALCDTTM]",,"intermediate, desc-table, impute-drinker-type-outcome, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -ALCDTTM_cat1,Drinker type dummy variable: Regular,Drinker type dummy variable: Regular,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALCDTTM],,intermediate,"dummy[1, 3]" -ALCDTTM_cat1_C,Centered drinker type dummy variable: Regular,Centered drinker type dummy variable: Regular,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALCDTTM_cat1],,"predictor, missing-data-analysis","center[ALCDTTM_cat1, mean]" -ALCDTTM_cat2,Drinker type dummy variable: Occasional,Drinker type dummy variable: Occasional,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALCDTTM],,intermediate,"dummy[2, 3]" -ALCDTTM_cat2_C,Centered drinker type dummy variable: Occasional,Centered drinker type dummy variable: Occasional,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALCDTTM_cat2],,predictor,"center[ALCDTTM_cat2, mean]" -ALW_1,Any alcohol past week,"Past week, had any alcohol",Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5, cchs2003_p::ALCC_5, cchs2005_p::ALCE_5, [ALW_1]",,intermediate,N/A -ALW_2A1,# of drinks - Sunday,Number of drinks on Sunday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5A1, cchs2003_p::ALCC_5A1, cchs2005_p::ALCE_5A1, [ALW_2A1]",,intermediate,N/A -ALW_2A2,# of drinks - Monday,Number of drinks on Monday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5A2, cchs2003_p::ALCC_5A2, cchs2005_p::ALCE_5A2, [ALW_2A2]",,intermediate,N/A -ALW_2A3,# of drinks - Tuesday,Number of drinks on Tuesday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5A3, cchs2003_p::ALCC_5A3, cchs2005_p::ALCE_5A3, [ALW_2A3]",,intermediate,N/A -ALW_2A4,# of drinks - Wednesday,Number of drinks on Wednesday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5A4, cchs2003_p::ALCC_5A4, cchs2005_p::ALCE_5A4, [ALW_2A4]",,intermediate,N/A -ALW_2A5,# of drinks - Thursday,Number of drinks on Thursday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5A5, cchs2003_p::ALCC_5A5, cchs2005_p::ALCE_5A5, [ALW_2A5]",,intermediate,N/A -ALW_2A6,# of drinks - Friday,Number of drinks on Friday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5A6, cchs2003_p::ALCC_5A6, cchs2005_p::ALCE_5A6, [ALW_2A6]",,intermediate,N/A -ALW_2A7,# of drinks - Saturday,Number of drinks on Saturday,Health behaviour,Alcohol,Continuous,drinks,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCA_5A7, cchs2003_p::ALCC_5A7, cchs2005_p::ALCE_5A7, [ALW_2A7]",,intermediate,N/A -ALWDVLTR_der,Long Term Drinking Risk,Low drinking - Increased long term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ .,sub-group,N/A -ALWDVSTR_der,Short Term Drinking Risk,Low drinking - Increased short term risks due to drinking,Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","DerivedVar::[DHH_SEX, ALWDWKY, ALC_1, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",Risk based on Canada's Low Risk Alcohol Drinking Guidelines. Refer to https://osf.io/ykau5/ .,sub-group,N/A -ALWDWKY,Drinks last week,Weekly consumption of alcohol,Health behaviour,Alcohol,Continuous,drinks/week,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::ALCADWKY, cchs2003_p::ALCCDWKY, cchs2005_p::ALCEDWKY, [ALWDWKY]",,intermediate,N/A -ALWDWKY_C,Centered drinks last week,,Health behaviour,Alcohol,Continuous,drinks/week,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALWDWKY_HUI],,intermediate,"center[ALWDWKY_HUI, mean]" -ALWDWKY_HUI,Drinks last week,Drinks last week variable use for HUIPoRT,Health behaviour,Alcohol,Continuous,drinks/week,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[ALCDTTM, ALWDWKY]",,"desc-table, imputation-predictor, impute-drinks-last-week-outcome, missing-desc-table",N/A -binge_drinker,Binge Drinker,"For individuals who had a drink in the past week, male who had 5 or more drinks in a single day and females who had 4 or more drinks in a single day are classified as binge drinkers",Health behaviour,Alcohol,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHH_SEX, ALW_1, ALW_2A1, ALW_2A2, ALW_2A3, ALW_2A4, ALW_2A5, ALW_2A6, ALW_2A7]",,"intermediate, table-3, sub-group",N/A -BMI_C_rcs1,Centered BMI first RCS variable,Centered BMI first RCS variable,Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HWTGBMI_der_C],,"predictor, missing-data-analysis","rcs[HWTGBMI_der_C, 1]" -BMI_C_rcs2,Centered BMI second RCS variable,Centered BMI second RCS variable,Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HWTGBMI_der_C],,predictor,"rcs[HWTGBMI_der_C, 2]" -BMI_C_rcs3,Centered BMI third RCS variable,Centered BMI third RCS variable,Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HWTGBMI_der_C],,predictor,"rcs[HWTGBMI_der_C, 3]" -CCC_031,Asthma,Do you have asthma?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_031, cchs2003_p::CCCC_031, cchs2005_p::CCCE_031, [CCC_031]",,intermediate,N/A -CCC_051,Arthritis/Rheumatism,Do you have arthritis or rheumatism?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_051, cchs2003_p::CCCC_051, cchs2005_p::CCCE_051, [CCC_051]",,"desc-table, imputation-predictor, intermediate, table-3, missing-desc-table, sub-group",N/A -CCC_051_cat1,Dummy arthritis/rheumatism variable: Yes,Dummy arthritis/rheumatism variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_051],,intermediate,"dummy[1, 2]" -CCC_051_cat1_C,Centered dummy Arthritis/Rheumatism variable: Yes,Centered dummy arthritis/rheumatism variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_051_cat1],,"predictor, missing-data-analysis","center[CCC_051_cat1, mean]" -CCC_071,Hypertension,Do you have high blood pressure,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_071, cchs2003_p::CCCC_071, cchs2005_p::CCCE_071, [CCC_071]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -CCC_071_cat1,Dummy hypertension variable: Yes,Dummy hypertension variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_071],,intermediate,"dummy[1, 2]" -CCC_071_cat1_C,Centered dummy hypertension variable: Yes,Centered dummy hypertension variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_071_cat1],,"predictor, missing-data-analysis","center[CCC_071_cat1, mean]" -CCC_091,COPD/Emphysema,"Do you have COPD (eg bronchitis, emphysema)",Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_91B, cchs2003_p::CCCC_91B, [CCC_091]",,intermediate,N/A -CCC_101,Diabetes,Do you have diabetes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_101, cchs2003_p::CCCC_101, cchs2005_p::CCCE_101, [CCC_101]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -CCC_101_cat1,Dummy diabetes variable: Yes,Dummy diabetes variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_101],,intermediate,"dummy[1, 2]" -CCC_101_cat1_C,Centered dummy diabetes variable: Yes,Centered dummy diabetes variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_101_cat1],,"predictor, missing-data-analysis","center[CCC_101_cat1, mean]" -CCC_121,Heart Disease,Do you have heart disease,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_121, cchs2003_p::CCCC_121, cchs2005_p::CCCE_121, [CCC_121]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -CCC_121_cat1,Dummy heart disease variable: Yes,Dummy heart disease variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_121],,intermediate,"dummy[1, 2]" -CCC_121_cat1_C,Centered dummy heart disease variable: Yes,Centered dummy heart disease variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_121_cat1],,"predictor, missing-data-analysis","center[CCC_121_cat1, mean]" -CCC_131,Active Cancer,Do you have cancer,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_131, cchs2003_p::CCCC_131, cchs2005_p::CCCE_131, [CCC_131]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -CCC_131_cat1,Dummy active cancer variable: Yes,Dummy active cancer variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_131],,intermediate,"dummy[1, 2]" -CCC_131_cat1_C,Centered dummy active cancer variable: Yes,Centered dummy active cancer variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_131_cat1],,"predictor, missing-data-analysis","center[CCC_131_cat1, mean]" -CCC_151,Stroke,Do you suffer from effects of stroke,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_151, cchs2003_p::CCCC_151, cchs2005_p::CCCE_151, [CCC_151]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -CCC_151_cat1,Dummy stroke variable: Yes,Dummy stroke variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_151],,intermediate,"dummy[1, 2]" -CCC_151_cat1_C,Centered dummy stroke variable: Yes,Centered dummy stroke variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_151_cat1],,"predictor, missing-data-analysis","center[CCC_151_cat1, mean]" -CCC_171,Bowel disorder,Centered dummy stroke variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::CCCA_171, cchs2003_p::CCCC_171, cchs2005_p::CCCE_171, [CCC_171]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -CCC_171_cat1,Dummy bowel disorder variable: Yes,Dummy bowel disorder variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_171],,intermediate,"dummy[1, 2]" -CCC_171_cat1_C,Centered dummy bowel disorder variable: Yes,Centered dummy bowel disorder variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_171_cat1],,"predictor, missing-data-analysis","center[CCC_171_cat1, mean]" -CCC_280,Mood disorder,Do you have a mood disorder,Health status,Chronic condition,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::CCCC_280, cchs2005_p::CCCE_280, [CCC_280]",,"intermediate, desc-table, impute-mood-disorder-outcome, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -CCC_280_cat1,Dummy mood disorder variable: Yes,Dummy mood disorder variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_280],,intermediate,"dummy[1, 2]" -CCC_280_cat1_C,Centered Dummy mood disorder variable: Yes,Centered Dummy mood disorder variable: Yes,Health status,Chronic condition,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[CCC_280_cat1],,"predictor, missing-data-analysis","center[CCC_280_cat1, mean]" -CCC_91A,Bronchitis,Do you have chronic bronchitis?,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p","cchs2001_p::CCCA_91A, cchs2003_p::CCCC_91A, cchs2005_p::CCCE_91A, [CCC_91A]",,intermediate,N/A -CCC_91E,Emphysema,Do you have emphysema?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91E, cchs2007_2008_p::CCC_91E",,intermediate,N/A -CCC_91F,COPD,Do you have COPD?,Health status,Chronic condition,Categorical,N/A,"cchs2005_p, cchs2007_2008_p","cchs2005_p::CCCE_91F, cchs2007_2008_p::CCC_91F",,intermediate,N/A -COPD_Emph_der,COPD/Emphysema,COPD/Emphysema,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2005_p::[DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F]], cchs2007_2008_p::[DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F]], DerivedVar::[DHHGAGE_cont, CCC_091]",,intermediate,N/A -DHH_OWN,Home ownership,Dwelling - owned by a member of hsld,Sociodemographics,Home ownership,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DHHA_OWN, cchs2003_p::DHHC_OWN, cchs2005_p::DHHE_OWN, [DHH_OWN]",,"intermediate, imputation-predictor, table-3",N/A -DHH_OWN_cat1,Dummy Home ownership: Yes,Dummy Home ownership: Yes,Sociodemographics,Home ownership,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHH_OWN],,intermediate,"dummy[1, 2]" -DHH_OWN_cat1_C,Centered dummied home ownership: Yes,Centered dummied home ownership: Yes,Sociodemographics,Home ownership,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHH_OWN_cat1],,"predictor, missing-data-analysis","center[DHH_OWN_cat1, mean]" -DHH_SEX,Sex,Sex,Demographics,Sex,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DHHA_SEX, cchs2003_p::DHHC_SEX, cchs2005_p::DHHE_SEX, [DHH_SEX]",,"model-stratifier, imputation-predictor, table-3, missing-desc-table,",N/A -DHHGAGE_cont,Age,Converted categorical age,Demographics,Age,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, cchs2009_s::DHH_AGE, cchs2010_s::DHH_AGE, cchs2012_s::DHH_AGE, [DHHGAGE]",Continuous age variable,intermediate,N/A -DHHGAGE_D,Age,Age (10-year age groups),Demographics,Age,Categorical,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::DHHAGAGE, cchs2003_p::DHHCGAGE, cchs2005_p::DHHEGAGE, [DHHGAGE]","8 age groups: 12 to 19, 20 to 29, 30 to 39, 40 to 49, 50 to 59, 60 to 69, 70 to 79, 80+ years","table-3, sub-group",N/A -DHHGAGE_D_cat3,Age dummy variable; age (30 to 39),Age dummy variable; age (30 to 39),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D],Age dummy variable; age (30 to 39),intermediate,"dummy[3, 2]" -DHHGAGE_D_cat3_C,Centered Age dummy variable; age (30 to 39),Centered Age dummy variable; age (30 to 39),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D_cat3],Centered Age dummy variable; age (30 to 39),predictor,"center[DHHGAGE_D_cat3, mean]" -DHHGAGE_D_cat3_C_X_ALCDTTM_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered drinker type dummy variable: Regular""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered drinker type dummy variable: Regular""""Centered drinker type dummy variable: Regular""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, ALCDTTM_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,ALCDTTM_cat1_C]" -DHHGAGE_D_cat3_C_X_ALCDTTM_cat2_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered drinker type dummy variable: Occasional""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered drinker type dummy variable: Occasional""""Centered drinker type dummy variable: Occasional""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, ALCDTTM_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,ALCDTTM_cat2_C]" -DHHGAGE_D_cat3_C_X_ALWDWKY_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered drinks last week""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered drinks last week""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, ALWDWKY_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,ALWDWKY_C]" -DHHGAGE_D_cat3_C_X_CCC_051_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""""Centered dummy arthritis/rheumatism variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_051_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_051_cat1_C]" -DHHGAGE_D_cat3_C_X_CCC_071_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy hypertension variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy hypertension variable: Yes""""Centered dummy hypertension variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_071_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_071_cat1_C]" -DHHGAGE_D_cat3_C_X_CCC_101_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy diabetes variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy diabetes variable: Yes""""Centered dummy diabetes variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_101_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_101_cat1_C]" -DHHGAGE_D_cat3_C_X_CCC_121_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy heart disease variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy heart disease variable: Yes""""Centered dummy heart disease variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_121_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_121_cat1_C]" -DHHGAGE_D_cat3_C_X_CCC_131_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy active cancer variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy active cancer variable: Yes""""Centered dummy active cancer variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_131_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_131_cat1_C]" -DHHGAGE_D_cat3_C_X_CCC_151_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy stroke variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy stroke variable: Yes""""Centered dummy stroke variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_151_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_151_cat1_C]" -DHHGAGE_D_cat3_C_X_CCC_171_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy bowel disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered dummy bowel disorder variable: Yes""""Centered dummy bowel disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_171_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_171_cat1_C]" -DHHGAGE_D_cat3_C_X_CCC_280_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered Dummy mood disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered Dummy mood disorder variable: Yes""""Centered Dummy mood disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, CCC_280_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,CCC_280_cat1_C]" -DHHGAGE_D_cat3_C_X_diet_score_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered diet score ""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered diet score """"Centered diet score """,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, diet_score_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,diet_score_C]" -DHHGAGE_D_cat3_C_X_EDUDR04_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Highest education centered dummy variable: Less than high school""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Highest education centered dummy variable: Less than high school""""Highest education centered dummy variable: Less than high school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, EDUDR04_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,EDUDR04_cat1_C]" -DHHGAGE_D_cat3_C_X_EDUDR04_cat2_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Highest education centered dummy variable: High school""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Highest education centered dummy variable: High school""""Highest education centered dummy variable: High school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, EDUDR04_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,EDUDR04_cat2_C]" -DHHGAGE_D_cat3_C_X_EDUDR04_cat3_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Highest education centered dummy variable: Some post-secondary education""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Highest education centered dummy variable: Some post-secondary education""""Highest education centered dummy variable: Some post-secondary education""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, EDUDR04_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,EDUDR04_cat3_C]" -DHHGAGE_D_cat3_C_X_HWTGBMI_der_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered Derived BMI""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered Derived BMI""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, HWTGBMI_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,HWTGBMI_der_C]" -DHHGAGE_D_cat3_C_X_pack_years_der_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered pack years""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered pack years""""""",N/A,N/A,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, pack_years_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,pack_years_der_C]" -DHHGAGE_D_cat3_C_X_physical_act_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered physical activity""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered physical activity""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, physical_act_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,physical_act_C]" -DHHGAGE_D_cat3_C_X_resp_cond_der_2_cat1_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""""Centered respiratory condition dummy variable: Has respiratory condition""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, resp_cond_der_2_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,resp_cond_der_2_cat1_C]" -DHHGAGE_D_cat3_C_X_smoke_simple_cat2_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Simple smoking status centered dummy variable: Current smoker""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Simple smoking status centered dummy variable: Current smoker""""Simple smoking status centered dummy variable: Current smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, smoke_simple_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,smoke_simple_cat2_C]" -DHHGAGE_D_cat3_C_X_smoke_simple_cat3_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, smoke_simple_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,smoke_simple_cat3_C]" -DHHGAGE_D_cat3_C_X_smoke_simple_cat4_C,"interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""","interaction between ""Centered Age dummy variable; age (30 to 39)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat3_C, smoke_simple_cat4_C]",N/A,predictor,"interact[DHHGAGE_D_cat3_C,smoke_simple_cat4_C]" -DHHGAGE_D_cat4,Age dummy variable; age (40 to 49),Age dummy variable; age (40 to 49),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D],Age dummy variable; age (40 to 49),intermediate,"dummy[4, 2]" -DHHGAGE_D_cat4_C,Centered Age dummy variable; age (40 to 49),Centered Age dummy variable; age (40 to 49),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D_cat4],Centered Age dummy variable; age (40 to 49),predictor,"center[DHHGAGE_D_cat4, mean]" -DHHGAGE_D_cat4_C_X_ALCDTTM_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered drinker type dummy variable: Regular""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered drinker type dummy variable: Regular""""Centered drinker type dummy variable: Regular""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, ALCDTTM_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,ALCDTTM_cat1_C]" -DHHGAGE_D_cat4_C_X_ALCDTTM_cat2_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered drinker type dummy variable: Occasional""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered drinker type dummy variable: Occasional""""Centered drinker type dummy variable: Occasional""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, ALCDTTM_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,ALCDTTM_cat2_C]" -DHHGAGE_D_cat4_C_X_ALWDWKY_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered drinks last week""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered drinks last week""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, ALWDWKY_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,ALWDWKY_C]" -DHHGAGE_D_cat4_C_X_CCC_051_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""""Centered dummy arthritis/rheumatism variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_051_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_051_cat1_C]" -DHHGAGE_D_cat4_C_X_CCC_071_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy hypertension variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy hypertension variable: Yes""""Centered dummy hypertension variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_071_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_071_cat1_C]" -DHHGAGE_D_cat4_C_X_CCC_101_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy diabetes variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy diabetes variable: Yes""""Centered dummy diabetes variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_101_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_101_cat1_C]" -DHHGAGE_D_cat4_C_X_CCC_121_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy heart disease variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy heart disease variable: Yes""""Centered dummy heart disease variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_121_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_121_cat1_C]" -DHHGAGE_D_cat4_C_X_CCC_131_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy active cancer variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy active cancer variable: Yes""""Centered dummy active cancer variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_131_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_131_cat1_C]" -DHHGAGE_D_cat4_C_X_CCC_151_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy stroke variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy stroke variable: Yes""""Centered dummy stroke variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_151_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_151_cat1_C]" -DHHGAGE_D_cat4_C_X_CCC_171_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy bowel disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered dummy bowel disorder variable: Yes""""Centered dummy bowel disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_171_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_171_cat1_C]" -DHHGAGE_D_cat4_C_X_CCC_280_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered Dummy mood disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered Dummy mood disorder variable: Yes""""Centered Dummy mood disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, CCC_280_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,CCC_280_cat1_C]" -DHHGAGE_D_cat4_C_X_diet_score_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered diet score ""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered diet score """"Centered diet score """,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, diet_score_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,diet_score_C]" -DHHGAGE_D_cat4_C_X_EDUDR04_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Highest education centered dummy variable: Less than high school""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Highest education centered dummy variable: Less than high school""""Highest education centered dummy variable: Less than high school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, EDUDR04_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,EDUDR04_cat1_C]" -DHHGAGE_D_cat4_C_X_EDUDR04_cat2_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Highest education centered dummy variable: High school""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Highest education centered dummy variable: High school""""Highest education centered dummy variable: High school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, EDUDR04_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,EDUDR04_cat2_C]" -DHHGAGE_D_cat4_C_X_EDUDR04_cat3_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Highest education centered dummy variable: Some post-secondary education""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Highest education centered dummy variable: Some post-secondary education""""Highest education centered dummy variable: Some post-secondary education""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, EDUDR04_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,EDUDR04_cat3_C]" -DHHGAGE_D_cat4_C_X_HWTGBMI_der_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered Derived BMI""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered Derived BMI""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, HWTGBMI_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,HWTGBMI_der_C]" -DHHGAGE_D_cat4_C_X_pack_years_der_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered pack years""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered pack years""""""",N/A,N/A,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, pack_years_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,pack_years_der_C]" -DHHGAGE_D_cat4_C_X_physical_act_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered physical activity""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered physical activity""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, physical_act_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,physical_act_C]" -DHHGAGE_D_cat4_C_X_resp_cond_der_2_cat1_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""""Centered respiratory condition dummy variable: Has respiratory condition""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, resp_cond_der_2_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,resp_cond_der_2_cat1_C]" -DHHGAGE_D_cat4_C_X_smoke_simple_cat2_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Simple smoking status centered dummy variable: Current smoker""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Simple smoking status centered dummy variable: Current smoker""""Simple smoking status centered dummy variable: Current smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, smoke_simple_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,smoke_simple_cat2_C]" -DHHGAGE_D_cat4_C_X_smoke_simple_cat3_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, smoke_simple_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,smoke_simple_cat3_C]" -DHHGAGE_D_cat4_C_X_smoke_simple_cat4_C,"interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""","interaction between ""Centered Age dummy variable; age (40 to 49)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat4_C, smoke_simple_cat4_C]",N/A,predictor,"interact[DHHGAGE_D_cat4_C,smoke_simple_cat4_C]" -DHHGAGE_D_cat5,Age dummy variable; age (50 to 59),Age dummy variable; age (50 to 59),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D],Age dummy variable; age (50 to 59),intermediate,"dummy[5, 2]" -DHHGAGE_D_cat5_C,Centered Age dummy variable; age (50 to 59),Centered Age dummy variable; age (50 to 59),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D_cat5],Centered Age dummy variable; age (50 to 59),predictor,"center[DHHGAGE_D_cat5, mean]" -DHHGAGE_D_cat5_C_X_ALCDTTM_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered drinker type dummy variable: Regular""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered drinker type dummy variable: Regular""""Centered drinker type dummy variable: Regular""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, ALCDTTM_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,ALCDTTM_cat1_C]" -DHHGAGE_D_cat5_C_X_ALCDTTM_cat2_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered drinker type dummy variable: Occasional""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered drinker type dummy variable: Occasional""""Centered drinker type dummy variable: Occasional""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, ALCDTTM_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,ALCDTTM_cat2_C]" -DHHGAGE_D_cat5_C_X_ALWDWKY_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered drinks last week""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered drinks last week""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, ALWDWKY_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,ALWDWKY_C]" -DHHGAGE_D_cat5_C_X_CCC_051_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""""Centered dummy arthritis/rheumatism variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_051_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_051_cat1_C]" -DHHGAGE_D_cat5_C_X_CCC_071_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy hypertension variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy hypertension variable: Yes""""Centered dummy hypertension variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_071_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_071_cat1_C]" -DHHGAGE_D_cat5_C_X_CCC_101_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy diabetes variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy diabetes variable: Yes""""Centered dummy diabetes variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_101_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_101_cat1_C]" -DHHGAGE_D_cat5_C_X_CCC_121_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy heart disease variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy heart disease variable: Yes""""Centered dummy heart disease variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_121_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_121_cat1_C]" -DHHGAGE_D_cat5_C_X_CCC_131_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy active cancer variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy active cancer variable: Yes""""Centered dummy active cancer variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_131_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_131_cat1_C]" -DHHGAGE_D_cat5_C_X_CCC_151_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy stroke variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy stroke variable: Yes""""Centered dummy stroke variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_151_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_151_cat1_C]" -DHHGAGE_D_cat5_C_X_CCC_171_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy bowel disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered dummy bowel disorder variable: Yes""""Centered dummy bowel disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_171_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_171_cat1_C]" -DHHGAGE_D_cat5_C_X_CCC_280_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered Dummy mood disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered Dummy mood disorder variable: Yes""""Centered Dummy mood disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, CCC_280_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,CCC_280_cat1_C]" -DHHGAGE_D_cat5_C_X_diet_score_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered diet score ""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered diet score """"Centered diet score """,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, diet_score_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,diet_score_C]" -DHHGAGE_D_cat5_C_X_EDUDR04_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Highest education centered dummy variable: Less than high school""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Highest education centered dummy variable: Less than high school""""Highest education centered dummy variable: Less than high school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, EDUDR04_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,EDUDR04_cat1_C]" -DHHGAGE_D_cat5_C_X_EDUDR04_cat2_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Highest education centered dummy variable: High school""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Highest education centered dummy variable: High school""""Highest education centered dummy variable: High school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, EDUDR04_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,EDUDR04_cat2_C]" -DHHGAGE_D_cat5_C_X_EDUDR04_cat3_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Highest education centered dummy variable: Some post-secondary education""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Highest education centered dummy variable: Some post-secondary education""""Highest education centered dummy variable: Some post-secondary education""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, EDUDR04_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,EDUDR04_cat3_C]" -DHHGAGE_D_cat5_C_X_HWTGBMI_der_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered Derived BMI""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered Derived BMI""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, HWTGBMI_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,HWTGBMI_der_C]" -DHHGAGE_D_cat5_C_X_pack_years_der_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered pack years""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered pack years""""""",N/A,N/A,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, pack_years_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,pack_years_der_C]" -DHHGAGE_D_cat5_C_X_physical_act_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered physical activity""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered physical activity""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, physical_act_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,physical_act_C]" -DHHGAGE_D_cat5_C_X_resp_cond_der_2_cat1_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""""Centered respiratory condition dummy variable: Has respiratory condition""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, resp_cond_der_2_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,resp_cond_der_2_cat1_C]" -DHHGAGE_D_cat5_C_X_smoke_simple_cat2_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Simple smoking status centered dummy variable: Current smoker""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Simple smoking status centered dummy variable: Current smoker""""Simple smoking status centered dummy variable: Current smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, smoke_simple_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,smoke_simple_cat2_C]" -DHHGAGE_D_cat5_C_X_smoke_simple_cat3_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, smoke_simple_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,smoke_simple_cat3_C]" -DHHGAGE_D_cat5_C_X_smoke_simple_cat4_C,"interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""","interaction between ""Centered Age dummy variable; age (50 to 59)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat5_C, smoke_simple_cat4_C]",N/A,predictor,"interact[DHHGAGE_D_cat5_C,smoke_simple_cat4_C]" -DHHGAGE_D_cat6,Age dummy variable; age (60 to 69),Age dummy variable; age (60 to 69),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D],Age dummy variable; age (60 to 69),intermediate,"dummy[6, 2]" -DHHGAGE_D_cat6_C,Centered Age dummy variable; age (60 to 69),Centered Age dummy variable; age (60 to 69),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D_cat6],Centered Age dummy variable; age (60 to 69),predictor,"center[DHHGAGE_D_cat6, mean]" -DHHGAGE_D_cat6_C_X_ALCDTTM_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered drinker type dummy variable: Regular""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered drinker type dummy variable: Regular""""Centered drinker type dummy variable: Regular""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, ALCDTTM_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,ALCDTTM_cat1_C]" -DHHGAGE_D_cat6_C_X_ALCDTTM_cat2_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered drinker type dummy variable: Occasional""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered drinker type dummy variable: Occasional""""Centered drinker type dummy variable: Occasional""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, ALCDTTM_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,ALCDTTM_cat2_C]" -DHHGAGE_D_cat6_C_X_ALWDWKY_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered drinks last week""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered drinks last week""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, ALWDWKY_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,ALWDWKY_C]" -DHHGAGE_D_cat6_C_X_CCC_051_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""""Centered dummy arthritis/rheumatism variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_051_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_051_cat1_C]" -DHHGAGE_D_cat6_C_X_CCC_071_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy hypertension variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy hypertension variable: Yes""""Centered dummy hypertension variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_071_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_071_cat1_C]" -DHHGAGE_D_cat6_C_X_CCC_101_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy diabetes variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy diabetes variable: Yes""""Centered dummy diabetes variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_101_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_101_cat1_C]" -DHHGAGE_D_cat6_C_X_CCC_121_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy heart disease variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy heart disease variable: Yes""""Centered dummy heart disease variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_121_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_121_cat1_C]" -DHHGAGE_D_cat6_C_X_CCC_131_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy active cancer variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy active cancer variable: Yes""""Centered dummy active cancer variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_131_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_131_cat1_C]" -DHHGAGE_D_cat6_C_X_CCC_151_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy stroke variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy stroke variable: Yes""""Centered dummy stroke variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_151_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_151_cat1_C]" -DHHGAGE_D_cat6_C_X_CCC_171_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy bowel disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered dummy bowel disorder variable: Yes""""Centered dummy bowel disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_171_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_171_cat1_C]" -DHHGAGE_D_cat6_C_X_CCC_280_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered Dummy mood disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered Dummy mood disorder variable: Yes""""Centered Dummy mood disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, CCC_280_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,CCC_280_cat1_C]" -DHHGAGE_D_cat6_C_X_diet_score_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered diet score ""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered diet score """"Centered diet score """,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, diet_score_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,diet_score_C]" -DHHGAGE_D_cat6_C_X_EDUDR04_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Highest education centered dummy variable: Less than high school""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Highest education centered dummy variable: Less than high school""""Highest education centered dummy variable: Less than high school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, EDUDR04_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,EDUDR04_cat1_C]" -DHHGAGE_D_cat6_C_X_EDUDR04_cat2_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Highest education centered dummy variable: High school""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Highest education centered dummy variable: High school""""Highest education centered dummy variable: High school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, EDUDR04_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,EDUDR04_cat2_C]" -DHHGAGE_D_cat6_C_X_EDUDR04_cat3_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Highest education centered dummy variable: Some post-secondary education""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Highest education centered dummy variable: Some post-secondary education""""Highest education centered dummy variable: Some post-secondary education""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, EDUDR04_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,EDUDR04_cat3_C]" -DHHGAGE_D_cat6_C_X_HWTGBMI_der_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered Derived BMI""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered Derived BMI""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, HWTGBMI_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,HWTGBMI_der_C]" -DHHGAGE_D_cat6_C_X_pack_years_der_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered pack years""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered pack years""""""",N/A,N/A,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, pack_years_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,pack_years_der_C]" -DHHGAGE_D_cat6_C_X_physical_act_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered physical activity""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered physical activity""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, physical_act_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,physical_act_C]" -DHHGAGE_D_cat6_C_X_resp_cond_der_2_cat1_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""""Centered respiratory condition dummy variable: Has respiratory condition""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, resp_cond_der_2_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,resp_cond_der_2_cat1_C]" -DHHGAGE_D_cat6_C_X_smoke_simple_cat2_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Simple smoking status centered dummy variable: Current smoker""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Simple smoking status centered dummy variable: Current smoker""""Simple smoking status centered dummy variable: Current smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, smoke_simple_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,smoke_simple_cat2_C]" -DHHGAGE_D_cat6_C_X_smoke_simple_cat3_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, smoke_simple_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,smoke_simple_cat3_C]" -DHHGAGE_D_cat6_C_X_smoke_simple_cat4_C,"interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""","interaction between ""Centered Age dummy variable; age (60 to 69)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat6_C, smoke_simple_cat4_C]",N/A,predictor,"interact[DHHGAGE_D_cat6_C,smoke_simple_cat4_C]" -DHHGAGE_D_cat7,Age dummy variable; age (70 to 79),Age dummy variable; age (70 to 79),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D],Age dummy variable; age (70 to 79),intermediate,"dummy[7, 2]" -DHHGAGE_D_cat7_C,Centered Age dummy variable; age (70 to 79),Centered Age dummy variable; age (70 to 79),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D_cat7],Centered Age dummy variable; age (70 to 79),predictor,"center[DHHGAGE_D_cat7, mean]" -DHHGAGE_D_cat7_C_X_ALCDTTM_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered drinker type dummy variable: Regular""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered drinker type dummy variable: Regular""""Centered drinker type dummy variable: Regular""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, ALCDTTM_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,ALCDTTM_cat1_C]" -DHHGAGE_D_cat7_C_X_ALCDTTM_cat2_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered drinker type dummy variable: Occasional""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered drinker type dummy variable: Occasional""""Centered drinker type dummy variable: Occasional""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, ALCDTTM_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,ALCDTTM_cat2_C]" -DHHGAGE_D_cat7_C_X_ALWDWKY_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered drinks last week""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered drinks last week""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, ALWDWKY_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,ALWDWKY_C]" -DHHGAGE_D_cat7_C_X_CCC_051_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""""Centered dummy arthritis/rheumatism variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_051_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_051_cat1_C]" -DHHGAGE_D_cat7_C_X_CCC_071_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy hypertension variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy hypertension variable: Yes""""Centered dummy hypertension variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_071_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_071_cat1_C]" -DHHGAGE_D_cat7_C_X_CCC_101_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy diabetes variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy diabetes variable: Yes""""Centered dummy diabetes variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_101_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_101_cat1_C]" -DHHGAGE_D_cat7_C_X_CCC_121_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy heart disease variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy heart disease variable: Yes""""Centered dummy heart disease variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_121_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_121_cat1_C]" -DHHGAGE_D_cat7_C_X_CCC_131_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy active cancer variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy active cancer variable: Yes""""Centered dummy active cancer variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_131_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_131_cat1_C]" -DHHGAGE_D_cat7_C_X_CCC_151_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy stroke variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy stroke variable: Yes""""Centered dummy stroke variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_151_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_151_cat1_C]" -DHHGAGE_D_cat7_C_X_CCC_171_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy bowel disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered dummy bowel disorder variable: Yes""""Centered dummy bowel disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_171_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_171_cat1_C]" -DHHGAGE_D_cat7_C_X_CCC_280_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered Dummy mood disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered Dummy mood disorder variable: Yes""""Centered Dummy mood disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, CCC_280_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,CCC_280_cat1_C]" -DHHGAGE_D_cat7_C_X_diet_score_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered diet score ""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered diet score """"Centered diet score """,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, diet_score_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,diet_score_C]" -DHHGAGE_D_cat7_C_X_EDUDR04_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Highest education centered dummy variable: Less than high school""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Highest education centered dummy variable: Less than high school""""Highest education centered dummy variable: Less than high school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, EDUDR04_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,EDUDR04_cat1_C]" -DHHGAGE_D_cat7_C_X_EDUDR04_cat2_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Highest education centered dummy variable: High school""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Highest education centered dummy variable: High school""""Highest education centered dummy variable: High school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, EDUDR04_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,EDUDR04_cat2_C]" -DHHGAGE_D_cat7_C_X_EDUDR04_cat3_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Highest education centered dummy variable: Some post-secondary education""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Highest education centered dummy variable: Some post-secondary education""""Highest education centered dummy variable: Some post-secondary education""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, EDUDR04_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,EDUDR04_cat3_C]" -DHHGAGE_D_cat7_C_X_HWTGBMI_der_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered Derived BMI""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered Derived BMI""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, HWTGBMI_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,HWTGBMI_der_C]" -DHHGAGE_D_cat7_C_X_pack_years_der_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered pack years""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered pack years""""""",N/A,N/A,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, pack_years_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,pack_years_der_C]" -DHHGAGE_D_cat7_C_X_physical_act_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered physical activity""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered physical activity""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, physical_act_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,physical_act_C]" -DHHGAGE_D_cat7_C_X_resp_cond_der_2_cat1_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""""Centered respiratory condition dummy variable: Has respiratory condition""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, resp_cond_der_2_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,resp_cond_der_2_cat1_C]" -DHHGAGE_D_cat7_C_X_smoke_simple_cat2_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Simple smoking status centered dummy variable: Current smoker""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Simple smoking status centered dummy variable: Current smoker""""Simple smoking status centered dummy variable: Current smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, smoke_simple_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,smoke_simple_cat2_C]" -DHHGAGE_D_cat7_C_X_smoke_simple_cat3_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, smoke_simple_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,smoke_simple_cat3_C]" -DHHGAGE_D_cat7_C_X_smoke_simple_cat4_C,"interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""","interaction between ""Centered Age dummy variable; age (70 to 79)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat7_C, smoke_simple_cat4_C]",N/A,predictor,"interact[DHHGAGE_D_cat7_C,smoke_simple_cat4_C]" -DHHGAGE_D_cat8,Age dummy variable; age (80 plus),Age dummy variable; age (80 plus),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D],Age dummy variable; age (80 plus),intermediate,"dummy[8, 2]" -DHHGAGE_D_cat8_C,Centered Age dummy variable; age (80 plus),Centered Age dummy variable; age (80 plus),Demographics,Age,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[DHHGAGE_D_cat8],Centered Age dummy variable; age (80 plus),predictor,"center[DHHGAGE_D_cat8, mean]" -DHHGAGE_D_cat8_C_X_ALCDTTM_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered drinker type dummy variable: Regular""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered drinker type dummy variable: Regular""""Centered drinker type dummy variable: Regular""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, ALCDTTM_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,ALCDTTM_cat1_C]" -DHHGAGE_D_cat8_C_X_ALCDTTM_cat2_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered drinker type dummy variable: Occasional""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered drinker type dummy variable: Occasional""""Centered drinker type dummy variable: Occasional""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, ALCDTTM_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,ALCDTTM_cat2_C]" -DHHGAGE_D_cat8_C_X_ALWDWKY_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered drinks last week""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered drinks last week""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, ALWDWKY_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,ALWDWKY_C]" -DHHGAGE_D_cat8_C_X_CCC_051_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy Arthritis/Rheumatism variable: Yes""""Centered dummy arthritis/rheumatism variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_051_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_051_cat1_C]" -DHHGAGE_D_cat8_C_X_CCC_071_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy hypertension variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy hypertension variable: Yes""""Centered dummy hypertension variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_071_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_071_cat1_C]" -DHHGAGE_D_cat8_C_X_CCC_101_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy diabetes variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy diabetes variable: Yes""""Centered dummy diabetes variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_101_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_101_cat1_C]" -DHHGAGE_D_cat8_C_X_CCC_121_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy heart disease variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy heart disease variable: Yes""""Centered dummy heart disease variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_121_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_121_cat1_C]" -DHHGAGE_D_cat8_C_X_CCC_131_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy active cancer variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy active cancer variable: Yes""""Centered dummy active cancer variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_131_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_131_cat1_C]" -DHHGAGE_D_cat8_C_X_CCC_151_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy stroke variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy stroke variable: Yes""""Centered dummy stroke variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_151_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_151_cat1_C]" -DHHGAGE_D_cat8_C_X_CCC_171_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy bowel disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered dummy bowel disorder variable: Yes""""Centered dummy bowel disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_171_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_171_cat1_C]" -DHHGAGE_D_cat8_C_X_CCC_280_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered Dummy mood disorder variable: Yes""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered Dummy mood disorder variable: Yes""""Centered Dummy mood disorder variable: Yes""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, CCC_280_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,CCC_280_cat1_C]" -DHHGAGE_D_cat8_C_X_diet_score_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered diet score ""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered diet score """"Centered diet score """,N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, diet_score_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,diet_score_C]" -DHHGAGE_D_cat8_C_X_EDUDR04_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Highest education centered dummy variable: Less than high school""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Highest education centered dummy variable: Less than high school""""Highest education centered dummy variable: Less than high school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, EDUDR04_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,EDUDR04_cat1_C]" -DHHGAGE_D_cat8_C_X_EDUDR04_cat2_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Highest education centered dummy variable: High school""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Highest education centered dummy variable: High school""""Highest education centered dummy variable: High school""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, EDUDR04_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,EDUDR04_cat2_C]" -DHHGAGE_D_cat8_C_X_EDUDR04_cat3_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Highest education centered dummy variable: Some post-secondary education""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Highest education centered dummy variable: Some post-secondary education""""Highest education centered dummy variable: Some post-secondary education""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, EDUDR04_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,EDUDR04_cat3_C]" -DHHGAGE_D_cat8_C_X_HWTGBMI_der_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered Derived BMI""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered Derived BMI""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, HWTGBMI_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,HWTGBMI_der_C]" -DHHGAGE_D_cat8_C_X_pack_years_der_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered pack years""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered pack years""""""",N/A,N/A,Continuous,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, pack_years_der_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,pack_years_der_C]" -DHHGAGE_D_cat8_C_X_physical_act_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered physical activity""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered physical activity""""""",N/A,N/A,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, physical_act_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,physical_act_C]" -DHHGAGE_D_cat8_C_X_resp_cond_der_2_cat1_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Centered respiratory condition dummy variable: Has respiratory condition""""Centered respiratory condition dummy variable: Has respiratory condition""",N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, resp_cond_der_2_cat1_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,resp_cond_der_2_cat1_C]" -DHHGAGE_D_cat8_C_X_smoke_simple_cat2_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Simple smoking status centered dummy variable: Current smoker""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Simple smoking status centered dummy variable: Current smoker""""Simple smoking status centered dummy variable: Current smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, smoke_simple_cat2_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,smoke_simple_cat2_C]" -DHHGAGE_D_cat8_C_X_smoke_simple_cat3_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""""Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, smoke_simple_cat3_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,smoke_simple_cat3_C]" -DHHGAGE_D_cat8_C_X_smoke_simple_cat4_C,"interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""","interaction between ""Centered Age dummy variable; age (80 plus)"" and ""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""""Simple smoking status centered dummy variable: Former daily smoker quit >5 years""",N/A,N/A,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_D_cat8_C, smoke_simple_cat4_C]",N/A,predictor,"interact[DHHGAGE_D_cat8_C,smoke_simple_cat4_C]" -DHHGMS,Marital status,Marital status - (G),Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DHHAGMS, cchs2003_p::DHHCGMS, cchs2005_p::DHHEGMS, [DHHGMS]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table",N/A -DHHGMS_cat2,Marital status dummy variable: Common-law,Marital status dummy variable: Common-law,Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHHGMS],,intermediate,"dummy[2, 1]" -DHHGMS_cat2_C,Marital status centered dummy variable: Common-law,Marital status centered dummy variable: Common-law,Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHHGMS_cat2],,"predictor, missing-data-analysis","center[DHHGMS_cat2, mean]" -DHHGMS_cat3,Marital status dummy variable: Widow/Sep/Div,Marital status dummy variable: Widow/Sep/Div,Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHHGMS],,intermediate,"dummy[3, 1]" -DHHGMS_cat3_C,Marital status centered dummy variable: Widow/Sep/Div,Marital status centered dummy variable: Widow/Sep/Div,Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHHGMS_cat3],,predictor,"center[DHHGMS_cat3, mean]" -DHHGMS_cat4,Marital status dummy variable: Single/Never mar.,Marital status dummy variable: Single/Never mar.,Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHHGMS],,intermediate,"dummy[4, 1]" -DHHGMS_cat4_C,Marital status centered dummy variable: Single/Never mar.,Marital status centered dummy variable: Single/Never mar.,Sociodemographics,Marital Status,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[DHHGMS_cat4],,predictor,"center[DHHGMS_cat4, mean]" -diet_score,Diet score ,"Diet score (0 to 10) based on daily consumption of fruit, vegetables and fruit juice",Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[FVCDFRU, FVCDSAL, FVCDPOT, FVCDCAR, FVCDVEG, FVCDJUI, DHH_SEX]","A derived diet variable based on daily consumption of ""fruit, salad, potatoes, carrots, other vegetables, and juice"". Two baseline points plus summation of total points for diet attributes with penalty for high potato intake, no carrot intake and high juice consumption (negative overall scores are recoded to 0, resulting in a range from 0 to 10).","intermediate, desc-table, imputation-predictor, missing-desc-table",N/A -diet_score_C,Centered diet score ,Centered diet score ,Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[diet_score],,intermediate,"center[diet_score, mean]" -diet_score_C_rcs1,Centered diet score first RCS variable,Centered diet score first RCS variable,Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[diet_score_C],,"predictor, missing-data-analysis","rcs[diet_score_C, 1]" -diet_score_C_rcs2,Centered diet score second RCS variable,Centered diet score second RCS variable,Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[diet_score_C],,predictor,"rcs[diet_score_C, 2]" -diet_score_C_rcs3,Centered diet score third RCS variable,Centered diet score third RCS variable,Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[diet_score_C],,predictor,"rcs[diet_score_C, 3]" -diet_score_cat3,Categorical diet score,Categorical diet score,Health behaviour,Diet,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[diet_score],Derived categorical diet score using diet_score,"table-3, sub-group",N/A -DPSDSF,Depression Scale - Short Form Score,Depression Scale - Short Form Score,Health status,Chronic condition,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DPSADSF, cchs2003_p::DPSCDSF, cchs2005_p::DPSEDSF, [DPSDSF]",,impute-depression-score-outcome,N/A -drinks_last_week_C_rcs1,Centered drinks last week first RCS variable,Centered drinks last week first RCS variable,Health behaviour,Alcohol,Continuous,drinks/week,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALWDWKY_C],,"predictor, missing-data-analysis","rcs[ALWDWKY_C, 1]" -drinks_last_week_C_rcs2,Centered drinks last week second RCS variable,Centered drinks last week second RCS variable,Health behaviour,Alcohol,Continuous,drinks/week,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALWDWKY_C],,predictor,"rcs[ALWDWKY_C, 2]" -drinks_last_week_C_rcs3,Centered drinks last week third RCS variable,Centered drinks last week third RCS variable,Health behaviour,Alcohol,Continuous,drinks/week,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[ALWDWKY_C],,predictor,"rcs[ALWDWKY_C, 3]" -EDUDR04,Highest education,Highest level/education,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::EDUADR04, cchs2003_p::EDUCDR04, cchs2005_p::EDUEDR04, [EDUDR04]",,"desc-table, imputation-predictor, intermediate, table-3, missing-desc-table, sub-group",N/A -EDUDR04_cat1,Highest education dummy variable: Less than high school,Highest education dummy variable: Less than high school,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[EDUDR04],,intermediate,"dummy[1, 4]" -EDUDR04_cat1_C,Highest education centered dummy variable: Less than high school,Highest education centered dummy variable: Less than high school,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[EDUDR04_cat1],,"predictor, missing-data-analysis","center[EDUDR04_cat1, mean]" -EDUDR04_cat2,Highest education dummy variable: High school,Highest education dummy variable: High school,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[EDUDR04],,intermediate,"dummy[2, 4]" -EDUDR04_cat2_C,Highest education centered dummy variable: High school,Highest education centered dummy variable: High school,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[EDUDR04_cat2],,predictor,"center[EDUDR04_cat2, mean]" -EDUDR04_cat3,Highest education dummy variable: Some post-seconday education,Highest education dummy variable: Some post-seconday education,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[EDUDR04],,intermediate,"dummy[3, 4]" -EDUDR04_cat3_C,Highest education centered dummy variable: Some post-secondary education,Highest education centered dummy variable: Some post-secondary education,Sociodemographics,Education,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[EDUDR04_cat3],,predictor,"center[EDUDR04_cat3, mean]" -FLU_162,Last time had flu shot,When did you have your last flu shot?,Health care use,Vaccination,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FLUA_162, cchs2003_p::FLUC_162, cchs2005_p::FLUE_162, [FLU_162]",,"intermediate, table-3",N/A -food_insecurity_der,Food insecurity 12M,Derived food insecurity,Sociodemographics,Food security,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FINAF1, cchs2003_p::FINCF1, [FSCEDHFS], [FSCDHFS2]",,"intermediate, table-3",N/A -FVCDCAR,Carrot consumption,Daily consumption - carrots (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADCAR, cchs2003_p::FVCCDCAR, cchs2005_p::FVCEDCAR, [FVCDCAR]",,"intermediate, desc-table",N/A -FVCDFRU,Fruit consumption,Daily consumption - fruit - (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADFRU, cchs2003_p::FVCCDFRU, cchs2005_p::FVCEDFRU, [FVCDFRU]",,"intermediate, desc-table",N/A -FVCDJUI,Juice consumption,Daily consumption - fruit juice (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADJUI, cchs2003_p::FVCCDJUI, cchs2005_p::FVCEDJUI, [FVCDJUI]",,"intermediate, desc-table",N/A -FVCDPOT,Potato consumption,Daily consumption - potatoes (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADPOT, cchs2003_p::FVCCDPOT, cchs2005_p::FVCEDPOT, [FVCDPOT]",,"intermediate, desc-table",N/A -FVCDSAL,Salad consumption,Daily consumption - green salad - (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADSAL, cchs2003_p::FVCCDSAL, cchs2005_p::FVCEDSAL, [FVCDSAL]",,"intermediate, desc-table",N/A -FVCDVEG,Other veg consumption,Daily consumption other vegetables - (D),Health behaviour,Diet,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::FVCADVEG, cchs2003_p::FVCCDVEG, cchs2005_p::FVCEDVEG, [FVCDVEG]",,"intermediate, desc-table",N/A -GEN_01,Self-perceived health,Self-perceived health,Health behaviour,Self-perceived health,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::GENA_01, cchs2003_p::GENC_01, cchs2005_p::GENE_01, [GEN_01]",,"intermediate, table-3, sub-group, sensitivity-analysis",N/A -GEN_07,Self-perceived life stress,Self-perceived life stress,Health behaviour,Mental health,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::GENA_07, cchs2003_p::GENC_07, cchs2005_p::GENE_07, [GEN_07]",,"intermediate, table-3, sub-group, sensitivity-analysis",N/A -GEN_10,Sense of belonging,Sense of belonging in the community,Health behaviour,Mental health,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::GENA_10, cchs2003_p::GENC_10, cchs2005_p::GENE_10, [GEN_10]",,"intermediate, table-3, sub-group, sensitivity-analysis",N/A -GEOGPRV,Province,Province of residence of respondent (G),Demographics,Province,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s","cchs2001_p::GEOAGPRV, cchs2003_p::GEOCGPRV, cchs2005_p::GEOEGPRV, cchs2015_2016_p::GEO_PRV, cchs2017_2018_p::GEO_PRV, cchs2009_s::GEO_PRV, cchs2010_s::GEO_PRV, cchs2012_s::GEO_PRV, [GEOGPRV]",,"intermediate, table-3, sub-group, sensitivity-analysis",N/A -HCU_1AA,Has regular medical doctor,Do you have a regular medical doctor?,Health care use,Medical care,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::TWDA_5, cchs2003_p::HCUC_1AA, cchs2005_p::HCUE_1AA, [HCU_1AA]",,"intermediate, table-3, sub-group",N/A -HUI3_arc_sine_back_transformed,Back transformed linear regression outcome,"The outcome of the linear regression model, back transformed to the HUIDHSI bounds",Health status,Health utility index,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2013_2014_p",DerivedVar::[HUI3_arc_sine_transformed],,,N/A -HUI3_arc_sine_transformed,Arc-sine transformed HUI3,Arc-sine transformed HUI3,Health status,Health utility index,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2013_2014_p",DerivedVar::[HUIDHSI],Apply the arc-sine transformation to HUI3 for use as the outcome in the linear regression model. Follow this study https://www150.statcan.gc.ca/n1/pub/82-003-x/2011004/article/11598-eng.htm.,linear-regression-outcome,N/A -HUI3_beta_back_transformed,Back transformed beta regression outcome,"The outcome of the beta regression model, back transformed to the HUIDHSI bounds",Health status,Health utility index,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2013_2014_p",DerivedVar::[HUI3_beta_transformed],,,N/A -HUI3_beta_transformed,Transformed HUI3 for model,Transformed HUI3 so it can be used as an outcome in a beta regression model,Health status,Health utility index,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2013_2014_p",DerivedVar::[HUIDHSI],,beta-regression-outcome,N/A -HUIDHSI,Overall HUI,Health Utility Index (HUI3) - (D),Health status,Health utility index,Continuous,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2013_2014_p","cchs2001_p::HUIADHSI, cchs2003_p::HUICDHSI, cchs2005_p::HUIEDHSI, [HUIDHSI]",,outcome,N/A -HWTGBMI_der,Derived BMI,Derived Body Mass Index,Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[HWTGHTM, HWTGWTK]",,"intermediate, desc-table, imputation-predictor, missing-desc-table",N/A -HWTGBMI_der_C,Centered Derived BMI,,Health status,BMI,Continuous,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[HWTGBMI_der],,intermediate,"center[HWTGBMI_der, mean]" -HWTGBMI_der_cat4,Categorical BMI,Categorical body mass index,Health status,BMI,Categorical,kg/m2,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p",DerivedVar::[HWTGBMI_der],Derived categorical variable using HWTGBMI,"table-3, sub-group",N/A -HWTGHTM,Height,"Height (metres)/self-reported - (D,G)",Health status,Height,Continuous,meters,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::HWTAGHT, cchs2003_p::HWTCGHT, cchs2005_p::HWTEGHTM, [HWTGHTM]",,intermediate,N/A -HWTGWTK,Weight,"Weight - kilograms (D, G)",Health status,Weight,Continuous,kg,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::HWTAGWTK, cchs2003_p::HWTCGWTK, cchs2005_p::HWTEGWTK, [HWTGWTK]",,intermediate,N/A -id_year,Unique ID,Unique ID,N/A,N/A,N/A,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[data_name, ADM_RNO]",,id,N/A -INCDRCA,Household income distribution,Household income distribution - (D),Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,missing-desc-table,N/A -INCDRCA_cat10,"Dummy household income distribution, decile 10","Dummy household income distribution, decile 10",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[10, 1]" -INCDRCA_cat2,"Dummy household income distribution, decile 2","Dummy household income distribution, decile 2",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[2, 1]" -INCDRCA_cat3,"Dummy household income distribution, decile 3","Dummy household income distribution, decile 3",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[3, 1]" -INCDRCA_cat4,"Dummy household income distribution, decile 4","Dummy household income distribution, decile 4",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[4, 1]" -INCDRCA_cat5,"Dummy household income distribution, decile 5","Dummy household income distribution, decile 5",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[5, 1]" -INCDRCA_cat6,"Dummy household income distribution, decile 6","Dummy household income distribution, decile 6",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[6, 1]" -INCDRCA_cat7,"Dummy household income distribution, decile 7","Dummy household income distribution, decile 7",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[7, 1]" -INCDRCA_cat8,"Dummy household income distribution, decile 8","Dummy household income distribution, decile 8",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[8, 1]" -INCDRCA_cat9,"Dummy household income distribution, decile 9","Dummy household income distribution, decile 9",Sociodemographics,Income,Categorical,N/A,"cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2005_p::INCEDRCA, cchs2015_2016_p::INCDVRCA, cchs2017_2018_p::INCDVRCA, [INCDRCA]",,intermediate,"dummy[9, 1]" -number_conditions,Number of conditions,Number of chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, resp_condition_der, CCC_051], [DerivedVar::[CCC_121, CCC_131, CCC_151, CCC_171, CCC_280, resp_condition_der, CCC_051]]",,"intermediate, desc-table",N/A -number_conditions_cat1,Number of conditions dummy variable: 1 chronic condition,Number of conditions dummy variable: 1 chronic condition,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions],,intermediate,"dummy[1, 0]" -number_conditions_cat1_C,Centered number of conditions dummy variable: 1 chronic condition,Centered number of conditions dummy variable: 1 chronic condition,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions_cat1],,predictor,"center[number_conditions_cat1, mean]" -number_conditions_cat2,Number of conditions dummy variable: 2 chronic conditions,Number of conditions dummy variable: 2 chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions],,intermediate,"dummy[2, 0]" -number_conditions_cat2_C,Centered number of conditions dummy variable: 2 chronic conditions,Centered number of conditions dummy variable: 2 chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions_cat2],,predictor,"center[number_conditions_cat2, mean]" -number_conditions_cat3,Number of conditions dummy variable: 3 chronic conditions,Number of conditions dummy variable: 3 chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions],,intermediate,"dummy[3, 0]" -number_conditions_cat3_C,Centered number of conditions dummy variable: 3 chronic conditions,Centered number of conditions dummy variable: 3 chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions_cat3],,predictor,"center[number_conditions_cat3, mean]" -number_conditions_cat4,Number of conditions dummy variable: 4 chronic conditions,Number of conditions dummy variable: 4 chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions],,intermediate,"dummy[4, 0]" -number_conditions_cat4_C,Centered number of conditions dummy variable: 4 chronic conditions,Centered number of conditions dummy variable: 4 chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions_cat4],,predictor,"center[number_conditions_cat4, mean]" -number_conditions_cat5,Number of conditions dummy variable: 5+ chronic conditions,Number of conditions dummy variable: 5+ chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions],,intermediate,"dummy[5+, 0]" -number_conditions_cat5_C,Centered number of conditions dummy variable: 5+ chronic conditions,Centered number of conditions dummy variable: 5+ chronic conditions,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[number_conditions_cat5],,predictor,"center[number_conditions_cat5, mean]" -PACDEE,Physical activity,Daily energy expenditure - (D),Health behaviour,Exercise,Continuous,METs,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,"intermediate, desc-table, imputation-predictor, missing-desc-table",N/A -PACDEE_cat3,Categorical physical activity,Categorical daily energy expenditure,Health behaviour,Exercise,Categorical,METs,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::PACADEE, cchs2003_p::PACCDEE, cchs2005_p::PACEDEE, [PACDEE]",,"table-3, sub-group",N/A -pack_years_cat,Categorical PackYears,Categorical smoking pack-years,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],Derived categorical variable using pack_years_der,"table-3, sub-group",N/A -pack_years_der,Pack-Years,Smoking pack-years,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMKDSTY_A, DHHGAGE_cont, time_quit_smoking, SMKG203_cont, SMKG207_cont, SMK_204, SMK_05B, SMK_208, SMK_05C, SMKG01C_cont, SMK_01A]",,"intermediate, desc-table, imputation-predictor, impute-pack-years-outcome, missing-desc-table",N/A -pack_years_der_C,Centered pack years,,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der],,intermediate,"center[pack_years_der, mean]" -pack_years_rcs1_C,Centered pack years first RCS variable,Centered pack years first RCS variable,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der_C],,"predictor, missing-data-analysis","rcs[pack_years_der_C, 1]" -pack_years_rcs2_C,Centered pack years second RCS variable,Centered pack years second RCS variable,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der_C],,predictor,"rcs[pack_years_der_C, 2]" -pack_years_rcs3_C,Centered pack years thirdRCS variable,Centered pack years thirdRCS variable,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pack_years_der_C],,predictor,"rcs[pack_years_der_C, 3]" -pct_time_der,Percent time in Canada,Percentage of time in Canada,Sociodemographics,Migration,Continuous,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[DHHGAGE_cont, SDCGCBG, SDCGRES]",,"intermediate, desc-table, imputation-predictor, percent-time-canada-imputation-outcome, missing-desc-table",N/A -pct_time_der_C,Centered percent time in Canada,Percentage of time in Canada,Sociodemographics,Migration,Continuous,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pct_time_der],,intermediate,"center[pct_time_der, mean]" -pct_time_der_cat10,Percent time in Canada,Categorical percentage of time in Canada,Sociodemographics,Migration,Categorical,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2009_s, cchs2010_s, cchs2012_s",DerivedVar::[pct_time_der],,"sub-group, table-3",N/A -percent_time_canada_C_rcs1,Centered percent time in Canads first RCS variable,Centered percent time in Canads first RCS variable,Sociodemographics,Migration,Continuous,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pct_time_der_C],,"predictor, missing-data-analysis","rcs[pct_time_der_C, 1]" -percent_time_canada_C_rcs2,Centered percent time in Canads second RCS variable,Centered percent time in Canads second RCS variable,Sociodemographics,Migration,Continuous,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pct_time_der_C],,predictor,"rcs[pct_time_der_C, 2]" -percent_time_canada_C_rcs3,Centered percent time in Canads third RCS variable,Centered percent time in Canads third RCS variable,Sociodemographics,Migration,Continuous,%,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[pct_time_der_C],,predictor,"rcs[pct_time_der_C, 3]" -physical_act_C,Centered physical activity,,Health behaviour,Exercise,Continuous,METs,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[PACDEE],,intermediate,"center[PACDEE, mean]" -physical_act_C_rcs1,Centered physicial activity first RCS variable,Centered physicial activity first RCS variable,Health behaviour,Exercise,Continuous,METs,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[physical_act_C],,"predictor, missing-data-analysis","rcs[physical_act_C, 1]" -physical_act_C_rcs2,Centered physicial activity second RCS variable,Centered physicial activity second RCS variable,Health behaviour,Exercise,Continuous,METs,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[physical_act_C],,predictor,"rcs[physical_act_C, 2]" -physical_act_C_rcs3,Centered physicial activity third RCS variable,Centered physicial activity third RCS variable,Health behaviour,Exercise,Continuous,METs,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[physical_act_C],,predictor,"rcs[physical_act_C, 3]" -RAC_1,Difficulty activities,Has difficulty with activities,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_1, cchs2003_p::RACC_1, cchs2005_p::RACE_1, [RAC_1]",,intermediate,N/A -RAC_2A,Reduction activities at home,Reduction - activities at home,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2A, cchs2003_p::RACC_2A, cchs2005_p::RACE_2A, [RAC_2A]",,intermediate,N/A -RAC_2B,Reduction activities at school or work,Long-term cond. reduces act. - school or work,Health status,ADL,Categorical,N/A,cchs2001_p,cchs2001_p::RACA_2B,,intermediate,N/A -RAC_2C,Reduction other activities,Reduction - other activities,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::RACA_2C, cchs2003_p::RACC_2C, cchs2005_p::RACE_2C, [RAC_2C]",,intermediate,N/A -RACDPAL,Particpation/activity limitation,Participation and activity limitation,Health status,ADL,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::[DerivedVar::[RAC_1, RAC_2A, RAC_2B, RAC_2C]], cchs2003_p::RACCDPAL, cchs2005_p::RACEDPAL, [RACDPAL]",,"intermediate, table-3, sub-group",N/A -resp_cond_der_2,Respiratory condition,Respiratory condition,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_condition_der],,"intermediate, desc-table, missing-desc-table, imputation-predictor, sub-group",N/A -resp_cond_der_2_cat1,Respiratory condition dummy variable: Has respiratory condition,Respiratory condition dummy variable: Has respiratory condition,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_cond_der_2],,intermediate,"dummy[1, 2]" -resp_cond_der_2_cat1_C,Centered respiratory condition dummy variable: Has respiratory condition,Centered respiratory condition dummy variable: Has respiratory condition,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[resp_cond_der_2_cat1],,"predictor, missing-data-analysis","center[resp_cond_der_2_cat1, mean]" -resp_condition_der,Respiratory condition,Respiratory condition,Health status,Chronic condition,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::[DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]], cchs2003_p::[DerivedVar::[DHHGAGE_cont, CCC_091, CCC_91A, CCC_031]], cchs2005_p::[DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031]], cchs2007_2008_p::[DerivedVar::[DHHGAGE_cont, CCC_91E, CCC_91F, CCC_91A, CCC_031]], DerivedVar::[DHHGAGE_cont, CCC_091, CCC_031]",,intermediate,N/A -SDCFIMM,Immigrant status,Immigrant Status (D),Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SDCAFIMM, cchs2003_p::SDCCFIMM, cchs2005_p::SDCEFIMM, [SDCFIMM]",,"intermediate, immigrant-status-imputation-outcome, imputation-predictor, sub-group",N/A -immigrant_status_cat1,Immigrant status: Yes,Immigrant status: Yes,Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[SDCFIMM],,intermediate,"dummy[1, 2]" -immigrant_status_cat1_C,Centered immigrant status: Yes,Centered immigrant status: Yes,Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[immigrant_status_cat1],,predictor,"center[immigrant_status_cat1, mean]" -SDCGCBG,Country of birth,Country of birth - (G),Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SDCAGCBG, cchs2003_p::SDCCGCBG, cchs2005_p::SDCEGCBG, cchs2011_2012_p::SDCGCB12::SDCGCB12, cchs2013_2014_p::SDCGCB13::SDCGCB13, [SDCGCBG]",,"intermediate, birth-country-imputation-outcome",N/A -SDCGCGT,Ethnicity,"Cultural or racial origin - (D, G)",Sociodemographics,Ethnicity,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SDCAGRAC, cchs2003_p::SDCCGRAC, cchs2005_p::SDCEGCGT, [SDCGCGT]",,"intermediate, desc-table, imputation-predictor, table-3, missing-desc-table, sub-group",N/A -SDCGCGT_cat1,Ethnicity: White,Ethnicity: White,Sociodemographics,Ethnicity,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[SDCGCGT],,intermediate,"dummy[1, 2]" -SDCGCGT_cat1_C,Centered ethnicity: White,Centered ethnicity: White,Sociodemographics,Ethnicity,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[SDCGCGT_cat1],,"predictor, missing-data-analysis","center[SDCGCGT_cat1, mean]" -SDCGRES,Time in Canada,"Length/time in Canada since imm. (D, G)",Sociodemographics,Migration,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SDCAGRES, cchs2003_p::SDCCGRES, cchs2005_p::SDCEGRES, [SDCGRES]",,intermediate,N/A -SMK_01A,,"In lifetime, smoked 100 or more cigarettes",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, [SMK_01A]",,intermediate,N/A -SMK_05B,,# of cigarettes smoked daily - occasional smoker,Health behaviour,Smoking,Continuous,cigarettes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, [SMK_05B]",,intermediate,N/A -SMK_05C,,# days smoked at least 1 cigarette,Health behaviour,Smoking,Continuous,days,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, [SMK_05C]",,intermediate,N/A -SMK_09A_B,,When did you stop smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, [SMK_09A]",,intermediate,N/A -SMK_204,,# of cigarettes smoked daily - daily smoker,Health behaviour,Smoking,Continuous,cigarettes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, [SMK_204]",,intermediate,N/A -SMK_208,,# of cigarettes smoke each day - former daily,Health behaviour,Smoking,Continuous,cigarettes,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, [SMK_208]",,intermediate,N/A -SMKDSTY_A,Smoking status,"Type of smoker: daily, occasional, always occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]","2015 onwards for smoke status still has 6 categories, but removed 'always occasional' (Never daily current occasional smoker) and added 'experimental' (at least 1 cig, non-smoker now)",intermediate,N/A -SMKDSTY_cat3,Smoking status,"Type of smoker: current, former, never",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, [SMKDSTY]",Re-categorization of SMKDSTY to be used for smoking imputation,"smoking-imputation-predictor, impute-smoking-cat3-outcome, desc-table, missing-desc-table",N/A -SMKDSTY_cat3_cat1,Dummy smoking status: daily,Dummy smoking status: daily,Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[SMKDSTY_cat3],,intermediate,"dummy[1, 3]" -SMKDSTY_cat3_cat2,Dummy smoking status: former,Dummy smoking status: former,Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[SMKDSTY_cat3],,intermediate,"dummy[2, 3]" -SMKDSTY_cat5,Smoking status,"Type of smoker: daily, occasional, former daily, former occasional, never",Health behaviour,Smoking,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, [SMKDSTY]","Re-categorization of SMKDSTY to be used for smoking imputation. SMKDSTY_cat5 is a 5 category variable for smoking status for cycles up to 2018. Prior to 2015, 'occasional' and 'always occasional' are combined to form the current 'occasional' category. 2015 onwards, 'former occasional' and 'experimental' are combined to form the current 'former occasional' category",intermediate,N/A -SMKG01C_cont,,Age smoked first cigarette,Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2005_p::SMKEG01C, [SMKG01C]",,intermediate,N/A -SMKG09C,,Years since stopped smoking daily - former daily,Health behaviour,Smoking,Categorical,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2003_p::SMKCG09C, cchs2005_p::SMKEG09C, [SMKG09C]",,intermediate,N/A -SMKG203_cont,,Age started to smoke daily - daily smoker (G),Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2005_p::SMKEG203, [SMKG203]",,intermediate,N/A -SMKG207_cont,,Age started to smoke daily - former daily smoker,Health behaviour,Smoking,Continuous,Years,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2005_p::SMKEG207, [SMKG207]",,intermediate,N/A -smoke_simple,Simple smoking status,Simple smoking status,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p","DerivedVar::[SMKDSTY_cat5, time_quit_smoking]",,"intermediate, imputation-predictor, impute-smoke-simple-outcome, table-3, sub-group",N/A -smoke_simple_cat2,Simple smoking status dummy variable: Current smoker,Simple smoking status dummy variable: Current smoker,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[smoke_simple],,intermediate,"dummy[2, 1]" -smoke_simple_cat2_C,Simple smoking status centered dummy variable: Current smoker,Simple smoking status centered dummy variable: Current smoker,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[smoke_simple_cat2],,"predictor, intermediate, missing-data-analysis","center[smoke_simple_cat2, mean]" -smoke_simple_cat3,Simple smoking status dummy variable: Former daily smoker quit less than 5 years or former occasional smoker,Simple smoking status dummy variable: Former daily smoker quit less than 5 years or former occasional smoker,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[smoke_simple],,intermediate,"dummy[3, 1]" -smoke_simple_cat3_C,Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker,Simple smoking status centered dummy variable: Former daily smoker quit less than 5 years or former occasional smoker,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[smoke_simple_cat3],,"predictor, intermediate","center[smoke_simple_cat3, mean]" -smoke_simple_cat4,Simple smoking status dummy variable: Former daily smoker quit >5 years,Simple smoking status dummy variable: Former daily smoker quit >5 years,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[smoke_simple],,intermediate,"dummy[4, 1]" -smoke_simple_cat4_C,Simple smoking status centered dummy variable: Former daily smoker quit >5 years,Simple smoking status centered dummy variable: Former daily smoker quit >5 years,Health behaviour,Smoking,Categorical,N/A,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[smoke_simple_cat4],,"predictor, intermediate","center[smoke_simple_cat4, mean]" -SurveyCycle,Survey year,Represents the survey cycle from where the observation came from,N/A,N/A,Categorical,N/A,"cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p",DerivedVar::[data_name],,survey-cycle,N/A -time_quit_smoking,Time since quit,Time since quit smoking,Health behaviour,Smoking,Continuous,Years,"cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p","DerivedVar::[SMK_09A_B, SMKG09C]",,intermediate,N/A diff --git a/worksheets/cshm-variable-details.csv b/worksheets/cshm-variable-details.csv new file mode 100644 index 0000000..f1fbd65 --- /dev/null +++ b/worksheets/cshm-variable-details.csv @@ -0,0 +1,16 @@ +"variable","dummyVariable","typeEnd","databaseStart","variableStart","ICES.confirmation","typeStart","recEnd","numValidCat","catLabel","catLabelLong","units","recStart","catStartLabel","variableStartShortLabel","variableStartLabel","notes","version","lastUpdated","status","reviewNotes","versionNotes","review" +"GEOGPRV","GEOGPRV_cat11_1","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","10","11","NL","Nfld. & Labrador","N/A","10","Nfld. & Labrador","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_2","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","11","11","PEI","Prince Edward Island","N/A","11","Prince Edward Island","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_3","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","12","11","NS","Nova Scotia","N/A","12","Nova Scotia","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_4","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","13","11","NB","New Brunswick","N/A","13","New Brunswick","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_5","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","24","11","QC","Quebec","N/A","24","Quebec","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_6","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","35","11","ON","Ontario","N/A","35","Ontario","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_7","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","46","11","MB","Manitoba","N/A","46","Manitoba","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_8","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","47","11","SK","Saskatchewan","N/A","47","Saskatchewan","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_9","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","48","11","AB","Alberta","N/A","48","Alberta","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_10","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","59","11","BC","British Columbia","N/A","59","British Columbia","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_11","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","60","11","YT/NT/NU","Yukon/NWT/Nunavut","N/A","[60,62]","Yukon/NWT/Nunavut","Province","Province of residence of respondent (G)","CCHS2015_2016 and CCHS2017_2018 divides category into Yukon (60), NWT (61), and Nunavut (62)","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_NA::a","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","NA::a","11","not applicable","not applicable","N/A","96","not applicable","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_NA::b","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","NA::b","11","missing","missing","N/A","[97,99]","don't know (97); refusal (98); not stated (99)","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"GEOGPRV","GEOGPRV_cat11_NA::b","cat","cchs2019_2020_p, cchs2022_p","[GEOGPRV]",,"cat","NA::b","11","missing","missing","N/A","else","else","Province","Province of residence of respondent (G)","","2.2.0","2025-11-18","active",,, +"WTS_M","N/A","cont","cchs2019_2020_p, cchs2022_p","[WTS_M]",,"N/A","copy","N/A","N/A","N/A","N/A","[1,100000]","N/A","Weight","Weights","","2.2.0","2025-11-18","active",,, diff --git a/worksheets/cshm-variables.csv b/worksheets/cshm-variables.csv new file mode 100644 index 0000000..86e3605 --- /dev/null +++ b/worksheets/cshm-variables.csv @@ -0,0 +1,42 @@ +"variable","label","labelLong","variableType","databaseStart","variableStart","subject","section","units","notes","description","purpose","version","lastUpdated","reviewNotes","status","versionNotes","role","source" +"SurveyCycle","Survey cycle","CCHS survey cycle","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p","DerivedVar::[data_name]","demographics","Sociodemographics","N/A",NA,"Derived from dataset name; identifies CCHS cycle for each respondent","Identifies the CCHS cycle for each respondent. Used to derive survey year for the period component of the APC model and to label cycle-specific results.","0.1.0","2025-06-01","","",NA,"design, table1-stratifier","both" +"DHHGAGE_cont","Age (grouped continuous, years)","Age - continuous","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p","[DHH_AGE]","demographics","Sociodemographics","Years",NA,"Continuous age; preferred over DHHGAGE_A for APC model where available","Continuous age in years (midpoint-estimated in PUMF). The primary age input to the APC model. Cohort is derived as survey_year - age.","0.1.0","2025-06-01","","",NA,"predictor, table1, apc-denominator","pumf" +"DHH_SEX","Sex","Sex","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p","cchs2001_p::DHHA_SEX, cchs2003_p::DHHA_SEX, cchs2005_p::DHHA_SEX, [DHH_SEX]","demographics","Sociodemographics","N/A",NA,"Sex (1=Male 2=Female). APC models run separately by sex","Sex. APC initiation and cessation models are fit separately for men and women because smoking trends differ substantially by sex. Also used to stratify Table 1.","0.1.0","2025-06-01","","",NA,"model-stratifier, table1, apc-denominator, table1-stratifier","pumf" +"GEOGPRV","Province of residence","Province of residence","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p","[GEOGPRV]","demographics","Sociodemographics","N/A",NA,"Province/territory of residence. Used for provincial APC estimates","Province of residence. Used for provincial APC stratification (Stage 8 subgroup). Territories are pooled due to small sample sizes.","0.1.0","2025-06-01","","",NA,"predictor, table1","pumf" +"WTS_M","Master survey weight","Survey sampling weight","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p","cchs2001_p::WTSAM, cchs2003_p::WTSC_M, cchs2005_p::WTSE_M, [WTS_M]","demographics","Sociodemographics","N/A",NA,"CCHS sampling weight. Required for all prevalence estimates and weighted APC models","Survey sampling weight. Applied in APC logistic regression as a case weight to produce nationally representative estimates.","0.1.0","2025-06-01","","",NA,"design, apc-denominator","pumf" +"SDCFIMM","Immigrant status (2007-2014 only)","Immigrant status (D)","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p","[SDCFIMM]","demographics","Sociodemographics","N/A",NA,"Immigrant status derived (1=non-immigrant 2=immigrant 3=non-permanent resident). Used in MPoRT mortality adjustment","Immigrant status. Used in the MPoRT mortality correction to adjust for survival bias. Only available 2007-2014.","0.1.0","2025-06-01","","",NA,"predictor","pumf" +"SDCGCGT","Cultural/racial origin (2007-2014 only)","Cultural or racial origin (D/G)","Categorical","cchs2001_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p","cchs2001_p::SDCA_COB, [SDCGCGT]","demographics","Sociodemographics","N/A",NA,"Cultural/racial origin. Not in all cycles (NA(c) where absent). Used for subgroup analysis; not a primary APC model variable","Cultural/racial origin. Retained for potential subgroup analyses. Only available in select cycles; will be NA(c) elsewhere.","0.1.0","2025-06-01","Not available all cycles","",NA,"predictor","pumf" +"EDUDR03","Education (3-cat)","Highest education level - 3 categories","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2011_2012_p, cchs2013_2014_p, cchs2015_2016_p, cchs2017_2018_p","[EDUDR03]","demographics","Sociodemographics","N/A",NA,"Highest education (3-category: less than high school / high school graduate / post-secondary). Used for subgroup analysis. cchsflow harmonized from EDUADR04/EDUCDR04/EDUEDR04/EHG2DVR3.","Education (3-category). Included for descriptive purposes and potential subgroup analysis. Not available in 2019-20 or 2022 PUMF.","0.1.0","2025-06-01","Not available 2019-20 or 2022","",NA,"predictor, table1","pumf" +"SMK_01A","Smoked 100+ cigs","Ever smoked 100 or more cigarettes in lifetime","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01A, cchs2003_p::SMKC_01A, cchs2005_p::SMKE_01A, cchs2015_2016_p::SMK_020, cchs2017_2018_p::SMK_020, cchs2019_2020_p::SMK_020, cchs2022_p::CSS_15, cchs2023_p::CSS_15, cchs2001_m::SMKA_01A, cchs2003_m::SMKC_01A, cchs2005_m::SMKE_01A, cchs2015_2016_m::SMK_020, cchs2017_2018_m::SMK_020, cchs2019_2020_m::SMK_020, cchs2021_m::SMK_020, cchs2022_m::CSS_15, cchs2023_m::CSS_15, [SMK_01A]","smoking","Health behaviour","N/A",NA,"Gate question: ever smoked >=100 cigarettes lifetime. Combined with SMK_01B and SMK_202 for never/current/former classification","Intermediate: input to SMKDSTY_A derivation. Gate variable: ever smoked 100+ cigarettes. Combined with SMK_01B and SMK_202 to classify respondents as never/current/former smoker for the APC numerator.","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMK_01B","Smoked 1 whole cig","Ever smoked a whole cigarette","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_01B, cchs2003_p::SMKC_01B, cchs2005_p::SMKE_01B, cchs2015_2016_p::SMK_025, cchs2017_2018_p::SMK_025, cchs2019_2020_p::SMK_025, cchs2022_p::CSS_05, cchs2023_p::CSS_05, cchs2001_m::SMKA_01B, cchs2003_m::SMKC_01B, cchs2005_m::SMKE_01B, cchs2015_2016_m::SMK_025, cchs2017_2018_m::SMK_025, cchs2019_2020_m::SMK_025, cchs2021_m::SMK_025, cchs2022_m::CSS_05, cchs2023_m::CSS_05, [SMK_01B]","smoking","Health behaviour","N/A",NA,"Second gate for never-smoker definition: never smoked a whole cigarette AND <100 lifetime cigarettes = never smoker","Intermediate: input to SMKDSTY_A derivation. Gate variable: ever smoked a whole cigarette. Used with SMK_01A to define never-smoker status.","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMK_202","Smoking type","Type of smoker presently (daily/occasional/not at all)","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKA_202, cchs2003_p::SMKC_202, cchs2005_p::SMKE_202, cchs2015_2016_p::SMK_005, cchs2017_2018_p::SMK_005, cchs2019_2020_p::SMK_005, cchs2001_m::SMKA_202, cchs2003_m::SMKC_202, cchs2005_m::SMKE_202, cchs2015_2016_m::SMK_005, cchs2017_2018_m::SMK_005, cchs2019_2020_m::SMK_005, cchs2021_m::SMK_005, [SMK_202]","smoking","Health behaviour","N/A",NA,"Current smoking frequency. Combined with SMK_01A/SMK_01B to derive 3-category status: never / current / former","Intermediate: input to SMKDSTY_A derivation. Current smoking frequency (daily/occasional/not at all). Combined with SMK_01A/SMK_01B to derive 3-category smoking status.","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMKDSTY_original","Smoking status (6-cat)","Type of smoker derived - 6-category (cchsflow v3, original StatCan scheme)","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2007_2008_p::SMKDSTY, cchs2009_2010_p::SMKDSTY, cchs2010_p::SMKDSTY, cchs2011_2012_p::SMKDSTY, cchs2012_p::SMKDSTY, cchs2013_2014_p::SMKDSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2007_2008_m::SMKDSTY, cchs2009_2010_m::SMKDSTY, cchs2009_m::SMKDSTY, cchs2010_m::SMKDSTY, cchs2011_2012_m::SMKDSTY, cchs2012_m::SMKDSTY, cchs2013_2014_m::SMKDSTY, cchs2014_m::SMKDSTY, DerivedVar::[SMK_202, SMK_05D, SMK_01A]","smoking","Health behaviour","N/A",NA,"cchsflow v3 harmonized 6-cat smoking status: 1=daily, 2=occ(fmr daily), 3=always occasional, 4=former daily, 5=former occasional, 6=never. Consistent categories across all cycles.","Primary smoking classification for APC numerator construction and Table 1. cchsflow v3: 2001-2014 pass-through from SMKDSTY; 2015-2021 derived from SMK_202, SMK_05D, SMK_01A. Not supported PUMF 2022/2023.","0.1.0","2026-06-09","Renamed from SMKDSTY_A per CEP-002 year-based naming","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","predictor, table1, apc-numerator","both" +"age_first_cigarette","Age 1st cig (unified)*","Age smoked first whole cigarette - unified (cchsflow v3)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKG01C_cont, SMK_01C]","smoking","Health behaviour","Years","Unified variable (cchsflow v3). Universe: ever smoked 100+ cigarettes. Priority: SMK_01C (Master exact) > SMKG01C_cont (PUMF midpoint). PUMF 2001-2021; Master 2001-2023.","Unified variable (cchsflow v3 PR #163). Master: exact age (SMK_01C); PUMF: midpoint-estimated (SMKG01C_cont). Primary initiation age input","Age at first whole cigarette (unified cchsflow v3 variable). Primary input for the initiation APC numerator. Routes to exact values (Master) or midpoint estimates (PUMF) automatically.","0.1.0","2026-06-09","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","predictor, table1, apc-numerator","both" +"age_start_smoking","Age daily (unified)*","Age started smoking daily - unified (cchsflow v3)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMKG040_cont, SMK_040]","smoking","Health behaviour","Years","Raw SMKG040 absent from 2019-20 PUMF (DDI-confirmed): age_start_smoking unavailable for cchs2019_2020_p and cchs2022_p; Master covers 2001-2023. See cchsflow#185.","Unified variable (cchsflow v3 PR #163). Master: exact age (SMK_040); PUMF: midpoint-estimated (SMKG040_cont). Primary daily initiation age","Age started smoking daily (unified cchsflow v3 variable). Used in the initiation APC model as an alternative or supplementary age measure.","0.1.0","2026-06-10","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","predictor, table1, apc-numerator","both" +"time_quit_smoking_daily","Yrs quit daily (unified)*","Years since stopped smoking daily - unified (cchsflow v3)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMKDSTY_cat5, SMK_09A_cont, SMK_09C]","smoking","Health behaviour","Years","Unified variable (cchsflow v3). Universe: former daily smokers. DerivedVar::[SMKDSTY_cat5, SMK_09A_cont, SMK_09C]: Master priority via SMK_09C exact years; PUMF fallback via SMK_09A_cont midpoint. Not supported 2022 or PUMF 2023.","Unified variable (cchsflow v3). PUMF: midpoint from SMK_09A_cont; Master: exact from SMK_09C. Former daily smokers only.","Primary input for the cessation APC numerator. Covers former daily smokers.","0.1.0","2026-06-09","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","predictor, table1, apc-numerator","both" +"SMK_09A_cont","Yrs quit daily (PUMF)","Years since stopped smoking daily - former daily (PUMF continuous)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2001_p::SMKA_09A, cchs2003_p::SMKC_09A, cchs2005_p::SMKE_09A, cchs2015_2016_p::SMK_080, cchs2017_2018_p::SMK_080, cchs2019_2020_p::SMK_080, cchs2001_m::SMKA_09A, cchs2003_m::SMKC_09A, cchs2005_m::SMKE_09A, cchs2015_2016_m::SMK_080, cchs2017_2018_m::SMK_080, cchs2019_2020_m::SMK_080, cchs2021_m::SMK_080, cchs2023_m::SPU_25, [SMK_09A]","smoking","Health behaviour","Years","Midpoint-imputed years since quit, former daily smokers. Feeder for time_quit_smoking and time_quit_smoking_daily (cchsflow v3). Not available 2022 or PUMF 2023 (SPU_25 is Master-only).","PUMF-derived continuous years since quit. Superseded by time_quit_smoking once cchsflow v3 merges. Keep for pre-v3 fallback","Intermediate: PUMF/Master midpoint feeder for the unified cessation variables.","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMK_06A_cont","Yrs quit occ (PUMF)","Years since stopped smoking - former occasional smokers (PUMF continuous)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","cchs2001_p::SMKA_06A, cchs2003_p::SMKC_06A, cchs2005_p::SMKE_06A, cchs2015_2016_p::SMK_060, cchs2017_2018_p::SMK_060, cchs2019_2020_p::SMK_060, cchs2001_m::SMKA_06A, cchs2003_m::SMKC_06A, cchs2005_m::SMKE_06A, cchs2015_2016_m::SMK_060, cchs2017_2018_m::SMK_060, cchs2019_2020_m::SMK_060, cchs2021_m::SMK_060, cchs2023_m::SPU_10, [SMK_06A]","smoking","Health behaviour","Years","Midpoint-imputed years since quit, former occasional smokers. Feeder for time_quit_smoking (cchsflow v3 falls back to it when SMK_09A_cont is not applicable). Not available 2022 or PUMF 2023.","PUMF-derived years since quit for former occasional smokers. Not covered by time_quit_smoking (daily only)","Intermediate: occasional-smoker feeder for time_quit_smoking (all former smokers).","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMKDGSTP_cont","Yrs since quit (all)","Years since quit smoking completely - all former smokers (continuous)","Continuous","cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_p::SMKCGSTP, cchs2005_p::SMKEGSTP, cchs2007_2008_p::SMKGSTP, cchs2009_2010_p::SMKGSTP, cchs2010_p::SMKGSTP, cchs2011_2012_p::SMKGSTP, cchs2012_p::SMKGSTP, cchs2013_2014_p::SMKGSTP, cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP, cchs2007_2008_m::SMKDSTP, cchs2009_2010_m::SMKDSTP, cchs2009_m::SMKDSTP, cchs2010_m::SMKDSTP, cchs2011_2012_m::SMKDSTP, cchs2012_m::SMKDSTP, cchs2013_2014_m::SMKDSTP, cchs2014_m::SMKDSTP, cchs2015_2016_m::SMKDVSTP, cchs2017_2018_m::SMKDVSTP, cchs2019_2020_m::SMKDVSTP, cchs2021_m::SMKDVSTP, cchs2022_m::SMKDVSTP, cchs2023_m::SMKDVSTP, [SMKDGSTP]","smoking","Health behaviour","Years",NA,"StatCan derived continuous years since quit (all former smokers). Available 2009+. Preferred where available; cross-validate with SMK_09A_cont","StatsCan derived years since quit (all former smokers). Available from 2007 onward. Cross-validates SMK_09A_cont estimates.","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMK_204","Cigs/day (current)","Number of cigarettes smoked daily - current daily smokers","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_204, cchs2003_p::SMKC_204, cchs2005_p::SMKE_204, cchs2015_2016_p::SMK_045, cchs2017_2018_p::SMK_045, cchs2019_2020_p::SMK_045, cchs2022_p::CSS_25, cchs2023_p::CSS_25, cchs2001_m::SMKA_204, cchs2003_m::SMKC_204, cchs2005_m::SMKE_204, cchs2015_2016_m::SMK_045, cchs2017_2018_m::SMK_045, cchs2019_2020_m::SMK_045, cchs2021_m::SMK_045, cchs2022_m::CSS_25, cchs2023_m::CSS_25, [SMK_204]","smoking","Health behaviour","Cigarettes/day",NA,"Smoking intensity - current daily smokers. Input to intensity (CPD) model","Cigarettes per day for current daily smokers. Input to smoking intensity descriptive tables and future intensity model.","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMK_208","Cigs/day (former)","Number of cigarettes smoked daily - former daily smokers","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_208, cchs2003_p::SMKC_208, cchs2005_p::SMKE_208, cchs2015_2016_p::SMK_075, cchs2017_2018_p::SMK_075, cchs2019_2020_p::SMK_075, cchs2001_m::SMKA_208, cchs2003_m::SMKC_208, cchs2005_m::SMKE_208, cchs2015_2016_m::SMK_075, cchs2017_2018_m::SMK_075, cchs2019_2020_m::SMK_075, cchs2021_m::SMK_075, cchs2022_m::SPU_20, cchs2023_m::SPU_20, [SMK_208]","smoking","Health behaviour","Cigarettes/day",NA,"Smoking intensity - former daily smokers (peak CPD while smoking). Input to intensity model","Cigarettes per day for former daily smokers (peak while smoking). Input to smoking intensity descriptive tables.","0.1.0","2026-06-09","","","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMKG01C_cont","Age first cigarette (PUMF grouped)","","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKAG01C, cchs2003_p::SMKCG01C, cchs2005_p::SMKEG01C, cchs2015_2016_p::SMKG035, cchs2017_2018_p::SMKG035, cchs2019_2020_p::SMKG035, cchs2022_p::CSS_10, cchs2023_p::CSS_10, cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2007_2008_m::SMK_01C, cchs2009_2010_m::SMK_01C, cchs2009_m::SMK_01C, cchs2010_m::SMK_01C, cchs2011_2012_m::SMK_01C, cchs2012_m::SMK_01C, cchs2013_2014_m::SMK_01C, cchs2014_m::SMK_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMKG01C]","smoking","Health behaviour","Years",NA,"PUMF grouped age first cigarette (recoded to midpoints). Intermediate input to age_first_cigarette (cchsflow v3).","Intermediate: PUMF grouped age first cigarette recoded to midpoints. Required by cchsflow v3 to compute age_first_cigarette.","0.1.0","2026-06-09","","active","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMKG040_cont","Age started daily smoking (PUMF grouped)","","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::[SMKG203_pre2005, SMKG207_pre2005], cchs2003_p::[SMKG203_pre2005, SMKG207_pre2005], cchs2005_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2007_2008_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2009_2010_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2010_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2011_2012_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2012_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2013_2014_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2014_p::[SMKG203_2005plus, SMKG207_2005plus], cchs2001_m::[SMK_203, SMK_207], cchs2003_m::[SMK_203, SMK_207], cchs2005_m::[SMK_203, SMK_207], cchs2007_2008_m::[SMK_203, SMK_207], cchs2009_2010_m::[SMK_203, SMK_207], cchs2009_m::[SMK_203, SMK_207], cchs2010_m::[SMK_203, SMK_207], cchs2011_2012_m::[SMK_203, SMK_207], cchs2012_m::[SMK_203, SMK_207], cchs2013_2014_m::[SMK_203, SMK_207], cchs2014_m::[SMK_203, SMK_207], cchs2015_2016_m::SMK_040, cchs2017_2018_m::SMK_040, cchs2019_2020_m::SMK_040, cchs2021_m::SMK_040, cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMKG040]","smoking","Health behaviour","Years",NA,"PUMF grouped age started daily smoking (recoded to midpoints). Intermediate input to age_start_smoking (cchsflow v3).","Intermediate: PUMF grouped age started daily smoking recoded to midpoints. Required by cchsflow v3 to compute age_start_smoking.","0.1.0","2026-06-10","","active","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","both" +"SMKDVSTP","Time since quit (master)","","Continuous","cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2003_m::SMKCDSTP, cchs2005_m::SMKEDSTP, cchs2007_2008_m::SMKDSTP, cchs2009_2010_m::SMKDSTP, cchs2009_m::SMKDSTP, cchs2010_m::SMKDSTP, cchs2011_2012_m::SMKDSTP, cchs2012_m::SMKDSTP, cchs2013_2014_m::SMKDSTP, cchs2014_m::SMKDSTP, [SMKDVSTP]","smoking","Health behaviour","Years","Master-only StatCan derived time since quit (all former smokers, 0-88 years). No longer a cchsflow feeder: v3 final derives time_quit_smoking from SMK_09A_cont/SMK_06A_cont. Retained for Master (RDC) cross-validation.","Master file derived time since quit smoking (all former smokers). Intermediate input to time_quit_smoking (cchsflow v3). Not available in PUMF.","Master-only cross-validation of PUMF midpoint-imputed years since quit. Not a feeder for any unified variable in cchsflow v3 final.","0.1.0","2026-06-09","","active","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","intermediate","master" +"SMK_05D","Ever daily (occ)","Ever smoked cigarettes daily (asked of occasional smokers)","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05D, cchs2003_p::SMKC_05D, cchs2005_p::SMKE_05D, cchs2015_2016_p::SMK_030, cchs2017_2018_p::SMK_030, cchs2019_2020_p::SMK_030, cchs2001_m::SMKA_05D, cchs2003_m::SMKC_05D, cchs2005_m::SMKE_05D, cchs2015_2016_m::SMK_030, cchs2017_2018_m::SMK_030, cchs2019_2020_m::SMK_030, cchs2021_m::SMK_030, cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_05D]","smoking","Health behaviour","N/A",NA,"Ever smoked daily (asked of occasional smokers).","Intermediate: feeder for SMKDSTY_original 2015-2021 (with SMK_202, SMK_01A).","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMKDSTY_cat5","Smoking (5-cat)","Smoking status (5-category): daily, occasional, former daily, former occasional, never","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKADSTY, cchs2003_p::SMKCDSTY, cchs2005_p::SMKEDSTY, cchs2015_2016_p::SMKDVSTY, cchs2017_2018_p::SMKDVSTY, cchs2019_2020_p::SMKDVSTY, cchs2022_p::SMKDVSTY, cchs2023_p::SMKDVSTY, cchs2001_m::SMKADSTY, cchs2003_m::SMKCDSTY, cchs2005_m::SMKEDSTY, cchs2015_2016_m::SMKDVSTY, cchs2017_2018_m::SMKDVSTY, cchs2019_2020_m::SMKDVSTY, cchs2021_m::SMKDVSTY, cchs2022_m::SMKDVSTY, cchs2023_m::SMKDVSTY, [SMKDSTY]","smoking","Health behaviour","N/A",NA,"Smoking status, 5 categories avoiding the 2015 semantic break.","Intermediate: feeder for time_quit_smoking_daily (cchsflow v3).","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMK_09C","Yrs quit daily","Years since stopped smoking daily - former daily (Master continuous)","Continuous","cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_m::SMKA_09A, cchs2003_m::SMKC_09C, cchs2005_m::SMKE_09C, cchs2015_2016_m::SMK_090, cchs2017_2018_m::SMK_090, cchs2019_2020_m::SMK_090, cchs2021_m::SMK_090, [SMK_09C]","smoking","Health behaviour","years",NA,"Master continuous years since stopped smoking daily (former daily smokers).","Intermediate: Master exact-years feeder for time_quit_smoking_daily.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","master" +"SMK_01C","Age 1st cig","Age smoked first whole cigarette","Continuous","cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::SMKA_01C, cchs2003_m::SMKC_01C, cchs2005_m::SMKE_01C, cchs2015_2016_m::SMK_035, cchs2017_2018_m::SMK_035, cchs2019_2020_m::SMK_035, cchs2021_m::SMK_035, cchs2022_m::CSS_10, cchs2023_m::CSS_10, [SMK_01C]","smoking","Health behaviour","years",NA,"Master continuous age smoked first whole cigarette.","Intermediate: Master exact-age feeder for age_first_cigarette.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","master" +"SMK_040","Age daily (ever)","Age started smoking cigarettes daily (all ever-daily smokers)","Continuous","cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::[SMK_203, SMK_207], cchs2003_m::[SMK_203, SMK_207], cchs2005_m::[SMK_203, SMK_207], cchs2007_2008_m::[SMK_203, SMK_207], cchs2009_2010_m::[SMK_203, SMK_207], cchs2009_m::[SMK_203, SMK_207], cchs2010_m::[SMK_203, SMK_207], cchs2011_2012_m::[SMK_203, SMK_207], cchs2012_m::[SMK_203, SMK_207], cchs2013_2014_m::[SMK_203, SMK_207], cchs2014_m::[SMK_203, SMK_207], cchs2022_m::SPU_15, cchs2023_m::SPU_15, [SMK_040]","smoking","Health behaviour","years",NA,"Master continuous age started smoking daily (all ever-daily smokers).","Intermediate: Master exact-age feeder for age_start_smoking.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","master" +"time_quit_smoking","Yrs since quit smoking","Years since quit smoking (combined former daily and occasional)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2023_m","DerivedVar::[SMK_09A_cont, SMK_06A_cont]","smoking","Health behaviour","years",NA,"Unified years since quit, all former smokers (SMK_09A_cont priority, SMK_06A_cont fallback).","Intermediate: feeder for pack_years_der. cchsflow v3 recommended primary cessation measure (all former smokers); study uses time_quit_smoking_daily for the cessation APC numerator.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"smoked_100_lifetime","Smoked 100+ (ever)*","Ever smoked 100 or more cigarettes in lifetime (unified)","Categorical","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","DerivedVar::[SMK_01A]","smoking","Health behaviour","N/A",NA,"Unified ever smoked 100+ cigarettes (pass-through of SMK_01A).","Intermediate: feeder for pack_years_der.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMKG203_cont","Age daily (curr)","Age started smoking cigarettes daily (current daily smokers)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKAG203, cchs2003_p::SMKCG203, cchs2005_p::SMKEG203, cchs2015_2016_p::[SMK_005, SMKG040], cchs2017_2018_p::[SMK_005, SMKG040], cchs2019_2020_p::[SMK_005, SMKG040], cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, cchs2007_2008_m::SMK_203, cchs2009_2010_m::SMK_203, cchs2011_2012_m::SMK_203, cchs2013_2014_m::SMK_203, cchs2015_2016_m::[SMK_005, SMK_040], cchs2017_2018_m::[SMK_005, SMK_040], cchs2019_2020_m::[SMK_005, SMK_040], cchs2021_m::[SMK_005, SMK_040], cchs2022_m::[SMK_005, SMK_040], cchs2023_m::[SMK_005, SMK_040], [SMKG203]","smoking","Health behaviour","years",NA,"Age started smoking cigarettes daily (current daily smokers)","Intermediate: age started daily, current daily smokers (midpoint). With SMKG207_cont, feeds SMKG040_cont for 2001-2014.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMKG207_cont","Age daily (fmr)","Age started smoking cigarettes daily (former daily smokers)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_p::SMKAG207, cchs2003_p::SMKCG207, cchs2005_p::SMKEG207, cchs2015_2016_p::[SMK_005, SMK_030, SMKG040], cchs2017_2018_p::[SMK_005, SMK_030, SMKG040], cchs2019_2020_p::[SMK_005, SMK_030, SMKG040], cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, cchs2007_2008_m::SMK_207, cchs2009_2010_m::SMK_207, cchs2011_2012_m::SMK_207, cchs2013_2014_m::SMK_207, cchs2015_2016_m::[SMK_005, SMK_030, SMK_040], cchs2017_2018_m::[SMK_005, SMK_030, SMK_040], cchs2019_2020_m::[SMK_005, SMK_030, SMK_040], cchs2021_m::[SMK_005, SMK_030, SMK_040], cchs2022_m::[SMK_005, SMK_030, SMK_040], cchs2023_m::[SMK_005, SMK_030, SMK_040], [SMKG207]","smoking","Health behaviour","years",NA,"Age started smoking cigarettes daily (former daily smokers)","Intermediate: age started daily, former daily smokers (midpoint). With SMKG203_cont, feeds SMKG040_cont for 2001-2014.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMK_203","Age daily (curr)","Age started smoking cigarettes daily (current daily smokers)","Continuous","cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_m::SMKA_203, cchs2003_m::SMKC_203, cchs2005_m::SMKE_203, cchs2015_2016_m::[SMK_005, SMK_040], cchs2017_2018_m::[SMK_005, SMK_040], cchs2019_2020_m::[SMK_005, SMK_040], cchs2021_m::[SMK_005, SMK_040], cchs2022_m::[SMK_005, SMK_040], cchs2023_m::[SMK_005, SMK_040], [SMK_203]","smoking","Health behaviour","years",NA,"Age started smoking cigarettes daily (current daily smokers)","Intermediate: transitive feeder for SMKG040_cont / SMK_040 (Master) in the cchsflow v3 derivation chain.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","master" +"SMK_207","Age daily (fmr)","Age started smoking cigarettes daily (former daily smokers)","Continuous","cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","cchs2001_m::SMKA_207, cchs2003_m::SMKC_207, cchs2005_m::SMKE_207, cchs2015_2016_m::[SMK_005, SMK_030, SMK_040], cchs2017_2018_m::[SMK_005, SMK_030, SMK_040], cchs2019_2020_m::[SMK_005, SMK_030, SMK_040], cchs2021_m::[SMK_005, SMK_030, SMK_040], cchs2022_m::[SMK_005, SMK_030, SMK_040], cchs2023_m::[SMK_005, SMK_030, SMK_040], [SMK_207]","smoking","Health behaviour","years",NA,"Age started smoking cigarettes daily (former daily smokers)","Intermediate: transitive feeder for SMKG040_cont / SMK_040 (Master) in the cchsflow v3 derivation chain.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","master" +"SMK_005","Smoking freq (2015+)","Type of smoker presently (2015+ era-specific name for SMK_202)","Categorical","cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","[SMK_005]","smoking","Health behaviour","N/A",NA,"Type of smoker presently (2015+ era-specific name for SMK_202)","Intermediate: transitive feeder for SMK_203, SMK_207 in the cchsflow v3 derivation chain.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMK_030","Ever daily (2015+)","Smoked daily - lifetime (2015+ era-specific name for SMK_05D)","Categorical","cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2022_m::SPU_05, cchs2023_m::SPU_05, [SMK_030]","smoking","Health behaviour","N/A",NA,"Smoked daily - lifetime (2015+ era-specific name for SMK_05D)","Intermediate: transitive feeder for SMK_207 in the cchsflow v3 derivation chain.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMK_05B","Cigs/day (occ)","Number of cigarettes smoked daily - occasional smokers","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05B, cchs2003_p::SMKC_05B, cchs2005_p::SMKE_05B, cchs2015_2016_p::SMK_050, cchs2017_2018_p::SMK_050, cchs2019_2020_p::SMK_050, cchs2022_p::CSS_30, cchs2023_p::CSS_30, cchs2001_m::SMKA_05B, cchs2003_m::SMKC_05B, cchs2005_m::SMKE_05B, cchs2015_2016_m::SMK_050, cchs2017_2018_m::SMK_050, cchs2019_2020_m::SMK_050, cchs2021_m::SMK_050, cchs2022_m::CSS_30, cchs2023_m::CSS_30, [SMK_05B]","smoking","Health behaviour","cigarettes",NA,"Number of cigarettes smoked daily - occasional smokers","Intermediate: cigarettes per day on days smoked (occasional smokers); occasional-period feeder for pack_years_der.","0.1.0","2026-06-10","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"SMK_05C","Days smoked/month","Days smoked at least 1 cigarette in past month","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2022_p, cchs2023_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_p::SMKA_05C, cchs2003_p::SMKC_05C, cchs2005_p::SMKE_05C, cchs2015_2016_p::SMK_055, cchs2017_2018_p::SMK_055, cchs2019_2020_p::SMK_055, cchs2022_p::CSS_35, cchs2023_p::CSS_35, cchs2001_m::SMKA_05C, cchs2003_m::SMKC_05C, cchs2005_m::SMKE_05C, cchs2015_2016_m::SMK_055, cchs2017_2018_m::SMK_055, cchs2019_2020_m::SMK_055, cchs2021_m::SMK_055, cchs2022_m::CSS_35, cchs2023_m::CSS_35, [SMK_05C]","smoking","Health behaviour","days",NA,"Days smoked at least 1 cigarette in past month","Intermediate: days smoked per month (occasional smokers); occasional-period feeder for pack_years_der.","0.1.0","2026-06-10","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","both" +"DHH_AGE","Age","Age","Continuous","cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m, cchs2022_m, cchs2023_m","cchs2001_m::DHHA_AGE, cchs2003_m::DHHC_AGE, cchs2005_m::DHHE_AGE, cchs2022_m::AWCAGE, cchs2023_m::AWCAGE, [DHH_AGE]","demographics","Sociodemographics","Years",NA,"Age","Intermediate: transitive feeder for pack_years_der (Master exact age) in the cchsflow v3 derivation chain.","0.1.0","2026-06-09","Added for cchsflow v3 derivation chain; Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","active",NA,"intermediate","master" +"cigs_per_day","Cigs/day (unified)*","Cigarettes per day - unified daily + former daily (cchsflow v3)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMK_204, SMK_208, SMKDSTY_original]","smoking","Health behaviour","Cigarettes/day","Unified cigs/day (cchsflow v3). DerivedVar::[SMK_204, SMK_208, SMKDSTY_original]. Universe: ever-daily smokers. Not supported PUMF 2022/2023 (SMK_208 is Master-only via SPU in those cycles).","Unified cigs/day (cchsflow v3). Combines SMK_204 (current daily) and SMK_208 (former daily) automatically.","Smoking intensity for descriptive tables and future dose-response models.","0.1.0","2026-06-09","Replaces separate SMK_204/SMK_208","active","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac) - removed cchs2022_p (not supported in v3 final)","predictor, table1","both" +"pack_years_der","Pack-years (unified)*","Cumulative pack-years - derived (cchsflow v3)","Continuous","cchs2001_p, cchs2003_p, cchs2005_p, cchs2007_2008_p, cchs2009_2010_p, cchs2010_p, cchs2011_2012_p, cchs2012_p, cchs2013_2014_p, cchs2014_p, cchs2015_2016_p, cchs2017_2018_p, cchs2019_2020_p, cchs2001_m, cchs2003_m, cchs2005_m, cchs2007_2008_m, cchs2009_2010_m, cchs2009_m, cchs2010_m, cchs2011_2012_m, cchs2012_m, cchs2013_2014_m, cchs2014_m, cchs2015_2016_m, cchs2017_2018_m, cchs2019_2020_m, cchs2021_m","DerivedVar::[SMKDSTY_original, DHHGAGE_cont, DHH_AGE, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_204, SMK_208, age_first_cigarette, smoked_100_lifetime]","smoking","Health behaviour","Pack-years","Cumulative pack-years (cchsflow v3). PUMF feeders: SMKDSTY_original, DHHGAGE_cont, age_start_smoking, cigs_per_day, time_quit_smoking, SMK_204, SMK_208, age_first_cigarette, smoked_100_lifetime. Not supported PUMF 2022/2023.","Cumulative pack-years (cchsflow v3). Derived from cigs_per_day and years smoked.","Cumulative smoking exposure measure for descriptive tables.","0.1.0","2026-06-09","PUMF gap: not available 2022","active","Synced to cchsflow v3 (smoking merged 2026-04-29, commit bd0df3ac)","predictor, table1","both" diff --git a/worksheets/test.xlsx b/worksheets/test.xlsx deleted file mode 100644 index 93b735d..0000000 Binary files a/worksheets/test.xlsx and /dev/null differ