Description Usage Arguments Examples
View source: R/wordly_functions.R
Creates iterator object to be passed to make_vectorizer(). Ultimately used by prepare_dtm() to construct a DTM.
1 | make_iterator(dat_in, text_var_name, id_var_name, see_verbose = TRUE)
|
dat_in |
The data.frame or tibble input. |
text_var_name |
The name of the column in dat_in containing the text source. |
id_var_name |
The name of the column in dat_in containing the id source. |
see_verbose |
Akin to verbose. Defaults to TRUE. |
1 | iter_ret <- product_review_df %>% make_iterator("product_review", "product_id")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.