Skip to content

Instantly share code, notes, and snippets.

@kxzk
Created October 18, 2017 16:51
Show Gist options
  • Save kxzk/1ab6eabb24acf57cc6e3ebcdf9ae1796 to your computer and use it in GitHub Desktop.
Save kxzk/1ab6eabb24acf57cc6e3ebcdf9ae1796 to your computer and use it in GitHub Desktop.
helloword using Shiny
# contents of app.R
library(shiny)
ui <- fluidPage(
titlePanel('Hello World')
)
server <- function(input, output) {
}
shinyApp(ui, server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment