Merge remote-tracking branch 'origin/master'

Conflicts:
	shiny-app/ui.R
master
geoffreyli 2015-11-07 13:49:49 -05:00
commit e3bb943990
1 changed files with 6 additions and 8 deletions

View File

@ -10,18 +10,16 @@ shinyUI(fluidPage(
sidebarLayout(
sidebarPanel(
checkboxGroupInput('show_vars', 'Columns in dataset to show:',
names(emergency2013), selected = null)
),
# Show a summary table of the selected variables
names(emergency2013), selected = NULL)
)
),
# Show a summary table of the selected variables
mainPanel(
tabsetPanel(
id = 'dataset',
tabPanel('emergency2013', dataTableOutput('mytable1')),
tabPanel('scatterplot', plotOutput('distPlot'))
)
tabPanel('emergency2013', plotOutput('myplot')))
)
)
))
)