Detect the pronouns from a text (in French)
pr_detect_pro(df, col, verbose = FALSE)
df | a dataframe |
---|---|
col | the column containing the text |
verbose | wether or not to return the list of pronouns. Defaults is FALSE |
a tibble with the detected pronouns
The shortcuts in the pronoun col stand for:
pps: first person singular (première personne du singulier)
dps: second person singular (deuxième personne du singulier)
tps: third person singular (troisième personne du singulier)
ppp: first person plural (première personne du pluriel)
dpp: second person singular (deuxième personne du pluriel)
tpp: third person singular (troisième personne du pluriel)
#> # A tibble: 2 x 6 #> text book volume year pronoun full_list #> * <chr> <chr> <chr> <dbl> <chr> <list> #> 1 "Longtemps, je me suis couch… Du côté d… Première pa… 1913 pps <chr [26… #> 2 "Longtemps, je me suis couch… Du côté d… Première pa… 1913 tps <chr [13…pr_detect_pro(a, text)#> # A tibble: 2 x 6 #> text book volume year pronoun count #> * <chr> <chr> <chr> <dbl> <chr> <int> #> 1 "Longtemps, je me suis couché d… Du côté de… Première pa… 1913 pps 26 #> 2 "Longtemps, je me suis couché d… Du côté de… Première pa… 1913 tps 13