# Check for IP addresses outside of the US
data(qualtrics_text)
check_ip(qualtrics_text)
# Remove preview data first
qualtrics_text %>%
exclude_preview() %>%
check_ip()
# Check for IP addresses outside of Germany
qualtrics_text %>%
exclude_preview() %>%
check_ip(country = "DE")
# Do not print rows to console
qualtrics_text %>%
exclude_preview() %>%
check_ip(print = FALSE)
# Do not print message to console
qualtrics_text %>%
exclude_preview() %>%
check_ip(quiet = TRUE)
Run the code above in your browser using DataLab