Skip to contents

acquire_ppi() is mainly a wrapper to download the file stored in ppi_url(). You can optionally specify where to save the downloaded file.

Usage

acquire_ppi(path)

Arguments

path

Folder to put the downloaded data in. If missing a tempfile will be created.

Value

Path and filename of the downloaded file.

Examples

if (FALSE) { # \dontrun{
file <- acquire_ppi()
data <- file |>
          get_ppi_metadata()

my_ppi <- acquire_ppi("~/data")
} # }