File: CITATION

package info (click to toggle)
cluster 2.1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,728 kB
  • sloc: ansic: 3,397; sh: 20; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,516 bytes parent folder | download
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
## -*- R -*-

PKG <- "cluster"
citHeader(paste("To cite the R package ",PKG," in publications use:"))

if(!exists("meta") || is.null(meta)) meta <- packageDescription(PKG)
stopifnot(meta$Package == PKG)

year <- sub(".*(2[[:digit:]]{3})-.*", "\\1", meta$Date)
vers <- paste("R package version", meta$Version)
url <- paste0("https://CRAN.R-project.org/package=", PKG)

bibentry(bibtype = "Manual",
	 title	= "cluster: Cluster Analysis Basics and Extensions",
	 author = c(
         person("Martin", "Maechler", email="maechler@stat.math.ethz.ch",
                role = c("aut", "cre"),
                comment = "enhancements, speed improvements, bug fixes, since 2000"),
         person("Peter", "Rousseeuw", email="rousse@uia.ua.ac.be", role="aut"),
         person("Anja", "Struyf", email="Anja.Struyf@uia.ua.ac.be", role="aut"),
         person("Mia", "Hubert", email="Mia.Hubert@uia.ua.ac.be", role="aut"),
         person("Kurt", "Hornik", role=c("trl","ctb"), comment = "R port; and much initial help file fixing, 1998--2000")
         ),
	 year = year,
         url = url,
	 note = paste(vers,"---",
	 "For new features, see the 'NEWS' and the 'Changelog' file in the package source)"),
## FIXME:  rather give the URL to the manual on CRAN ???
##	   url = "http://stat.ethz.ch/CRAN/src/contrib/........",
	 textVersion = paste0(
             "Maechler, M., Rousseeuw, P., Struyf, A., Hubert, M., Hornik, K.(",
             year, ").  cluster: Cluster Analysis Basics and Extensions. ", vers, ".")
         )