Rename tabs

master
geoffreyli 2015-11-07 15:21:42 -05:00
parent a6f1a4be96
commit 2627c1d12f
1 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@ shinyUI(fluidPage(
mainPanel(
tabsetPanel(
id = 'dataset',
tabPanel('emergency2013', dataTableOutput('mytable1')),
tabPanel('emergency2013', dataTableOutput('mytable2')),
tabPanel('emergency2013', plotOutput('myplot')))
tabPanel('Data Table', dataTableOutput('mytable1')),
tabPanel('Summary Statistics', dataTableOutput('mytable2')),
tabPanel('Scatter Plots', plotOutput('myplot')))
)
)
)