create_wrds_dummy_database {tidyfinance} | R Documentation |
Downloads the WRDS dummy database from the respective Tidy Finance GitHub repository and saves it to the specified path. If the file already exists, the user is prompted before it is replaced.
create_wrds_dummy_database(path)
path |
The file path where the SQLite database should be saved. If not provided, the default path is "data/tidy_finance_r.sqlite". |
Invisible NULL
. Side effect: downloads a file to the specified path.
path <- paste0(tempdir(), "/tidy_finance_r.sqlite")
create_wrds_dummy_database(path)