View source: R/apclusterDemo.R
apclusterDemo | R Documentation |
Runs affinity propagation demo for randomly generated data set according to Frey and Dueck
apclusterDemo(l=100, d=2, seed=NA, ...)
l |
number of data points to be generated |
d |
dimension of data to be created |
seed |
for reproducibility, the seed of the random number
generator can be set to a fixed value; if |
... |
all other arguments are passed on to
|
apclusterDemo
creates l
d
-dimensional
data points that are uniformly distributed in [0,1]^d
. Affinity
propagation is executed for this data set with default parameters.
Alternative settings can be passed to apcluster
with
additional arguments. After completion of affinity propagation,
the results are shown and the performance measures are plotted.
This function corresponds to the demo function in the original Matlab code of Frey and Dueck. We warn the user, however, that uniformly distributed data are not necessarily ideal for demonstrating clustering, as there can never be real clusters in uniformly distributed data - all clusters found must be random artefacts.
Upon successful completion, the function returns an invisible list
with three components. The first is the data set that has been
created, the second is the similarity matrix, and the third is an
APResult
object with the clustering results (see
examples below).
Ulrich Bodenhofer, Johannes Palme, and Johannes Palme
https://github.com/UBod/apcluster
Frey, B. J. and Dueck, D. (2007) Clustering by passing messages between data points. Science 315, 972-976. DOI: \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1126/science.1136800")}.
Bodenhofer, U., Kothmeier, A., and Hochreiter, S. (2011) APCluster: an R package for affinity propagation clustering. Bioinformatics 27, 2463-2464. DOI: \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1093/bioinformatics/btr406")}.
APResult
, plot-methods
,
apcluster
, apclusterL
## create random data set and run affinity propagation
apd <- apclusterDemo()
## plot clustering result along with data set
plot(apd[[3]], apd[[1]])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.