View source: R/limpiar_duplicates.R
limpiar_duplicates | R Documentation |
Removes duplicate posts, and posts which are deleted or protected by APIs
limpiar_duplicates(data, text_var = mention_content)
data |
Data Frame or Tibble object |
text_var |
Name of the text variable/character vector |
The Data Frame or Tibble object with duplicate posts removed from the text variable
df <- data.frame(text_variable = cbind(c(
"Deleted or protected mention", "hello", "goodbye", "goodbye")))
limpiar_duplicates(df, text_variable)
limpiar_examples
limpiar_examples %>% limpiar_duplicates()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.