-
Notifications
You must be signed in to change notification settings - Fork 3
/
DESCRIPTION
42 lines (42 loc) · 1.27 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
Package: clevr
Type: Package
Title: Clustering and Link Prediction Evaluation in R
Version: 0.1.2
Date: 2023-09-16
Authors@R: c(
person(given = "Neil",
family = "Marchant",
email = "[email protected]",
role = c("aut", "cre")),
person(given = "Rebecca",
family = "Steorts",
email = "[email protected]",
role = c("aut")),
person(given = "Olivier",
family = "Binette",
email = "[email protected]",
role = c("ctb")))
Maintainer: Neil Marchant <[email protected]>
Description: Tools for evaluating link prediction and clustering algorithms
with respect to ground truth. Includes efficient implementations of
common performance measures such as pairwise precision/recall,
cluster homogeneity/completeness, variation of information,
Rand index etc.
License: GPL-2
Encoding: UTF-8
Depends: R (>= 3.0.2)
Imports: Rcpp (>= 1.0.5),
stats,
Matrix
LinkingTo: Rcpp, BH (>= 1.69.0)
RoxygenNote: 7.2.3
Roxygen: list(markdown = TRUE)
Suggests: testthat
URL: https://github.com/cleanzr/clevr
BugReports: https://github.com/cleanzr/clevr/issues
Collate:
'RcppExports.R'
'clevr.R'
'measures_clusterings.R'
'transformations.R'
'measures_pairs.R'