monitor_ggDailyBarplot: Create a daily barplot for one or more monitors

View source: R/monitor_ggDailyBarplot.R

monitor_ggDailyBarplotR Documentation

Create a daily barplot for one or more monitors

Description

This function assembles various layers to create a production-ready daily barplot for one or more monitors.

The full range of data in monitor will be used unless both startdate and enddate are specified.

Usage

monitor_ggDailyBarplot(
  monitor,
  startdate = NULL,
  enddate = NULL,
  id = NULL,
  style = c("small", "large"),
  title = NULL,
  timezone = NULL,
  today = TRUE,
  ...
)

Arguments

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

deviceDeploymentID to include in the plot. This can be NULL if monitor only has one unique deviceDeploymentID.

style

String indicating plotting style. Either "large" or "small". style = "large" is suitable for plots larger than 450x450px, and "small" is suitable for plots 450x450px or smaller.

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.

today

Logical indicating whether to include a shaded "current NowCast" bar for Today. Ignored if data is not current.

...

Arguments passed onto ggplot_pm25Timeseries.

Value

A ggplot object

Examples

library(AirMonitorPlots)

AirMonitor::Carmel_Valley %>%
  monitor_ggDailyBarplot(
    startdate = 20160801,
    enddate = 20160810
  )


MazamaScience/AirMonitorPlots documentation built on Oct. 13, 2023, 8:49 a.m.