select_data | R Documentation |
Selects the variables required for analysis and selects only the rows without missing data for specified variables.
select_data(
data,
ages = 8:89,
years = 2001:2018,
keep_vars = c("age", "sex", "imd_quintile"),
complete_vars = c("age", "sex", "imd_quintile")
)
data |
Data table - the Health Survey for England dataset. |
ages |
Integer vector - the ages in single years to retain (defaults to 8 to 89 years). |
years |
Integer vector - the years in single years to retain. |
keep_vars |
Character vector - the names of the variables to keep. |
complete_vars |
Character vector - the names of the variables on which the selection of complete cases will be based. |
Returns a reduced version of data
## Not run:
data <- select_data(data, keep_vars = c("age", "sex", "imd_quintile", "cig_smoker_status"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.