Learn R Programming

rchallenge (version 1.2.0)

new_team: Create new teams submission folders in your challenge.

Description

Create new teams submission folders in your challenge.

Usage

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

Run this code
path <- tempdir()
wd <- setwd(path)
new_challenge()
new_team("team_foo", "team_bar")
setwd(wd)
unlink(path)

Run the code above in your browser using DataLab