TPD-InternationalFootballRe.../UI/BalanceComponent.R

18 lines
307 B
R
Raw Normal View History

2019-05-16 00:37:48 +02:00
# Balance component
balanceComponent <- function(pieChartSize, barplotSize)
{
fluidRow(
column(barplotSize,
wellPanel(
plotOutput("balance")
)
),
column(pieChartSize,
wellPanel(
plotOutput("balancePieChart")
)
)
)
}