Description Usage Arguments Value Examples
View source: R/compare_biclusters.R
Compare two biclusterings or a pair of partition matrices
1 | compare_biclusters(bc1, bc2)
|
bc1 |
the first biclustering or partition matrix. Must be either of class
|
bc2 |
the second biclustering or partition matrix. Must be either of class
|
If comparing a pair of biclusterings, a list containing the column similarity indices and the row similarity indices, in that order. If a pair of matrices, a vector of similarity indices.
1 2 3 4 5 6 7 8 9 | data("synthetic")
bc <- biclustermd(synthetic, col_clusters = 3, row_clusters = 2)
bc2 <- biclustermd(synthetic, col_clusters = 3, row_clusters = 2)
# compare the two biclusterings
compare_biclusters(bc, bc2)
# determine the similarity between initial and final row clusterings
compare_biclusters(bc$Q0, bc$Q)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.