3
複数のタブを持つようになりました。各タブにはサイドバーがあります。selectInput
が最初のタブにあり、sliderInput
が2番目のタブに必要です。複数のタブと異なるサイドバーが各タブに付いています
誰でも手助けできますか?
マイコード:
ui <- fluidPage(
headerPanel("Terrorism in The World"),
sidebarPanel(
selectInput("Country", "Select Country", choices = sort(unique(mydat$Country)), selected = "Iraq")
,sliderInput("year", "Year:", min = 1968, max = 2009, value = 2009, sep='')
),
mainPanel(
tabsetPanel(
tabPanel("Map",htmlOutput("Attacks")),
tabPanel("plot",
fluidRow(
column(8, plotlyOutput("trendheatrPlot", height = "300px",width = 700)),
column(7, plotlyOutput("trendstakbarPlot", height = "300px",width = 700))
)
)
)
)
)
ありがとう、私はそれを実行し、あなたにお知らせします。 –
それは魅力のように働いています、ありがとう。サイドバーをページの中央上部に移動する方法はありますか? –
@Sazan Abdalrhmamよろしくお願いします。他の人がそれが働いていることを知るように答えを受け入れることができますか?また、私はサイドバーを真ん中に見ることができないので、あなたが思っていることの写真を投稿することもできます。 – dvarelas