Skip to contents

Made specifically for CaLREDIE UDF data export. Recode abbreviations to full names.

Usage

recode_gender(col)

Arguments

col

Input column from CalREDIE.

Value

Recoded input column as character.

Examples

example = c("F","F","TF",NA)
recode_gender(example)
#> [1] "Female"            "Female"            "Transgender woman"
#> [4] "Missing/Unknown"