R/data-pm25_2022_durham.R

#' Air quality for Durham, NC
#'
#' Daily air quality is measured by the air quality index (AQI) reported by the
#' Environmental Protection Agency in 2022.
#'
#'
#' @name pm25_2022_durham
#' @docType data
#' @format A data frame with 356 observations on the following 20 variables.
#' \describe{
#'   \item{date}{Date.}
#'   \item{aqs_site_id}{The numeric site ID.}
#'   \item{poc}{A numeric vector, the Parameter Occurance Code.}
#'   \item{daily_mean_pm2_5_concentration}{A numeric vector with the average daily concentration of fine particulates, or particulate matter 2.5.}
#'   \item{units}{A character vector with value \code{ug/m3 LC}.}
#'   \item{daily_aqi_value}{A numeric vector with the daily air quality index.}
#'   \item{daily_obs_count}{A numeric vector.}
#'   \item{percent_complete}{A numeric vector.}
#'   \item{aqs_parameter_code}{A numeric vector.}
#'   \item{aqs_parameter_desc}{A factor vector with level \code{PM2.5 - Local Conditions}.}
#'   \item{cbsa_code}{A numeric vector.}
#'   \item{cbsa_name}{A character vector with value \code{Durham-Chapel Hill, NC}.}
#'   \item{state_code}{A numeric vector.}
#'   \item{state}{A character vector with value \code{North Carolina}.}
#'   \item{county_code}{A numeric vector.}
#'   \item{county}{A character vector with value \code{Durham}.}
#'   \item{site_latitude}{A numeric vector of the latitude.}
#'   \item{site_longitude}{A numeric vector of the longitude.}
#'   \item{site_name}{A character vector with value \code{Durham Armory}.}
#'   }
#' @source US Environmental Protection Agency, AirData, 2022.
#' \url{http://www3.epa.gov/airdata/ad_data_daily.html}
#' @keywords datasets
#' @examples
#'
#' library(ggplot2)
#'
#' ggplot(pm25_2022_durham, aes(x = date, y = daily_mean_pm2_5_concentration, group = 1)) +
#'   geom_line()
"pm25_2022_durham"

Try the openintro package in your browser

Any scripts or data that you put into this service are public.

openintro documentation built on June 22, 2024, 7:37 p.m.