Description Usage Arguments Value Examples
Heatmap pf correlation coefficients between any two sections in a SummarizedExperiment
object.
1 | corHeatmap(object, matrix = "scaled", max.cor = 0.5, cor.method = "pearson")
|
object |
A |
matrix |
Character, must be one of |
max.cor |
Numeric, correlation coefficients bigger than |
cor.method |
Character, the method to calculate correlation coefficients. must be one of |
A ggplot
object.
1 2 3 4 5 6 7 8 9 | data(zh.data)
zh <- createTomo(zh.data)
corHeatmap(zh)
# Use Spearman correlation coefficients.
corHeatmap(zh, cor.method='spearman')
# Set max correlation coefficients to 0.3.
corHeatmap(zh, max.cor=0.3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.