???? ???? ???? Sign Up For More Blog Articles ???? ???? ????
Introduction
In this article, we'll use the EPA Arcgis map that contains weather data going back to 1990. This will be a quick code-based blog post showing how to load, explore and visualize the data a local EPA monitor.
# Libraries
packages <-
c("data.table",
"ggplot2",
"stringr",
"skimr",
"janitor",
"glue"
)
if (length(setdiff(packages,rownames(installed.packages()))) > 0) {
install.packages(setdiff(packages, rownames(installed.packages())))
}
invisible(lapply(packages, library, character.only = TRUE))
knitr::opts_chunk$set(
comment = NA,
fig.width = 12,
fig.height = 8,
out.width = '100%',
cache = TRUE
)
Weather Monitor Data Extraction
Below, ...