R/omXplore_corrmatrix.R
corrmatrix.Rd
Displays a correlation matrix of the quantitative data of a numeric matrix.
omXplore_corrmatrix_ui(id)
omXplore_corrmatrix_server(
id,
obj = reactive({
NULL
}),
i = reactive({
NULL
})
)
corrMatrix(data, rate = 0.5, showValues = FALSE)
omXplore_corrmatrix(obj, i)
A character(1)
which is the id of the shiny module.
An instance of the class SummarizedExperiment
An integer which is the index of the assay in the param obj
An object of class 'matrix'
The rate parameter to control the exponential law for the gradient of colors
A boolean which indicates whether to show values in the correlation plot.
NA
NA
A plot
A shiny app
if (interactive()) {
data(vdata)
omXplore_corrmatrix(vdata, 1)
}