tokenize_ations_m_u_prob | R Documentation |
Joins two objects together that come back from the tokenize_ations function, joins the token counts together, and calculates the m and u probs for each token.
tokenize_ations_m_u_prob(x, y, ..., suffix = TOKEN_SUFFIX_DEFAULT)
x |
list returned from tokenize_ations |
y |
list returned from tokenize_ations |
... |
ignored |
suffix |
String vector of length 2, identifies which original dataframe a column in the result comes from. Default TOKEN_SUFFIX_DEFAULT |
dat_ceo <- readr::read_csv('https://tinyurl.com/2p8etjr6') dat_alb <- readr::read_csv('https://tinyurl.com/2p8ap4ad') tokenize_ations_m_u_prob( tokenize_ations(dat_ceo, col_nms = 'coname', token_types = 'TT'), tokenize_ations(dat_alb, col_nms = 'companyName', token_types = 'TT') )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.