Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fabricebrito
Created April 27, 2014 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabricebrito/11352876 to your computer and use it in GitHub Desktop.
Save fabricebrito/11352876 to your computer and use it in GitHub Desktop.
reproducible report
library(shiny)
library(knitr)
# Define UI for application
shinyUI(fluidPage(
## Application title
titlePanel("Dynamic report"),
fluidRow(
column(4,
wellPanel(
uiOutput("run"),
submitButton(text = "Go!", icon = NULL)
)
),
column(8,
uiOutput("summary"),
downloadButton("downloadPDF", "Download PDF"),
downloadButton("downloadEPUB", "Download epub"),
downloadButton("downloadHTML", "Download HTML")
)
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment