The ClusterR package consists of Gaussian mixture models, k-means,
mini-batch-kmeans, k-medoids and affinity propagation clustering
algorithms with the option to plot, validate, predict (new data) and
find the optimal number of clusters. The package takes advantage of
‘RcppArmadillo’ to speed up the computationally intensive parts of the
functions. More details on the functionality of ClusterR can be found in
the blog-posts (first
and second),
Vignette and in the package Documentation ( scroll down for
information on how to use the docker image )
UPDATE 16-08-2018
As of version 1.1.4 the ClusterR package allows R package maintainers to perform linking between packages at a C++ code (Rcpp) level. This means that the Rcpp functions of the ClusterR package can be called in the C++ files of another package. In the next lines I’ll give detailed explanations on how this can be done:
Assumming that an R package (‘PackageA’) calls one of the ClusterR Rcpp functions. Then the maintainer of ‘PackageA’ has to :
install.packages("ClusterR")
or download the latest version from Github using the remotes package,
::install_github('mlampros/ClusterR', upgrade = 'always', dependencies = TRUE, repos = 'https://cloud.r-project.org/')
remotes
: ClusterR LinkingTo
# include <RcppArmadillo.h>
# include <ClusterRHeader.h>
# include <affinity_propagation.h>
// [[Rcpp::depends("RcppArmadillo")]]
// [[Rcpp::depends(ClusterR)]]
// [[Rcpp::plugins(cpp11)]]
The available functions can be found in the following files: inst/include/ClusterRHeader.h and inst/include/affinity_propagation.h
A complete minimal example would be :
# include <RcppArmadillo.h>
# include <ClusterRHeader.h>
# include <affinity_propagation.h>
// [[Rcpp::depends("RcppArmadillo")]]
// [[Rcpp::depends(ClusterR)]]
// [[Rcpp::plugins(cpp11)]]
using namespace clustR;
// [[Rcpp::export]]
::List mini_batch_kmeans(arma::mat& data, int clusters, int batch_size, int max_iters, int num_init = 1,
Rcpp
init_fraction = 1.0, std::string initializer = "kmeans++",
double
early_stop_iter = 10, bool verbose = false,
int
::Nullable<Rcpp::NumericMatrix> CENTROIDS = R_NilValue,
Rcpp
tol = 1e-4, double tol_optimal_init = 0.5, int seed = 1) {
double
ClustHeader clust_header;
clust_header.mini_batch_kmeans(data, clusters, batch_size, max_iters, num_init, init_fraction,
return
initializer, early_stop_iter, verbose, CENTROIDS, tol,
tol_optimal_init, seed);
}
Then, by opening an R file a user can call the mini_batch_kmeans function using,
::sourceCpp('example.cpp') # assuming that the previous Rcpp code is included in 'example.cpp'
Rcpp
set.seed(1)
= matrix(runif(100000), nrow = 1000, ncol = 100)
dat
= mini_batch_kmeans(dat, clusters = 3, batch_size = 50, max_iters = 100, num_init = 2,
mbkm
init_fraction = 1.0, initializer = "kmeans++", early_stop_iter = 10,
verbose = T, CENTROIDS = NULL, tol = 1e-4, tol_optimal_init = 0.5, seed = 1)
str(mbkm)
Use the following link to report bugs/issues,
https://github.com/mlampros/ClusterR/issues
UPDATE 28-11-2019
Docker images of the ClusterR package are available to download from my dockerhub account. The images come with Rstudio and the R-development version (latest) installed. The whole process was tested on Ubuntu 18.04. To pull & run the image do the following,
/clusterr:rstudiodev
docker pull mlampros
-d --name rstudio_dev -e USER=rstudio -e PASSWORD=give_here_your_password --rm -p 8787:8787 mlampros/clusterr:rstudiodev docker run
The user can also bind a home directory / folder to the image to use its files by specifying the -v command,
-d --name rstudio_dev -e USER=rstudio -e PASSWORD=give_here_your_password --rm -p 8787:8787 -v /home/YOUR_DIR:/home/rstudio/YOUR_DIR mlampros/clusterr:rstudiodev
docker run
In the latter case you might have first give permission privileges for write access to YOUR_DIR directory (not necessarily) using,
-R 777 /home/YOUR_DIR
chmod
The USER defaults to rstudio but you have to give your PASSWORD of preference (see https://rocker-project.org/ for more information).
Open your web-browser and depending where the docker image was build / run give,
1st. Option on your personal computer,
://0.0.0.0:8787 http
2nd. Option on a cloud instance,
://Public DNS:8787 http
to access the Rstudio console in order to give your username and password.
If you use the code of this repository in your paper or research
please cite both ClusterR and the original
articles / software
https://CRAN.R-project.org/package=ClusterR
:
@Manual{,
= {{ClusterR}: Gaussian Mixture Models, K-Means, Mini-Batch-Kmeans, K-Medoids and Affinity Propagation Clustering},
title = {Lampros Mouselimis},
author = {2024},
year = {R package version 1.3.3},
note = {https://CRAN.R-project.org/package=ClusterR},
url }