Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am vestaxis on github.
  • I am vestax (https://keybase.io/vestax) on keybase.
  • I have a public key ASCFX3GIVCMUxU5J0I_2YxHpLimyqABJNASQh9_ZOx7M6Qo

To claim this, I am signing this object:

@Vestaxis
Vestaxis / app.R
Last active March 31, 2016 15:20
Dynamic UI where UI of one module is injected into another module.
library(shiny)
filtersUI <- function(id) {
ns <- NS(id)
fluidRow(
uiOutput(ns("filters"))
)
}
@Vestaxis
Vestaxis / app1.R
Last active February 25, 2016 15:21
Three Shiny apps that export UI components to a separate Shiny module.
# Simple example of exporting UI to another function (this works)
library(shiny)
tabUI <- function(id) {
ns <- NS(id)
fluidRow(
textOutput(ns("filter"))
)
}