# modify to set to the directory you will be working in
setwd("")
# modify to load the Indy weather data
w_indy <- read.csv("")
# modify to load the champagn weather data
w_champ <- read.csv("")
# For the Indy weather...
# plot the high temperatures from 2018
# find/print the top 10 highest high temperatures from 2018
# find/print the top 10 lowest low temperatures from 2018
# find the top 10 highest high and lowest low temperatures for champ as well.
# calculate the average of the top 10 highest highs, for both cities, and
# print the difference. Same for the lowest lows.
# Answer the question - which city was hotter or colder in 2018?
# Do whatever kind of calculations, analysis, plotting seems appropriate.