inst/dev/dl_all_surveys.r

library(socialmixr)
library(here)
library(cli)

cli_h1("Starting survey download...")

## list all surveys
survey_list <- list_surveys()
cli_h1("Found {nrow(survey_list)} surveys to download")

dir.create(here("surveys"), showWarnings = FALSE)

## download all surveys using the `url` column in the survey list and
## save them in the `surveys` folder (which is created if it does not exist)
survey_files <- purrr::map(survey_list$url, function(x) {
  tryCatch(
    {
      f <- download_survey(x, here("surveys"))
      Sys.sleep(2) # Be nice to the server
      f
    },
    error = function(e) {
      cli::cli_alert_warning(
        "Download failed for {.url {x}}: {conditionMessage(e)}"
      )
      NULL
    }
  )
})

## name list elements according to url
names(survey_files) <- glue::glue("{survey_list$title} ({survey_list$url})")

## save list of survey files
saveRDS(survey_files, here("surveys", "survey_files.rds"))

cli_h1("Download phase completed")

Try the socialmixr package in your browser

Any scripts or data that you put into this service are public.

socialmixr documentation built on April 29, 2026, 9:07 a.m.