- January 23rd - 24th, University of Sheffield
- Bartolome House, Seminar Room EG03
As the data generated from high-throughput biological experiments increase in volume and become more complex, the ability to manipulate and visualise data is a highly-desirable skill in academia and industry. Whilst familiar tools such as Excel allow basic manipulations, they are often not scalable to larger datasets and are not ameanable to reproducible analysis.
R is a highly-regarded, free, software environment for statistical analysis, with many useful features that promote and facilitate reproducible research.
In this course, we give an introduction to the R environment and explain how it can be used to import, manipulate and visualise tabular data.
After the course you should feel confident to start exploring your own dataset using the materials and references provided.
- 12:00 - 13:00, Arrival and Lunch
- 13:00 - 15:15 Introduction to R and RStudio
- 15:30 - 17:00 Subsetting and Filtering Data in R
- 09:00 - 11:00 Introduction to plotting with ggplot2
- 11:15 - 12:30 Customising and configuring plots
- 12:30 - 13:15 LUNCH
- 13:15 - 15:00 Summarizing and joining tables
Please let us know what your thought of the course by filling-in this short feedback form
These instructions are also described in a video:- https://youtu.be/QIubJ8W8R4g
- First, install both R and RStudio for your operating system.
Install R by downloading and running this .exe file from CRAN. Also, please install the RStudio IDE. Note that if you have separate user and admin accounts, you should run the installers as administrator (right-click on .exe file and select "Run as administrator" instead of double-clicking). Otherwise problems may occur later, for example when installing R packages.
Install R by downloading and running this .pkg file from CRAN. Also, please install the free RStudio IDE
You can download the binary files for your distribution from CRAN. Or you can use your package manager (e.g. for Debian/Ubuntu run sudo apt-get install r-base
and for Fedora run sudo yum install R
). Also, please install free the RStudio IDE.
- Please download and extract (un-zip) this zip file into the directory on the computer that you wish to work in
- Type the following into the R console to install some extra R packages required for the workshop
install.packages("dplyr")
install.packages("ggplot2")
install.packages("readr")
install.packages("rmarkdown")
Mac Users may get the following error message when trying to install these packages
xcrun error: inactive developer path (/Library/Developer/CommandLineTools), missing xcrun at:.....
If this is the case, you will need to follow the instructions from this link to install "Xcode"
Window users might get a message that Rtools is required. This shouldn't be necessary, but you might need it for other packages. It can be installed here:-
https://cran.r-project.org/bin/windows/Rtools/
- Check your installation. You can check everything is installed by copying and pasting this into the R console
source("https://raw.githubusercontent.com/sheffield-bioinformatics-core/r-online/master/check_packages.R")