new_team: Create new teams submission folders in your challenge.

Description Usage Arguments Value Examples

View source: R/new.r

Description

Create new teams submission folders in your challenge.

Usage

1
2
3
4
5
6
7
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

1
2
3
4
5
6
path <- tempdir()
wd <- setwd(path)
new_challenge()
new_team("team_foo", "team_bar")
setwd(wd)
unlink(path)

adrtod/rchallenge documentation built on March 23, 2021, 7:43 a.m.