-
Notifications
You must be signed in to change notification settings - Fork 62
Intermediate R for Data Visualization
The high-level language of R is considered one of the most powerful languages for quantitative analysis, statistics, and graphics. This workshop is designed for folks who have some experience in using R and are looking to take their R skills to the next level. We shall learn how to generate high-quality and publication-ready data visualizations using using R packages (such as ggplot2). A beginner-level knowledge of R is required. Bring your laptop with R and RStudio installed.
This is an intermediate workshop in the R Scripting series. Prior experience with R is required. See introductory workshop:
Click here to download the workshop materials.
install.packages("tidyverse")
library(tidyverse)
- Install reshape2 package in RStudio:
install.packages("reshape2")
library(reshape2)
- Install cowplot package in RStudio:
install.packages("cowplot")
library(cowplot)
- Install gplots package in RStudio:
install.packages("gplots")
library(gplots)
-
See Chapter 3 of R for Data Science book
-
R Bootcamp is a “gentle and gradual introduction to manipulating and visualizing data in R using the tidyverse suite of packages”. Read more about it here.
-
Check out this short tutorial by Data Carpentry