Add Comment 14. The following code loads a data frame rainfall containing daily measurements of rainfall at some location in Canada over a 14 year period. Note that you will need an internet connection to load this data set. rainfall <-read.csv(file - "http://www.stat.osu.edu/-vav/4194/data/rainfall.csv") 1. Make a scatterplot of rain against day 2. What is wrong in the previous plot, i.e. why can't it possibly be correct? 3. Fix the data with NA and create a new plot of rain against day. 4. Make a plot showing days for where the rain measurement is missing. Does there appear to be a pattern to the missingness? Explain using your plot.