View source: R/monitor_ggTimeseries.R
monitor_ggTimeseries | R Documentation |
This function assembles various layers to create a production-ready timeseries plot for one or more monitors.
monitor_ggTimeseries(
monitor,
startdate = NULL,
enddate = NULL,
id = NULL,
style = c("small", "large"),
title = NULL,
timezone = NULL,
...
)
monitor |
A mts_monitor object. |
startdate |
Desired start date (integer or character in ymd format or POSIXct). |
enddate |
Desired end date (integer or character in ymd format or POSIXct). |
id |
vector of deviceDeploymentIDs to include in the plot. If more than one, different monitors will be plotted in different colors. |
style |
Plot style. |
title |
Plot title. If NULL, a suitable title will be constructed. |
timezone |
Olson timezone name for x-axis scale and date parsing. If NULL the timezone of the specified monitor will be used. |
... |
Arguments passed onto |
A ggplot object.
library(AirMonitorPlots)
AirMonitor::NW_Megafires %>%
monitor_ggTimeseries(
startdate = 20150815,
enddate = 20150831,
id = "d01b991c53583048_160690012_03"
)
AirMonitor::Carmel_Valley %>%
monitor_ggTimeseries(
startdate = 20160801,
enddate = 20160810
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.