R/omXplore_heatmap.R
, R/plot_heatmap.R
omXplore_heatmap.Rd
This function is a wrapper to heatmap.2()
that displays
assay data in an instance of SummarizedExperiment
. For
more details, see heatmap.2()
.
omXplore_heatmap_ui(id)
omXplore_heatmap_server(
id,
obj = reactive({
NULL
}),
i = reactive({
NULL
})
)
omXplore_heatmap(obj, i)
heatmapD(
qdata,
conds,
distance = "euclidean",
cluster = "complete",
dendro = FALSE
)
mv.heatmap(
x,
col = grDevices::heat.colors(100),
srtCol = NULL,
labCol = NULL,
labRow = NULL,
key = TRUE,
key.title = NULL,
main = NULL,
ylab = NULL
)
heatmapForMissingValues(
x,
col = NULL,
srtCol = NULL,
labCol = NULL,
labRow = NULL,
key = TRUE,
key.title = NULL,
main = NULL,
ylab = NULL
)
A character(1)
which is the id of the shiny module.
An instance of a class MultiAssayExperiment
.
An integer which is the index of the assay in the param obj
A data.frame() of quantitative data.
A vector indicating the name of each sample.
The distance used by the clustering algorithm to compute the dendrogram.
the clustering algorithm used to build the dendrogram.
A boolean to indicate fi the dendrogram has to be displayed
A matrix
or array
containing the quantitative data.
Colors used for the image. Defaults to heat colors (heat.colors).
Angle of column conds, in degrees from horizontal
Character vectors with column conds to use.
Character vectors with row conds to use.
Logical indicating whether a color-key should be shown.
Main title of the color key. If set to NA no title will be plotted.
Main title; default to none.
y-axis title; default to none.
NA
NA
A shiny app
A heatmap
A heatmap
A heatmap
if (FALSE) { # \dontrun{
data(vdata)
omXplore_heatmap(vdata, 1)
} # }