- Importing example "medical data" from a spreadsheet
- selecting columns
- restricting rows with filter
- summarising data, and grouping
- boxplots and bar plots
- "piping" to create short workflows
Please install the following packages before the course using the following code:-
install.packages(c("readr",
"dplyr",
"ggplot2",
"stringr",
"forcats"))
Please download all these files and place in a folder that you wish to work in
- Importing some RNA-sequencing counts
- Using PCA as QC diagnostic
- Differential expression to find statistically-significant genes
- Using databases to map between gene naming schemes
- Associating statistical findings with biological and clinical significance
Please install the following packages before the course using the following code:-
install.packages("BiocManager")
BiocManager::install(c("SummarizedExperiment",
"tidybulk",
"org.Hs.eg.db",
"EnhancedVolcano",
"ggrepel"))