Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

competition_download_file

Competition download file


Description

download a competition file to a designated location, or use

Usage

competition_download_file(
  competition,
  file_name,
  path = NULL,
  force = FALSE,
  quiet = FALSE
)

Arguments

competition

the name of the competition

file_name

the configuration file name

path

a path to download the file to

force

force the download if the file already exists (default FALSE)

quiet

suppress verbose output (default is FALSE)

Value

None

Examples

## Not run: 

com_nm = 'titanic'

titanic_files = competition_list_files(com_nm)
titanic_files = lapply(1:length(titanic_files),
                      function(x) as.character(titanic_files[[x]]))

str(titanic_files)

if(!dir.exists(com_nm)) {
 dir.create(com_nm)
}

# download via api
competition_download_files(competition = com_nm, path = com_nm, unzip = TRUE)


## End(Not run)

fastai

Interface to 'fastai'

v2.0.7
Apache License 2.0
Authors
Turgut Abdullayev [ctb, cre, cph, aut]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.