Skip to contents

A helper function primarily used by table_one() to calculate the ethnicity of each person.

Usage

get_person_ethnicity(ds)

Arguments

ds

A PicnicHealth data set list object.

Value

A data frame, one row per person, with a column for person_id and ethnicity, i.e. the person's ethnicity.

Details

Beyond its use in table_one(), this function may be useful to add an additional column to an existing analytic data.frame that already contains person_id using dplyr::left_join() to include ethnicity. See examples.

Examples

if (FALSE) { # \dontrun{
# Add `ethnicity` to an analytic data set that contains `person_id`:
analytic_dataset %>%
  left_join(get_person_ethnicity(ds))
} # }