#' Air quality for Durham, NC
#'
#' Daily air quality is measured by the air quality index (AQI) reported by the
#' Environmental Protection Agency in 2011.
#'
#'
#' @name pm25_2011_durham
#' @aliases pm25.2011.durham pm25_2011_durham
#' @docType data
#' @format A data frame with 449 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 with levels \code{PM2.5 - Local Conditions} and \code{Acceptable PM2.5 AQI & Speciation Mass}.}
#' \item{cbsa_code}{A numeric vector.}
#' \item{cbsa_name}{A character vector with value \code{Durham, 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{csa_code}{a numeric vector}
#' \item{csa_name}{a factor with levels \code{Raleigh-Durham-Cary, NC}}
#' }
#' @source US Environmental Protection Agency, AirData, 2011.
#' \url{http://www3.epa.gov/airdata/ad_data_daily.html}
#' @keywords datasets
#' @examples
#'
#' library(ggplot2)
#'
#' ggplot(pm25_2011_durham, aes(x = date, y = daily_mean_pm2_5_concentration, group = 1)) +
#' geom_line()
"pm25_2011_durham"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.