autoplot.bumbldf {bumbl} | R Documentation |
Plot observed and fitted results from bumbl()
Description
Plots observed (points) and fitted (red line) values from the model implemented by bumbl()
, faceted by colony.
Usage
## S3 method for class 'bumbldf'
autoplot(object, ..., colony = NULL, x = deprecated())
Arguments
object |
a dataframe produced by |
... |
other arguments passed to |
colony |
a character vector of colony IDs to plot |
x |
|
Value
invisibly returns a ggplot object
Examples
bombus_subset <- bombus[bombus$colony %in% c("17", "104", "20", "24"), ]
results <- bumbl(bombus_subset, colonyID = colony, t = week,
formula = mass ~ week)
library(ggplot2)
autoplot(results)
[Package bumbl version 1.0.3 Index]