Title: | Recodes Sex/Gender Descriptions into a Standard Set |
---|---|
Description: | Provides functions and dictionaries for recoding of freetext gender responses into more consistent categories. |
Authors: | Yaoxiang Li [aut, cre] |
Maintainer: | Yaoxiang Li <[email protected]> |
License: | GPL-2 |
Version: | 0.1.0 |
Built: | 2025-03-14 06:30:08 UTC |
Source: | https://github.com/ropensci/gendercoder |
Provides dictionaries and a function recode_gender
to allow for easy automatic coding of common variations in free text responses to the question "What is your gender?"
Maintainer: Yaoxiang Li [email protected] (ORCID)
Authors:
Jennifer Beaudry [email protected] (ORCID)
Emily Kothe [email protected] (ORCID)
Felix Singleton Thorn [email protected] (ORCID)
Rhydwyn McGuire [email protected]
Nicholas Tierney [email protected] (ORCID)
Mathew Ling [email protected] (ORCID)
Other contributors:
Julia Silge (Julia reviewed the package (v. 0.0.0.9000) for rOpenSci, see <https://github.com/ropensci/software-review/issues/435>) [reviewer]
Elin Waring (Elin reviewed the package (v. 0.0.0.9000) for rOpenSci, see <https://github.com/ropensci/software-review/issues/435>) [reviewer]
Useful links:
Report bugs at https://github.com/ropensci/gendercoder/issues
recode_gender
matches uncleaned gender responses to cleaned list using
an built-in or custom dictionary.
recode_gender( gender, dictionary = gendercoder::manylevels_en, retain_unmatched = FALSE )
recode_gender( gender, dictionary = gendercoder::manylevels_en, retain_unmatched = FALSE )
gender |
a character vector of gender responses for recoding |
dictionary |
a list that the contains gender responses and their
replacement values. A built-in dictionary |
retain_unmatched |
logical indicating if gender responses that are not found in dictionary should be filled with the uncleaned values during recoding |
a character vector of recoded genders
df <- data.frame( stringsAsFactors = FALSE, gender = c("male", "MALE", "mle", "I am male", "femail", "female", "enby"), age = c(34L, 37L, 77L, 52L, 68L, 67L, 83L) ) dplyr::mutate(df, recoded_gender = recode_gender(gender, dictionary = manylevels_en, retain_unmatched = TRUE ))
df <- data.frame( stringsAsFactors = FALSE, gender = c("male", "MALE", "mle", "I am male", "femail", "female", "enby"), age = c(34L, 37L, 77L, 52L, 68L, 67L, 83L) ) dplyr::mutate(df, recoded_gender = recode_gender(gender, dictionary = manylevels_en, retain_unmatched = TRUE ))