Description Usage Arguments Value Author(s) See Also Examples
This function calculates a correlation matrix based on feature expression per sample.
1 2 3 | ## S4 method for signature 'bcbioRNASeq'
plotCorrelationHeatmap(object, normalized = c("rlog",
"vst", "tmm", "tpm"), ...)
|
object |
Object. |
normalized |
Character indicating which normalization method to apply:
|
... |
Passthrough arguments to |
Show heatmap and invisibly return a list
of the components.
Michael Steinbaugh
help("plotCorrelationHeatmap", "bcbioBase")
.
findMethod("plotCorrelationHeatmap", "SummarizedExperiment")
.
Other Quality Control Functions: plot5Prime3PrimeBias
,
plotCountDensity
,
plotCountsPerGene
,
plotDispEsts
,
plotExonicMappingRate
,
plotGenderMarkers
,
plotGeneSaturation
,
plotGenesDetected
,
plotIntronicMappingRate
,
plotMappedReads
,
plotMappingRate
, plotMeanSD
,
plotPCACovariates
, plotPCA
,
plotRRNAMappingRate
,
plotTotalReads
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # bcbioRNASeq ====
# Pearson correlation
plotCorrelationHeatmap(bcb_small, method = "pearson")
# Spearman correlation
plotCorrelationHeatmap(bcb_small, method = "spearman")
# Inferno palette
plotCorrelationHeatmap(
bcb_small,
color = inferno,
legendColor = inferno
)
# Default pheatmap palette
plotCorrelationHeatmap(
bcb_small,
color = NULL,
legendColor = NULL
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.