-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regularized KMEANS clustering, new functionalities
Implementation of hard threshold regularized KMEANS clustering (HTKmeans, function `htk_cluster()`). Tuning functions for lambda in HTKmeans and k in kNN prediction of the cluster assignment
- Loading branch information
1 parent
3a0adc7
commit 9ed2609
Showing
23 changed files
with
2,342 additions
and
299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Package: clustTools | ||
Type: Package | ||
Title: Tools for Dimensionality Reduction and Data Clustering | ||
Version: 1.2.1 | ||
Version: 1.3.0 | ||
Maintainer: Piotr Tymoszuk <[email protected]> | ||
Description: Provides a comprehensive set of R functions for dimensionality | ||
reduction (PCA, MDS and UMAP), clustering (HCl, k-means, PAM, DBSCAN, SOM) | ||
and combined reduction-clustering tools. Visualization and QC toolset is | ||
provided as well. | ||
reduction (PCA, MDS and UMAP), clustering (HCl, KMEANS, PAM, DBSCAN, SOM | ||
and regularized KMEANS) and combined reduction-clustering tools. | ||
Visualization and QC toolset is provided as well. | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
|
@@ -16,6 +16,7 @@ Authors@R: | |
comment = c(ORCID = "0000-0002-0398-6034")) | ||
Imports: | ||
caret, | ||
clusterHD, | ||
cowplot, | ||
coxed, | ||
dbscan, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.