50% off | Unlimited Data & AI Learning
Get 50% off unlimited learning

rchallenge (version 1.3.4)

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
# NOT RUN {
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