タブごとに異なる入力を表示したいと思います。そこで、複数の tabPanels を含むページを構築しようとしました。ただし、次のような sth を使用することはできません。
library(shiny)
shinyUI(pageWithSidebar(
headerPanel("Header"),
tabsetPanel(
tabPanel(
headerPanel("Tab 1"),
sidebarPanel(
selectInput("var", "Parametre", choices = c("1", "2", "3"))
),
mainPanel(
textOutput("text1")
)
),
tabPanel(
headerPanel("Tab 2"),
sidebarPanel(
selectInput("var", "Parametre", choices = c("21", "22", "23"))
),
mainPanel(
textOutput("text2")
)
)
)
))
が問題の原因であると思われpageWithSidebar
ますが、Google グループで代替手段を見つけることができませんでした。独自のサイドバーとメイン パネルを備えた複数のタブを表示する方法はありますか?それとも、この目的のために別のアプリを作成する必要がありますか?