View source: R/04_comparison_functions.R
fst_get_unique_ngrams_separate | R Documentation |
Takes at least two separate tables of n-grams and frequencies (either output of 'fst_freq_table()' or 'fst_ngrams_table()') and finds n-grams unique to one table.
fst_get_unique_ngrams_separate(table1, table2, ...)
table1 |
The first n-grams table. |
table2 |
The second n-grams table. |
... |
Any other n-grams tables you want to include. |
Dataframe of words and whether word is unique or not.
top_child <- fst_freq_table(fst_child)
top_dev <- fst_freq_table(fst_dev_coop)
fst_get_unique_ngrams_separate(top_child, top_dev)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.