plot.bbdml | R Documentation |
Plotting function
## S3 method for class 'bbdml'
plot(
x,
total = FALSE,
color = NULL,
shape = NULL,
facet = NULL,
title = NULL,
B = 1000,
sample_names = TRUE,
data_only = FALSE,
...
)
x |
Object of class |
total |
(Optional). Default |
color |
(Optional). Default |
shape |
(Optional). Default |
facet |
(Optional). Default |
title |
(Optional). Default |
B |
(Optional). Default |
sample_names |
(Optional). Default |
data_only |
(Optional). Default |
... |
There are no optional parameters at this time. |
Object of class ggplot
. Plot of bbdml
model fit with 95
data(soil_phylum_small_otu1)
mod <- bbdml(formula = cbind(W, M - W) ~ DayAmdmt,
phi.formula = ~ DayAmdmt,
data = soil_phylum_small_otu1)
# Here we use B = 50 for quick demonstration purposes.
# In practice, we recommend a higher value for B for more accurate intervals
plot(mod, color = "DayAmdmt", B = 50)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.