file_path_2021 <- file.choose() #Running this line opens a dialogue box, select the 2021 .csv file
data_2021 <- read.csv(file_path_for_2021_data, na.strings = "NA")
data_2021 <- read.csv("file_path_for_2021_data", na.strings = "NA")
data_2021 <- read.csv(file_path_for_2021_data, na.strings = "NA")
library(readr)
library(readr)
#Load in the 2021 data
file_path_for_2021_data <- file.choose() #Running this line opens a dialogue box, select the 2021 .csv file to establish a file path to the file
data_2021 <- read_csv(file_path_for_2021_data, na.strings = "NA")
data_2021 <- read_csv(file_path_for_2021_data)
View(data_2021)
#Repear for 2022 data
file_path_for_2022_data <- file.choose() #Running this line opens a dialogue box, select the 2022 .csv file to establish a file path to the file
data_2022 <- read_csv(file_path_for_2022_data) #Running this line uses the file path you established above, no need to change anything here
