Boxplot of a data frame returned by distantia()
summarizing the stats of the psi scores of each time series against all others.
Arguments
- df
(required, data frame) output of
distantia()
. Default: NULL- fill_color
(optional, character vector) boxplot fill color. Default: NULL
- f
(optional, function) function used to aggregate the input data frame and arrange the boxes. One of
mean
ormedian
. Default:median
.- text_cex
(optional, numeric) Multiplier of the text size. Default: 1
See also
Other dissimilarity_analysis:
distantia_aggregate()
,
distantia_cluster_hclust()
,
distantia_cluster_kmeans()
,
distantia_matrix()
,
distantia_plot()
,
distantia_spatial_network()
,
distantia_stats()
,
distantia_time_shift()
,
momentum_boxplot()
,
momentum_stats()
,
momentum_to_wide()
Examples
tsl <- tsl_initialize(
x = distantia::albatross,
name_column = "name",
time_column = "time"
) |>
tsl_transform(
f = f_scale_global
)
df <- distantia(
tsl = tsl,
lock_step = TRUE
)
distantia_boxplot(
df = df,
text_cex = 1.5
)