# Check for rows with incomplete progress
data(qualtrics_text)
check_progress(qualtrics_text)
# Remove preview data first
qualtrics_text %>%
exclude_preview() %>%
check_progress()
# Include a lower acceptable completion percentage
qualtrics_numeric %>%
exclude_preview() %>%
check_progress(min_progress = 98)
# Do not print rows to console
qualtrics_text %>%
exclude_preview() %>%
check_progress(print = FALSE)
# Do not print message to console
qualtrics_text %>%
exclude_preview() %>%
check_progress(quiet = TRUE)
Run the code above in your browser using DataLab