Rename tabs

This commit is contained in:
geoffreyli 2015-11-07 15:21:42 -05:00
parent a6f1a4be96
commit 2627c1d12f

View File

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