corHeatmap | R Documentation |
Heatmap pf correlation coefficients between any two sections in a SummarizedExperiment
object.
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.
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.