gpt4 book ai didi

r - 如何在 R Shiny 的两个单独选项卡中输入 ID 并反射(reflect)不同的结果

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

这可能是一个普遍的问题,我会尽力明确地描述它。在 R Shiny 和 ui.R 文件中,我使用 radioButtons 选择以下两种方法之一:

  radioButtons("Methods", strong("Choose a Method:"),
choices = list("method_1" = "m1",
"method_2" = "m2"),
selected="method_1"),

selectInput("method_2_ID", strong("Choose an ID (method_2"),
topIDs)

mainPanel(
tabsetPanel(
tabPanel(title = "method_1_tab1",
plotOutput("plots"),
tabPanel(title = "method_2_output1",
tableOutput("m2_output1")),
tabPanel(title = "method_2_output2",
verbatimTextOutput("m2_output2")))
))

你可以看到对于 method_2,我计划使用两个不同的选项卡来显示不同的结果,即 m2_output1m2_output2。在我的 server.R 文件中,我使用:

if (input$Methods == "method_2") {

# m2_output1
updateTabsetPanel(session, "method_2_output1", selected="panel2")

# drop-down menu
SelectedID = reactive(function(){
input$method_2_ID
})

# m2_output1
output$m2_output1 = renderTable({
m2[m2$ID == input$method_2_ID, ]
})

# m2_output2
updateTabsetPanel(session, "method_2_output2", selected="panel3")

[...]
output$m2_output2 = renderPrint({
[...]
}
})

但是,当我从下拉菜单中单击 ID 时,它仅适用于 method_2_output1 选项卡,而当我单击 method_2_ouptut2 选项卡时,没有显示任何内容(应该显示 verbatimTextOutput("m2_output2)",我想)。我的 ui.Rserver.R 文件有什么问题吗?

最佳答案

要使选项卡执行您想要的操作,需要进行相当多的更改。

一些较大的变化是:

  1. 您必须使用 id 参数创建 tabsetPaneltabPanels,以便可以引用它们。

  2. 要使 updateTabsetPanel 正常工作,您必须使用以下方法将这些命令包装在响应式(Reactive)观察器中:

    observe ( {
    #updateTabsetPanel here
    })
  3. 使用 sessions 参数调用 ShinyServer

我还做了其他几项更改。下面是一个完整的工作框架。当您选择方法 1 时,它会选择 Tab1。如果您选择方法 2,则在第二个和第三个选项卡之间切换,具体取决于所选的方法 ID。 enter image description here

UI.R

library("shiny")

shinyUI(pageWithSidebar(
headerPanel("Tab Switch Demo"),
sidebarPanel(
h4('Switch Tabs Based on Methods'),
radioButtons(inputId="method", label="Choose a Method",
choices = list("method_1",
"method_2")),
conditionalPanel("input.method== 'method_2' ",
selectInput("method_2_ID", strong("Choose an ID for method 2"),
choices = list("method_2_1",
"method_2_2"))
)

),
mainPanel(
tabsetPanel(id ="methodtabs",
tabPanel(title = "First Method Plot", value="panel1",
plotOutput("method_1_tab1")),
tabPanel(title = "method_2_output1", value="panel2",
tableOutput("m2_output1")),
tabPanel(title = "method_2_output2", value="panel3",
verbatimTextOutput("m2_output2"))
)
)
))

服务器.R

library('shiny')    
shinyServer(function(input, output, session) {
output$method_1_tab1 = renderPlot({
plot(cars)
})
output$m2_output1 = renderText({
"First Tab for Method 2, ID=1"
})
output$m2_output2 = renderText({
"Second Tab for Method 2, ID=2"
})

observe({
if (input$method == "method_1") {
updateTabsetPanel(session, inputId="methodtabs", selected="panel1")
}
else if (input$method_2_ID == "method_2_1") {
updateTabsetPanel(session, inputId="methodtabs", selected="panel2")
}
else if (input$method_2_ID == "method_2_2") {
updateTabsetPanel(session, inputId="methodtabs", selected="panel3")
}
})

以上面的代码为起点,开始进行更改。

希望对您有所帮助。

关于r - 如何在 R Shiny 的两个单独选项卡中输入 ID 并反射(reflect)不同的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17928641/

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