Skip to contents

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

Usage

get_person_sex(ds)

Arguments

ds

A PicnicHealth data set list object.

Value

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

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 sex. See examples.

Examples

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