gpt4 book ai didi

r - Valuebox 未显示 - Shiny 的仪表板

转载 作者:行者123 更新时间:2023-12-01 09:35:20 25 4
gpt4 key购买 nike

我想使用 flexdashboard 包在我 Shiny 的仪表板中显示值框。请检查我的代码,值框未显示。请帮我解决这个问题。

界面代码

library(shiny)
library(shinydashboard)
library(flexdashboard)

ui <- dashboardPage(skin = "black",
dashboardHeader(title = "test"),

dashboardSidebar(
sidebarMenu()),

dashboardBody(
fluidRow(
valueBoxOutput("vbox1", width = 2),
valueBoxOutput("vbox2", width = 2),
valueBoxOutput("vbox3", width = 2),
valueBoxOutput("vbox4", width = 2),
valueBoxOutput("vbox5", width = 2),
valueBoxOutput("vbox6", width = 2))))

服务器代码

server <- function(input, output) {

#valuebox
output$vbox1 <- renderValueBox({
d <- 10
valueBox( d, caption = "Coss")
})

output$vbox2 <- renderValueBox({
d <- 42
valueBox( d,"Ccy")
})

output$vbox3 <- renderValueBox({
d <- 75
valueBox( d,"Cty")})

output$vbox4 <- renderValueBox({
d <- 21
valueBox( d,"Dup")})

output$vbox5 <- renderValueBox({
d <- 34
valueBox( d,"Inte")})

output$vbox6 <- renderValueBox({
d <- 56
valueBox( d,"Acd")})

}

shinyApp(ui, server)

enter image description here

我只得到文本而不是值框。

谢谢巴拉吉

最佳答案

flexdashboard 包屏蔽了 valueBoxOutput(),它是 shinydashboard 包的一个函数。所以要解决这个问题,你应该使用 shinydashboard::valueBoxOutput 而不是 valueBoxOutput

关于r - Valuebox 未显示 - Shiny 的仪表板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50290972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com