diff --git a/DESCRIPTION b/DESCRIPTION index 316ffd2..26fbb7c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -10,11 +10,10 @@ Authors@R: c( Maintainer: Thomas Lin Pedersen Description: An improved implementation (based on k-nearest neighbors) of the density peak clustering algorithm, originally described by Alex - Rodriguez and Alessandro Laio (Science, 2014 vol. 344) . It can handle large datasets (> 100, 000 - samples) very efficiently. It was initially implemented by Thomas Lin - Pedersen, with inputs from Sean Hughes and later improved by Xiaojie - Qiu to handle large datasets with kNNs. + Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle large + datasets (> 100,000 samples) very efficiently. It was initially implemented + by Thomas Lin Pedersen, with inputs from Sean Hughes and later improved by + Xiaojie Qiu to handle large datasets with kNNs. License: GPL (>= 2) URL: https://github.com/thomasp85/densityClust BugReports: https://github.com/thomasp85/densityClust/issues @@ -33,5 +32,4 @@ LinkingTo: cpp11 Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.2.3 -SystemRequirements: C++11 +RoxygenNote: 7.3.1 diff --git a/R/densityClust-package.R b/R/densityClust-package.R index e43328f..7d412e1 100644 --- a/R/densityClust-package.R +++ b/R/densityClust-package.R @@ -34,7 +34,6 @@ #' split(iris[,5], irisClust$clusters) #' #' @seealso [densityClust()], [findClusters()], [plotMDS()] -#' @aliases densityClust-package #' #' @references Rodriguez, A., & Laio, A. (2014). *Clustering by fast search and find of density peaks.* Science, **344**(6191), 1492-1496. doi:10.1126/science.1242072 #' diff --git a/man/densityClust-package.Rd b/man/densityClust-package.Rd index 2bacc36..7ef1da7 100644 --- a/man/densityClust-package.Rd +++ b/man/densityClust-package.Rd @@ -3,7 +3,6 @@ \docType{package} \name{densityClust-package} \alias{densityClust-package} -\alias{_PACKAGE} \title{Clustering by fast search and find of density peaks} \description{ This package implement the clustering algorithm described by Alex Rodriguez