View source: R/find_and_remove_duplicates.R
remove_duplicates | R Documentation |
When removing duplicates, users can specify a set columns to consider with
the target_columns
argument.
remove_duplicates(data, target_columns = NULL)
data |
The input |
target_columns |
A |
The input data <data.frame>
or <linelist>
without the
duplicated rows identified from all or the specified columns.
no_dups <- remove_duplicates(
data = readRDS(
system.file("extdata", "test_linelist.RDS", package = "cleanepi")
),
target_columns = "linelist_tags"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.