You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Open and run the file you just downloaded `Rtools31.exe`
* Again, there is no need to change the defaults
.
.
.
1
2
3
4
5
6
7
8
9
10
11
12
DONE
13
14
Installing RStudio
If you have already installed RStudio, before you skip this section check if you are using the right R version. Go to Tools/Global Options. Make you sure you have R-3.1.2 under R version.
* Open and run the file you just downloaded `RStudio-0.98.1091.exe`
* You don't have to change any of the defaults for the installation
.
.
.
1
2
3
DONE
4
5
6
Installing devtools
Open Rstudio, in the Files/Plots/Packages/Help panel, select Packages and then click on Install
* Type `devtools` under **Packages**, make sure you spell the name of the package correctly. Then, click on **Install**
* Alternatively, you can run the following command in the console.
```
install.packages("devtools")
```
## Installing packages from GitHub
* We are ready to install R packages from GitHub
* First we need to load the `devtools` package
```{r}
library(devtools)
```
* Now we can install the `gapminder` package.
```{r}
install_github("jennybc/gapminder")
```