
The UI input function of the foldchangeplot module
Source: R/foldchangeplot.R
foldchangeplotInput.RdThis module is for making scatter plots comparing pairs of groups defined in a 'contrasts' slot of the ExploratorySummarizedExperimentList
Examples
data(airway, package = "airway")
ese <- as(airway, "ExploratorySummarizedExperiment")
eselist <- ExploratorySummarizedExperimentList(ese)
#> Creating ExploratorySummarizedExperimentList object
foldchangeplotInput("myid", eselist)
#> Error in foldchangeplotInput("myid", eselist): could not find function "foldchangeplotInput"
# Almost certainly used via application creation
if (interactive()) {
app <- prepare_app("foldchangeplot", eselist)
shiny::shinyApp(ui = app$ui, server = app$server)
}