Description Usage Arguments Value Examples
bind the grammatical category of a word
bind the gender of a word (if appliable)
bind the verbal info of a verb (if appliable)
bind the lemme to a word
1 2 3 4 5 6 7 | bind_gram_cat(df, col)
bind_gender(df, col)
bind_infover(df, col)
bind_lemme(df, col)
|
df |
the dataframe |
col |
the column with words |
a tibble
1 2 3 4 5 6 | ad <- proustr::albertinedisparue
b <- tidytext::unnest_tokens(ad, mots, text) %>%
count(mots) %>%
slice(1:10)
bind_homograph(b, mots)
bind_gram_cat(b, mots)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.