View source: R/Module_RatioPlotModule.R
RatioPlotModule | R Documentation |
This is a ratio plotter
RatioPlotModule(input, output, session, values) RatioPlotModuleUI(id)
input |
arguments necessary for use with
|
output |
arguments necessary for use with
|
session |
arguments necessary for use with
|
values |
a |
id |
id to be used to define a namespace via |
This module returns nothing
RatioPlotModule
: Server logic
RatioPlotModuleUI
: UI elements
values
for a description of the values
object
## Not run: MseekExamplePreload() tab1 <- FTNormalize(tab1) ui <- MseekMinimalUI( fluidPage( fluidRow( RatioPlotModuleUI("examplewidget")), fluidRow( MainTableModuleUI("mtb")) ), diagnostics = T) server <- function(input, output) { MseekMinimalServer(diagnostics = T, data = F, tables = T) MainTable <- callModule(MainTableModule, "mtb", values = reactiveValues(featureTables = featureTables, GlobalOpts = GlobalOpts), static = list(perpage = 100, height = 300, readOnly = T, contextMenu = T, fixedColumnsLeft = 1, invertReadOnly = NULL, controls = T, format = list(col = NULL, format = NULL))) ExampleWidget <- callModule(RatioPlotModule, "examplewidget", values = values) } # Create Shiny app ---- shinyApp(ui, server) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.