View source: R/momentum_boxplot.R
momentum_boxplot | R Documentation |
Boxplot of a data frame returned by momentum()
summarizing the contribution to similarity (negative) and/or dissimilarity (positive) of individual variables across all time series.
momentum_boxplot(df = NULL, fill_color = NULL, f = median, text_cex = 1)
df |
(required, data frame) Output of |
fill_color |
(optional, character vector) boxplot fill color. Default: NULL |
f |
(optional, function) Function to summarize psi scores (for example, |
text_cex |
(optional, numeric) Multiplier of the text size. Default: 1 |
boxplot
Other momentum_support:
momentum_aggregate()
,
momentum_model_frame()
,
momentum_spatial()
,
momentum_stats()
,
momentum_to_wide()
tsl <- tsl_initialize(
x = distantia::albatross,
name_column = "name",
time_column = "time"
) |>
tsl_transform(
f = f_scale_global
)
df <- momentum(
tsl = tsl,
lock_step = TRUE
)
momentum_boxplot(
df = df
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.