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