knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

```{js,echo=FALSE} code .sourceCode { white-space: pre-wrap; / Since CSS 2.1 / white-space: -moz-pre-wrap; / Mozilla, since 1999 / white-space: -pre-wrap; / Opera 4-6 / white-space: -o-pre-wrap; / Opera 7 / word-wrap: break-word; / Internet Explorer 5.5+ / overflow-wrap: break-word; }

```r
className <- params$className
organizer <- params$organizer
packages <- sort(params$packages)

Live Training

This is an empty repo to initialize an R project for training courses organized by r organizer.

Packages

To get started run the following code to install the latest version of the necessary packages.

packages <- c('caret', 'coefplot','DBI', 'dbplyr', 'doParallel', 'dygraphs', 
              'foreach', 'ggthemes', 'glmnet', 'jsonlite', 'leaflet', 'odbc', 
              'recipes', 'rmarkdown', 'rprojroot', 'RSQLite', 'rvest', 
              'tidyverse', 'threejs', 'usethis', 'UsingR', 'xgboost', 'XML', 
              'xml2')
install.packages(packages)

packages <- `r sprintf("c(\n\t'%s'\n)", paste(packages, collapse="', \n\t'"))`
install.packages(packages)

Project Structure

Making use of RStudio projects greatly improves the user experience. To facilitate this users should run the following code which will recreate this project on their computer. Be sure to select the positive prompts such as yes, yeah, etc.

newProject <- usethis::use_course('https://github.com/jaredlander/`r className`/archive/master.zip')

After that runs successfully you will have a new folder holding the R project that looks like this (the name in the image may be different).

knitr::include_graphics('images/ProjectFolder.png')

If a new project did not open automatically, either double-click the file called r sprintf('%s.Rproj', className) or run the following line of code.

rstudioapi::openProject(newProject)

After running this code, or double-clicking that file, you will be in an RStudio Project called r className (the name in the image may be different). You can see this in the top right of RStudio.

knitr::include_graphics('images/ProjectCorner.png')

Clone this Repo

Alternatively, if you use git then please clone this repo then open it as an RStudio Project.

Skip this step if you followed the instructions above.

# if using SSH
git clone git@github.com:jaredlander/`r className`.git

# if using https
git clone https://github.com/jaredlander/`r className`.git

Data

Data for the class is kept at data.world. You can sign up for a free account or run the following code. This requires that you are using an RStudio Project setup exactly like this repo, which is done if you followed the preceding code.

source('prep/DownloadData.r')


Try the RepoGenerator package in your browser

Any scripts or data that you put into this service are public.

RepoGenerator documentation built on May 2, 2019, 3:43 a.m.