new_team(..., path = ".", submissions_dir = "submissions", quiet = FALSE, showWarnings = FALSE)
new_challenge
.new_challenge
.dir.create
.Create new teams submission folders in your challenge.
path <- tempdir() wd <- setwd(path) new_challenge()New challenge installed in: "/tmp/Rtmp5vusFY" 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. Publish the html page in your "Dropbox/Public" folder: rchallenge::publish("./challenge.rmd") 6. Give the Dropbox public link to "Dropbox/Public/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("/tmp/Rtmp5vusFY/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)