-
Notifications
You must be signed in to change notification settings - Fork 29
/
UTILS-globals-internal.R
22 lines (18 loc) · 1.14 KB
/
UTILS-globals-internal.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ==================================================================================================
# Internal global variables
# ==================================================================================================
supported_clusterings <- c("partitional", "hierarchical", "fuzzy", "tadpole")
dtwclust_rngkind <- "L'Ecuyer-CMRG"
distances_known <- c("dtw", "dtw2", "dtw_lb", "lbk", "lbi", "sbd", "dtw_basic", "gak", "sdtw")
distances_included <- c("dtw_lb", "lb_keogh", "lb_improved", "sbd", "dtw_basic", "gak", "sdtw")
distances_difflength <- c("dtw", "dtw2", "sbd", "dtw_basic", "gak", "sdtw")
distances_multivariate <- c("dtw", "dtw2", "dtw_basic", "gak", "sdtw")
centroids_included <- c("mean", "median", "shape", "dba", "pam", "fcm", "fcmdd", "sdtw_cent")
centroids_fuzzy <- c("fcm", "fcmdd")
centroids_nonfuzzy <- setdiff(centroids_included, centroids_fuzzy)
centroids_difflength <- c("dba", "pam", "shape", "fcmdd", "sdtw_cent")
control_classes <- c(partitional = "PtCtrl",
hierarchical = "HcCtrl",
fuzzy = "FzCtrl",
tadpole = "TpCtrl",
args = "TscArgs")