The example_mts dataset provides a quickly loadable version of an mts object for practicing and code examples.

This dataset was was generated on 2021-10-07 by running:


library(AirSensor)

communities <- c("Alhambra/Monterey Park", "El Monte")

example_mts <-
  example_sensor_scaqmd %>%
  sensor_filterMeta(communityRegion %in% communities)

# Add required "locationName"
example_mts$meta$locationName <- example_mts$meta$siteName

save(example_mts, file = "data/example_mts.rda")
example_mts

Format

An mts object composed of "meta" and "data" dataframes.