View source: R/fix_duplicate_rows.R
fix_duplicate_rows | R Documentation |
This function removes duplicate rows from a data frame.
fix_duplicate_rows(df)
df |
A data frame |
A data frame with duplicate rows removed
df <- data.frame(a = c(1, 1, 2), b = c(2, 2, 3))
fix_duplicate_rows(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.