Distantia Boxplot
Boxplot of a data frame returned by distantia()
summarizing the stats of the psi scores of each time series against all others.
distantia_boxplot(df = NULL, fill_color = NULL, f = median, text_cex = 1)
df
: (required, data frame) Output of distantia()
, distantia_ls()
, distantia_dtw()
, or distantia_time_delay()
. Default: NULLfill_color
: (optional, character vector) boxplot fill color. Default: NULLf
: (optional, function) function used to aggregate the input data frame and arrange the boxes. One of mean
or median
. Default: median
.text_cex
: (optional, numeric) Multiplier of the text size. Default: 1boxplot
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 )
Other distantia_support: distantia_aggregate()
, distantia_cluster_hclust()
, distantia_cluster_kmeans()
, distantia_matrix()
, distantia_model_frame()
, distantia_spatial()
, distantia_stats()
, distantia_time_delay()
, utils_block_size()
, utils_cluster_hclust_optimizer()
, utils_cluster_kmeans_optimizer()
, utils_cluster_silhouette()