-
Notifications
You must be signed in to change notification settings - Fork 2
/
software-check.Rmd
56 lines (37 loc) · 1.98 KB
/
software-check.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: "Software Requirements"
author: "Mark Dunning"
date: "21 March 2017"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Software Requirements for Data Manipulation and Visualisation in R
In order to run the course effectively, you will need the latest versions of R and RStudio. At the time of writing, the latest versions can be downloaded from the following links:-
## R
- R 3.3.3 for Mac OS X
+ https://cran.r-project.org/bin/macosx/R-3.3.3.pkg
- R 3.3.3 for Windows
+ https://cran.r-project.org/bin/windows/base/R-3.3.3-win.exe
## RStudio
- RStudio 1.0.136 for Mac OS X
+ https://download1.rstudio.org/RStudio-1.0.136.dmg
- RStudio 1.0.136 for Windows
+ https://download1.rstudio.org/RStudio-1.0.136.exe
## R Packages
You will need to install a number of R packages. To do this, open RStudio and copy-and-paste these lines of code at the R console:-
```{r eval=FALSE}
install.packages("devtools")
devtools:::install_github("hadley/tidyverse")
install.packages(c("rmarkdown","cowplot"))
```
## Verifying you have the correct versions
Open Rstudio and select Help -> About RStudio. The version of RStudio should be *1.0.136*. If not, please use the links above to install version 1.0.136 of RStudio.
![](images/rstudio-about.png)
## Running a small example
Right click on this link:- [RIGHT-CLICK HERE](https://raw.githubusercontent.com/bioinformatics-core-shared-training/r-intermediate/master/pre_course_check.Rmd) and save the linked file (`pre_course_check.Rmd`) somewhere on your laptop. Open the file in RStudio and select the Run All option from the Run menu
![](images/run-all.png)
Now click the Preview button
![](images/rstudio-preview.png)
You should get a HTML file containing a table and graph. Please compare your output to the example on [this page](https://rawgit.com/bioinformatics-core-shared-training/r-intermediate/master/example-output.html). If you do not see the graph or table, please let us know.