powered by
A plotting function that uses ggplot2 to display a suite of timeseries plots all at once.
timeseriesTbl_multiPlot( tbl = NULL, pattern = NULL, parameters = NULL, nrow = NULL, ncol = NULL, autoRange = TRUE, ylim = NULL, style = "line" )
Tibble with a datetime.
datetime
Pattern used to match groups of parameters.
Custom vector of aggregation parameters to view.
Number of rows in the faceted plot.
Number of columns in the faceted plot.
Logical specifying whether to scale the y axis separately for each plot or to use a common y axis.
Vector of (lo,hi) y-axis limits.
Style of plot: ("point", "line", "area")
# NOT RUN { library(AirSensor) tbl <- pat_aggregateOutlierCounts(example_pat_failure_A) timeseriesTbl_multiPlot( tbl, pattern = c("humidity|temperature"), nrow = 2 ) # }
Run the code above in your browser using DataLab