Create new teams submission folders in your challenge.

new_team(
  ...,
  path = ".",
  submissions_dir = "submissions",
  quiet = FALSE,
  showWarnings = FALSE
)

Arguments

...

strings. names of the team subdirectories.

path

string. root path of the challenge. see new_challenge.

submissions_dir

string. subdirectory of the submissions. see new_challenge.

quiet

logical. deactivate text output.

showWarnings

logical. should the warnings on failure be shown? see dir.create.

Value

The paths of the created teams are returned.

Examples

path <- tempdir() wd <- setwd(path) new_challenge()
#> New challenge installed in: "/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/RtmpcOhZNa" #> Next steps to complete the installation: #> 1. Replace the data files in the "data" subdirectory. #> 2. Replace the baseline predictions in "submissions/baseline". #> 3. Customize the template R Markdown file "challenge.rmd" as needed. #> 4. Create and share subdirectories in "submissions" for each team: #> rchallenge::new_team("team_foo", "team_bar", path=".", submissions_dir="submissions") #> 5. Render the HTML page: #> rchallenge::publish("./challenge.rmd") #> 6. Give the URL to "challenge.html" to the participants. #> 7. Automate the updates of the webpage. #> On Unix systems, you can setup the following line to your crontab using "crontab -e": #> 0 * * * * Rscript -e 'rchallenge::publish("/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/RtmpcOhZNa/challenge.rmd")'
new_team("team_foo", "team_bar")
#> Creating team subdirectory: submissions/team_foo #> Creating team subdirectory: submissions/team_bar #> Next step: share the Dropbox folders with the corresponding teams.
setwd(wd) unlink(path)