Я хотел отобразить круговую диаграмму на основе данных, отображаемых в infoBox ().Блестящее приложение должно отображать результаты в информационной строке, а также в виде круговой диаграммы.
Вот мой код:
library(shiny)
library(shinydashboard)
library(ECharts2Shiny)
a <- 10
b <- 20
dat1 <- data.frame(a,b)
colnames(dat1) <- c("Male", "Female")
c <- 20
d <- 20
dat2 <- data.frame(c,d)
colnames(dat2) <- c("Male", "Female")
e <- 30
f <- 20
dat3 <- data.frame(e,f)
colnames(dat3) <- c("Male", "Female")
ui <- shinyUI(dashboardPage(
dashboardHeader(title = "123"),
dashboardSidebar(disable = TRUE),
dashboardBody(
fluidRow(radioButtons("Ben", "Details", c("1","2", "3"), inline = T),
infoBoxOutput("loc", width = 960)
)))
server <- shinyServer(function(input,output){
output$loc <- renderInfoBox({
if (input$Ben == "1"){
box(h3("1"),
infoBox("Total", 30, "Visits", icon = icon('users'), width = 4),
infoBox("M", 10 ,"Visits", icon = icon('male'), width = 4),
infoBox("F", 20 ,"Visits", icon = icon('female'), width = 4),
loadEChartsLibrary(), tags$div(id="test1", style="width:60%;height:300px;"),
deliverChart(div_id = "test1"), width = "800px", height = "400px",
renderPieChart(div_id = "test1", data = dat1, show.label = TRUE),
background = "black")
}
else {if (input$Ben == "2") {
box(h3("2"),
infoBox("Total", 40, "Visits", icon = icon('users'), width = 4),
infoBox("M", 20 ,"Visits", icon = icon('male'), width = 4),
infoBox("F", 20 ,"Visits", icon = icon('female'), width = 4),
loadEChartsLibrary(), tags$div(id="test2", style="width:60%;height:300px;"),
deliverChart(div_id = "test2"), width = "800px", height = "400px",
renderPieChart(div_id = "test2", data = dat2, show.label = TRUE),
background = "black")
}
else{
box(h3("3"),
infoBox("Total", 50 , icon = icon('users'), width = 4),
infoBox("m", 30, icon = icon("male"), width = 4),
infoBox("f", 20, icon = icon('female'), width = 4),
loadEChartsLibrary(), tags$div(id="test3", style="width:60%;height:300px;"),
deliverChart(div_id = "test3"), width = "800px", height = "400px",
renderPieChart(div_id = "test1", data = dat1, show.label = TRUE), background ="black")
}} }}}
})
})
shinyApp(ui,server)
При выборе переключателя infoBox () исоответствующая круговая диаграмма должна быть указана в блестящем приложении.Может ли кто-нибудь помочь в этом?