# Exclude duplicate IP addresses and locations
data(qualtrics_text)
df <- exclude_duplicates(qualtrics_text)
# Remove preview data first
df <- qualtrics_text %>%
exclude_preview() %>%
exclude_duplicates()
# Exclude only for duplicate locations
df <- qualtrics_text %>%
exclude_preview() %>%
exclude_duplicates(dupl_location = FALSE)
Run the code above in your browser using DataLab