Skip to content

Instantly share code, notes, and snippets.

@aagarw30
Last active May 15, 2016 17:54
Show Gist options
  • Save aagarw30/51c1b64710775510709bd159c44122cc to your computer and use it in GitHub Desktop.
Save aagarw30/51c1b64710775510709bd159c44122cc to your computer and use it in GitHub Desktop.
shinydashboard layout
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
library(shiny)
shinyServer(function(input, output){
})
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