Last active
August 19, 2020 13:58
-
-
Save csgillespie/cad9fedb8e2d2d5b9d0462f93b779f65 to your computer and use it in GitHub Desktop.
Revisions
-
csgillespie revised this gist
Aug 19, 2020 . No changes.There are no files selected for viewing
-
csgillespie revised this gist
Nov 19, 2019 . 1 changed file with 6 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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", "jrAutomate", "jrShiny", "jrIntroduction", "jrGgplot2")) ``` --- Colin Gillespie <[email protected]> -
csgillespie revised this gist
Oct 14, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 -
csgillespie revised this gist
Oct 14, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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). ### R Packages -
csgillespie revised this gist
Oct 14, 2019 . 1 changed file with 11 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,28 +1,31 @@ # R for Python Programmers ## Software ### 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 ``` 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", "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")) ``` -
csgillespie created this gist
Sep 3, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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") ```