Skip to content

Instantly share code, notes, and snippets.

@csgillespie
Last active August 19, 2020 13:58
Show Gist options
  • Save csgillespie/cad9fedb8e2d2d5b9d0462f93b779f65 to your computer and use it in GitHub Desktop.
Save csgillespie/cad9fedb8e2d2d5b9d0462f93b779f65 to your computer and use it in GitHub Desktop.

Revisions

  1. csgillespie revised this gist Aug 19, 2020. No changes.
  2. csgillespie revised this gist Nov 19, 2019. 1 changed file with 6 additions and 2 deletions.
    8 changes: 6 additions & 2 deletions odsc-pre-req.md
    Original file line number Diff line number Diff line change
    @@ -29,5 +29,9 @@ install.packages(c("tidyverse", "drat", "okcupiddata", "tidytext"))
    Course material is found in a bespoke, non-cran package that can be installed via
    ```
    drat::addRepo("jr-packages")
    install.packages(c("jrTidyverse", "jrTidyverse2"))
    ```
    install.packages(c("jrTidyverse", "jrTidyverse2", "jrAutomate", "jrShiny", "jrIntroduction", "jrGgplot2"))
    ```

    ---

    Colin Gillespie <[email protected]>
  3. csgillespie revised this gist Oct 14, 2019. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions odsc-pre-req.md
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,7 @@
    # R for Python Programmers

    This course is suitable for anyone with a some previous background in programming (not necessarily Python).

    ## Software

    ### R
  4. csgillespie revised this gist Oct 14, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion odsc-pre-req.md
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,7 @@ To be honest, earlier versions of R should work, but if possible, get the latest

    ### RStudio IDE

    Please install the latest version of RStudio Desktop IDE (https://rstudio.com/products/rstudio/download/#download).
    Please install the latest version of [RStudio Desktop IDE](https://rstudio.com/products/rstudio/download/#download).

    ### R Packages

  5. csgillespie revised this gist Oct 14, 2019. 1 changed file with 11 additions and 8 deletions.
    19 changes: 11 additions & 8 deletions odsc-pre-req.md
    Original file line number Diff line number Diff line change
    @@ -1,28 +1,31 @@
    ---
    title: "Tidyverse prerequisites (ODSC)"
    output: html_notebook
    ---
    # R for Python Programmers

    ## Software

    Please make sure you a using a recent version of [R](https://cran.r-project.org/) (at least 3.4.X) -
    ### R

    Please make sure you a using a recent version of [R](https://cran.r-project.org/) (at least 3.6.X) -
    the final digit is the minor version number. The essential numbers are the first two.
    You can check the version of R you are running via

    ```
    R.version.string
    ```
    Please install the latest version of RStudio (https://www.rstudio.com/products/rstudio/download/).
    To be honest, earlier versions of R should work, but if possible, get the latest.

    ### RStudio IDE

    Please install the latest version of RStudio Desktop IDE (https://rstudio.com/products/rstudio/download/#download).

    ### R Packages

    During the course, we'll use a few R packages. These can be installed using

    ```
    install.packages(c("tidyverse", "drat", "okcupiddata"))
    install.packages(c("tidyverse", "drat", "okcupiddata", "tidytext"))
    ```
    Course material is found in a bespoke, non-cran package that can be installed via
    ```
    drat::addRepo("jr-packages")
    install.packages("jrTidyverse")
    install.packages(c("jrTidyverse", "jrTidyverse2"))
    ```
  6. csgillespie created this gist Sep 3, 2018.
    28 changes: 28 additions & 0 deletions odsc-pre-req.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    ---
    title: "Tidyverse prerequisites (ODSC)"
    output: html_notebook
    ---

    ## Software

    Please make sure you a using a recent version of [R](https://cran.r-project.org/) (at least 3.4.X) -
    the final digit is the minor version number. The essential numbers are the first two.
    You can check the version of R you are running via

    ```
    R.version.string
    ```
    Please install the latest version of RStudio (https://www.rstudio.com/products/rstudio/download/).

    ### R Packages

    During the course, we'll use a few R packages. These can be installed using

    ```
    install.packages(c("tidyverse", "drat", "okcupiddata"))
    ```
    Course material is found in a bespoke, non-cran package that can be installed via
    ```
    drat::addRepo("jr-packages")
    install.packages("jrTidyverse")
    ```