Learn R Programming

AirSensor (version 1.0.8)

pat_join: Join PurpleAir time series data for a single sensor

Description

Create a merged timeseries using of any number of pat objects for a single sensor. If pat objects are non-contiguous, the resulting pat will have gaps.

Usage

pat_join(...)

Arguments

...

Any number of valid PurpleAir Time series pat objects.

Value

A PurpleAir Time series pat object.

Examples

Run this code
# NOT RUN {
library(AirSensor)

aug01_08 <- 
  example_pat %>%
  pat_filterDate(20180801, 20180808)

aug15_22 <- 
  example_pat %>% 
  pat_filterDate(20180815, 20180822)
  
pat_join(aug01_08, aug15_22) %>%
  pat_multiPlot(plottype = "pm25")

# }

Run the code above in your browser using DataLab