Last active
January 30, 2017 19:02
-
-
Save aagarw30/53ba1657857d6fc6465a63dc0b5e9f5c to your computer and use it in GitHub Desktop.
Hello Shiny App
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) | |
shinyServer(function(input, output,session){ | |
}) |
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) | |
# Simple shiny layout for demo sake | |
shinyUI(fluidPage( | |
titlePanel(title= "Hello Shiny App"), | |
sidebarLayout( | |
sidebarPanel( | |
h5("this is sidebar Panel") | |
), | |
mainPanel( | |
h5("This is the main Panel") | |
) | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment