York University
October 8th, 2019 Instructor: Alex Filazzola
12:15 - 2:00 pm 306 Lumbers

General Information

Biologists cover a diverse set of disciplines (e.g. ecology, evolution, cell biology) and are thus expected to know a larger range of statistics. However, knowledge of the appropriate statistic test to answer a biological question can be a major limitation for researchers. This workshop is an introduction to the different methods and statistical approaches to analyzing data in all disciplines of biology. The workshop will focus on how to match the available data to possible analyses. I will discuss relevant analyses when there are multiple response variables, multiple predictors, and examples of presenting interactions (both statistical and biological). I will also discuss graphical representation of results and data manipulation. No prior knowledge is necessary, but some basic understanding of the R environment will make the workshop more relevant and useful. The goal of this workshop will be to provide a glossary of potential analyses that will assist understanding and presenting biological data.

Who: The course is aimed at R beginners to intermediate analysts. Some previous knowledge of R would be useful.

Where: York University, 306 Lumbers

What else?: If learning biostats isn’t enough of a draw for you, we will be providing free food!!

Requirements: Participants should bring a laptop with a Mac, Linux, or Windows operating system (not a tablet, Chromebook, etc.) with administrative privileges. If you want to work along during tutorial, you must have R studio installed on your own computer (See below for instructions). However, if you prefer to watch, you are welcome to attend because all examples will be presented via a projector in the classroom.

Contact: Please contact alex.filazzola@outlook.com for more information.

Schedule

Live Notepad

Time Goal
12:15 Meet & greet. Test software
12:30 Analysis Fundamentals
12:35 Univariate Stats
1:00 Multivariate analyses
1:30 Graphics
1:55 De-brief

Software

R

R is a programming language that is especially powerful for data exploration, visualization, and statistical analysis. To interact with R, we use RStudio.

Windows Mac OS X Linux
Install R by downloading and running this .exe file from CRAN. Please also install the RStudio IDE. Install R by downloading and running this .pkg file from CRAN. Please also install the RStudio IDE. You can download the binary files for your distribution from CRAN. Please also install the RStudio IDE

Packages

Please install the LearnCommAnalysis package before attending. This package contains all the datasets, packages, and functions that will be used in the workshop. The package is available through Github and thus must be installed using devtools package. If you do not have devtools, please install that first before running the command below. There are multiple packages that are installed along-side this package. Therefore, the installation can take some time and could be prone to error. Please do this prior to attending to save time and troubleshoot errors. The most common error is that not all dependencies (i.e. packages that are dependent on other packages) were installed. Read the error message, and if this is an issue, install the package that is missing.

library(devtools)
install_github("afilazzola/LearnCommAnalysis")

## Load package
library(LearnCommAnalysis)

Other workshops

If you enjoyed this workshop and were interested in learning more, I also run a workshops on R-basics and Introduction to Generalized Linear Modelling (GLM), Using Github for Scientific Reproducibility, and a short introduction on using Functions in R.

You can find similar style workshops, usually that are longer and go into more detail, with Software Carpentry. They have teachers available globally and cover all forms of programming beyond R.