new_team {rchallenge}R Documentation

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

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

[Package rchallenge version 1.3.4 Index]