gpt4 book ai didi

r - 直接动态添加框到 Shiny Dashboard

转载 作者:行者123 更新时间:2023-12-02 17:02:33 25 4
gpt4 key购买 nike

我正在尝试根据向量的内容将多个框添加到 Shiny 的界面。

让我们从这里开始:

library(shiny)

ui <- fluidPage(

titlePanel("Dynamic Boxes"),

fluidRow(
uiOutput("boxes")
)
)

server <- function(input, output) {

output$boxes <- renderUI({
interf <- ""
for(i in 1:10){
x = 1:100
interf <- box(title = paste0("box ", i),
renderPlot(plot(x = x, y = x^i)))

}
interf
})
}

shinyApp(ui = ui, server = server)

它只显示最后一个框。我不知道如何将它们组合在一起,然后将其传递给客户端。

最佳答案

box 来自您尚未加载的 shinydashboard 包(至少在您的帖子中)。无论如何,您需要一个您的 for 循环不会创建的框元素列表。这是一种方法-

library(shiny)
library(shinydashboard)

ui <- fluidPage(
titlePanel("Dynamic Boxes"),
fluidRow(
uiOutput("boxes")
)
)

server <- function(input, output) {
output$boxes <- renderUI({
lapply(1:10, function(a) {
x = 1:100
box(title = paste0("box ", a), renderPlot(plot(x = x, y = x^a)))
})
})
}

shinyApp(ui = ui, server = server)

enter image description here

关于r - 直接动态添加框到 Shiny Dashboard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53364584/

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