Skip to content

Commit c31bec9

Browse files
committed
the second paper on Genie has been published
1 parent 90ad9c4 commit c31bec9

File tree

5 files changed

+30
-10
lines changed

5 files changed

+30
-10
lines changed

DESCRIPTION

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: genie
22
Type: Package
33
Title: A New, Fast, and Outlier Resistant Hierarchical Clustering Algorithm
4-
Version: 1.0.2
5-
Date: 2016-05-25
4+
Version: 1.0.3
5+
Date: 2016-09-12
66
Authors@R: c(
77
person("Marek", "Gagolewski", role = c("aut", "cre"),
88
email = "[email protected]"),
@@ -18,7 +18,8 @@ Description: A new hierarchical clustering linkage criterion:
1818
indicate a high practical usefulness of the introduced method:
1919
it most often outperforms the Ward or average linkage in terms of
2020
the clustering quality while retaining the single linkage speed,
21-
see (Gagolewski et al. 2016 <DOI:10.1016/j.ins.2016.05.003>)
21+
see (Gagolewski et al. 2016a <DOI:10.1016/j.ins.2016.05.003>,
22+
2016b <DOI:doi:10.1007/978-3-319-45656-0_16>)
2223
for more details.
2324
License: GPL (>= 3)
2425
BugReports: http://github.com/gagolews/genie/issues

NEWS

+9-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,17 @@
88
The algorithm's description can now be found in:
99

1010
Gagolewski M., Bartoszuk M., Cena A., Genie: A new, fast, and outlier-resistant
11-
hierarchical clustering algorithm, Information Sciences, 2016,
11+
hierarchical clustering algorithm, Information Sciences 363, 2016, pp. 8-23,
1212
doi:10.1016/j.ins.2016.05.003
1313

14+
See also:
15+
16+
Gagolewski M., Cena A., Bartoszuk M., Hierarchical clustering via penalty-based
17+
aggregation and the Genie approach, In: Torra V. et al. (Eds.),
18+
Modeling Decisions for Artificial Intelligence (Lecture Notes in Artificial
19+
Intelligence 9880), Springer, 2016, pp. 191-202,
20+
doi:10.1007/978-3-319-45656-0_16.
21+
1422

1523
## 1.0.0 (2016-03-07)
1624

R/hclust2.R

+7-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,13 @@
9090
#'
9191
#' Gagolewski M., Bartoszuk M., Cena A.,
9292
#' Genie: A new, fast, and outlier-resistant hierarchical clustering algorithm,
93-
#' \emph{Information Sciences}, 2016, doi:10.1016/j.ins.2016.05.003.
93+
#' \emph{Information Sciences} 363, 2016, pp. 8-23.
94+
#'
95+
#' Gagolewski M., Cena A., Bartoszuk M.
96+
#' \emph{Hierarchical clustering via penalty-based aggregation and the Genie
97+
#' approach}, In: Torra V. et al. (Eds.), \emph{Modeling Decisions for
98+
#' Artificial Intelligence} (\emph{Lecture Notes in Artificial Intelligence}
99+
#' 9880), Springer, 2016.
94100
#'
95101
#' @export
96102
hclust2 <- function(d=NULL, objects=NULL,

inst/CITATION

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ bibentry(
88
),
99
journal = "Information Sciences",
1010
year = "2016",
11-
# volume = "X",
12-
# number = "Y",
13-
# pages = "V--W",
11+
volume = "363",
12+
pages = "8--23",
1413
doi = "10.1016/j.ins.2016.05.003",
1514
textVersion = paste(
1615
"Gagolewski M., Bartoszuk M., Cena A.",
1716
"Genie: A new, fast, and outlier-resistant hierarchical clustering algorithm.",
18-
"Information Sciences, 2016, in press, doi:10.1016/j.ins.2016.05.003."
17+
"Information Sciences 363, 2016, pp. 8-23, doi:10.1016/j.ins.2016.05.003."
1918
)
2019
)

man/hclust2.Rd

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)