R is a powerful language, but any language is only as powerful as its most versatile package. In R’s case, that package is tidyverse and we will be focusing on functions from the tidyverse
package for the rest of this series. If you haven’t already, install the tidyverse package from CRAN using the code install.packages("tidyverse")
and load it into your session using either library(tidyverse)
or require(tidyverse)
. For this workshop, we will use a subset of the data set from the ggplot2 workshop with a newly created variable gpa
.
require(tidyverse) data<-read_csv("https://willythewoo.github.io/WillyTheWoo/workshop/data/workshop_data3.csv")