Skip to contents

Provides a small dictionary which matches common English pronouns and nouns to conventional gender categories ("masculine" or "feminine"). There are 20 words in each category.

Usage

tiny_gender_tagger()

Value

returns a tibble with two columns

Author

Dustin Stoltz

Examples

# \donttest{
tags <- tiny_gender_tagger()
head(tags)
#> # A tibble: 6 × 2
#>   word    gender  
#>   <chr>   <chr>   
#> 1 she     feminine
#> 2 her     feminine
#> 3 hers    feminine
#> 4 herself feminine
#> 5 woman   feminine
#> 6 girl    feminine
# }