-
-
Save fabricebrito/11352876 to your computer and use it in GitHub Desktop.
reproducible report
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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