create_wrds_dummy_database {tidyfinance}R Documentation

Create WRDS Dummy Database

Description

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.

Usage

create_wrds_dummy_database(path)

Arguments

path

The file path where the SQLite database should be saved. If not provided, the default path is "data/tidy_finance_r.sqlite".

Value

Invisible NULL. Side effect: downloads a file to the specified path.

Examples

path <- paste0(tempdir(), "/tidy_finance_r.sqlite")
create_wrds_dummy_database(path)


[Package tidyfinance version 0.1.0 Index]