Apparently, I can’t upload an R file. Lee requested that I upload a file showing that I can download a csv directly from a website.
I found an environmental protection csv. This is the code I used to download and then do basic exploration through the data.
library(tidyverse)
EP = read_csv("https://edg.epa.gov/data/Public/ORD/NHEERL/EQI/Eqidata_all_domains_2014March11.csv")
str(EP)
class(EP)