Description Usage Arguments Value Examples
Plot a confusion heatmap.
1 2 | confusionHeatmap(subject, query, logCounts = FALSE, rankCounts = FALSE,
cluster = FALSE, ...)
|
subject |
|
query |
|
logCounts |
Should counts in confusion matrix be |
rankCounts |
Should counts in confusion matrix be ranked? Defaults to |
cluster |
Should rows and columns be hierarchically clustered? Defaults to |
... |
Further parameters for |
A matrix
with possibly transformed counts.
1 2 3 4 5 | a = c(rep("A", 1000), rep("B", 100), rep("C", 10))
b = c(rep("A", 500), rep("B", 595), rep("C", 15))
confusionHeatmap(a, b)
confusionHeatmap(a, b, logCounts = T)
confusionHeatmap(a, b, rankCounts = T)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.