acca | R Documentation |
A C++ implementation of the ACCA method
that works directly with the correlation matrix derived from the corr_matrix
function.
In this sense, this implementation differs from the original,
it works with mixed data and several correlation methods.
acca(m, ...)
## S3 method for class 'cmatrix'
acca(m, k, maxrep = 2L, maxiter = 100L, ...)
## S3 method for class 'matrix'
acca(m, k, maxrep = 2L, maxiter = 100L, ...)
m |
\[ |
... |
Additional arguments (TODO). |
k |
\[ |
maxrep |
\[ |
maxiter |
\[ |
\[acca_list(k)
]
A list with the final result of the clustering method.
That is, the name of the variables belonging to each cluster k.
Igor D.S. Siciliani
Bhattacharya, Anindya, and Rajat K. De. "Average correlation clustering algorithm (ACCA) for grouping of co-regulated genes with similar pattern of variation in their expression values." Journal of Biomedical Informatics 43.4 (2010): 560-568.
## Not run:
x = corrp::corrp(iris)
m = corrp::corr_matrix(x)
corrp::acca(m,2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.