task-02
Task 2: Wax On, Wax off
Background
This task is intended to get all of us on the same page in R. You will copy code from your readings and then improve the Research and Creative Works conference visulization from this Excel file. Even if you have used R before, this will be an excellent refresher. If you do not get the title of this task, watch this.
Reading
This reading will help you complete the tasks below.
Tasks
library(tidyverse)
dat <- read_csv("https://byuistats.github.io/M335/data/rcw.csv",
col_types = cols(Semester_Date = col_date(format = "%m/%d/%y"), Semester = col_factor(levels = c("Winter", "Spring", "Fall"))))