Description Usage Arguments Note Examples
View source: R/timeseriesTbl_multiPlot.R
A plotting function that uses ggplot2 to display a suite of timeseries plots all at once.
1 2 3 4 5 6 7 8 9 10 |
tbl |
Tibble with a |
pattern |
Pattern used to match groups of parameters. |
parameters |
Custom vector of aggregation parameters to view. |
nrow |
Number of rows in the faceted plot. |
ncol |
Number of columns in the faceted plot. |
autoRange |
Logical specifying whether to scale the y axis separately for each plot or to use a common y axis. |
ylim |
Vector of (lo,hi) y-axis limits. |
style |
Style of plot: ("point", "line", "area") |
Specification of ylim
will override the choice of
autoRange
.
1 2 3 4 5 6 7 8 9 | library(AirSensor)
tbl <- pat_aggregateOutlierCounts(example_pat_failure_A)
timeseriesTbl_multiPlot(
tbl,
pattern = c("humidity|temperature"),
nrow = 2
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.