Last active
May 15, 2016 17:54
-
-
Save aagarw30/51c1b64710775510709bd159c44122cc to your computer and use it in GitHub Desktop.
shinydashboard layout
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
Title: shinydashboard layout | |
Description: Powered by R, Shiny, shinydashboard and Rstudio. | |
License: GPL-3 | |
Author: Abhinav Agrawal | |
DisplayMode: Showcase | |
Tags: R, R Shiny, shinydashboard | |
Type: Shiny |
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){ | |
}) |
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(shinydashboard) | |
library(shiny) | |
dashboardPage( | |
dashboardHeader(title = "This is header"), | |
dashboardSidebar( | |
helpText("This is sidebar"), | |
helpText("Can have input widgets, menu items, hyperlinks etc.") | |
), | |
dashboardBody( | |
helpText("this is body. Can have widgets, boxes, plots. Row/column based layouts") | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment