Displays a correlation matrix of the quantitative data of a numeric matrix.
Source:R/mod_ds_metacell.R
metacell-plots.Rdxxxx
Usage
mod_ds_metacell_Histos_ui(id)
mod_ds_metacell_Histos_server(
id,
dataIn = reactive({
NULL
}),
group = reactive({
NULL
}),
pal = reactive({
NULL
}),
pattern = reactive({
NULL
}),
showSelect = reactive({
TRUE
}),
remoteReset = reactive({
0
}),
is.enabled = reactive({
TRUE
})
)
mod_ds_metacell_Histos(obj, group, pal, pattern = NULL, showSelect)Examples
if (interactive()){
data(Exp1_R25_prot, package = "DaparToolshedData")
grp <- design.qf(Exp1_R25_prot)$Condition
shiny::runApp(mod_ds_metacell_Histos(Exp1_R25_prot[[1]], group = grp))
# Test with pattern already defined
pat <- c("Missing MEC", "Missing POV")
shiny::runApp(mod_ds_metacell_Histos(Exp1_R25_prot[[1]], pattern = pat, group = grp))
}