-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
108 lines (108 loc) · 2.6 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
Type: Package
Package: c3t
Title: Clustering with Connectivity and Size Constraints
Version: 0.1.0
Authors@R: c(
person("Tangi", "Tassin", , "dev.ttassin@proton.me", role = c("aut", "cre"),
comment = c(ORCID = "0009-0004-5956-2910", context = "two-month internship")),
person("Stéphane", "Legleye", role = "ths",
comment = c(ORCID = "0000-0002-1704-2499", institution = "Ensai.fr"))
)
Description: Enable clustering with connectivity (regionalization) and/or
minimum-maximum size constraints. It also provides an algorithm to
attempt making a regionalization feasible (while respecting size
constraints) and another to enhance a feasible solution. 'c3t' stands
for "Classification avec Contrainte de Connexité et de Taille", which
in french means "Clustering with connectivity and or size
constraints".
License: GPL (>= 3)
URL: https://github.com/atero18/c3t/, https://atero18.github.io/c3t/
BugReports: https://github.com/atero18/c3t/issues
Depends:
R (>= 2.10)
Imports:
checkmate,
cli,
dplyr (>= 1.1.0),
fastDummies,
fastmap,
igraph,
lifecycle,
Matrix,
methods,
pkgconfig,
purrr,
Rcpp,
rlang,
stringi,
tibble,
tidyr
Suggests:
cluster,
fpc,
knitr,
rmarkdown,
spelling,
testthat,
withr
LinkingTo:
Rcpp,
RcppArmadillo
VignetteBuilder:
knitr
ByteCompile: true
Config/potools/style: base
Config/testthat/edition: 3
Config/testthat/load-all: list(export_all = TRUE, helpers = TRUE)
Config/testthat/parallel: true
Config/testthat/start-first: AHR, calinski-harabasz; initialization,
resolver
Encoding: UTF-8
Git: https://github.com/atero18/c3t/
Language: en-US
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Collate:
'arguments.R'
'abstractSymMat.R'
'distMat.R'
'pbCon.R'
'partition_tools.R'
'size_constraints.R'
'dunn_index.R'
'calinski_harabasz.R'
'utils.R'
'criteria.R'
'partition_class.R'
'AHCTree.R'
'fusion_constraint.R'
'AHR_single.R'
'AHR_grid.R'
'AHR_single2.R'
'RcppExports.R'
'articulation_points.R'
'c3t-package.R'
'clusters_contiguity.R'
'contiguity.R'
'data.R'
'medoids.R'
'distances_elements.R'
'distances_linkage.R'
'enhancer.R'
'fusion.R'
'fusionTree.R'
'initialisation.R'
'interior_boundary.R'
'parallelization.R'
'proximity.R'
'resolver.R'
'sim_context.R'
'sim_contiguity.R'
'sim_distances.R'
'sim_repartition.R'
'sim_grid.R'
'size_score.R'
'symMMat.R'
'symVMat.R'
'transferable_points.R'