| plot.dm_standardized | R Documentation |
S3 plotting method for objects returned by dm_standardize().
## S3 method for class 'dm_standardized'
plot(
x,
y = NULL,
trees = "all",
type = c("series", "seasonal", "heatmap", "boxplot"),
x_axis = c("time", "doy", "season_doy"),
facet_by = c("tree", "season_year", "none"),
legend_by = c("season_year", "tree", "none"),
in_season_only = TRUE,
box_group = c("tree", "season_year"),
alpha = 0.8,
line_size = 0.45,
point_size = 1.6,
...
)
x |
Object of class |
y |
Unused. |
trees |
Character vector of dendrometer series to plot, or |
type |
Plot type. One of:
|
x_axis |
For |
facet_by |
Faceting option. One of |
legend_by |
Legend grouping. One of |
in_season_only |
Logical. If |
box_group |
For |
alpha |
Line or point transparency. |
line_size |
Line width. |
point_size |
Point size. |
... |
Unused. |
A ggplot2 object, returned invisibly.
data(gf_nepa17)
out_std <- dm_standardize(
df = gf_nepa17,
season_type = "NH",
method = "robust_amplitude"
)
plot(out_std)
plot(out_std, type = "seasonal")
plot(out_std, type = "seasonal", facet_by = "tree", legend_by = "season_year")
plot(out_std, type = "seasonal", facet_by = "season_year", legend_by = "tree")
plot(out_std, type = "heatmap", facet_by = "tree")
plot(out_std, type = "boxplot", facet_by = "tree", legend_by = "season_year")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.