我正在尝试根据省列和城市列对数据框进行子集化。在闪亮中,我想让用户使用 selectInput UI 选择省然后选择城市。
这是数据框的样子。
列InfoTemp[2]
是市,InfoTemp[3]
是省。
数据集很大,它们实际上有很多层次。
年秋 InfoTemp[2] InfoTemp[3] 1913 8.9 肖尼根湖 BC 1914 9.5 肖尼根湖 BC 1915 9.3 肖尼根湖 BC 1916 8.5 肖尼根湖 BC 1917 9.9 肖尼根湖 BC 1918 -9999.9 肖尼根湖 BC
最终,这是我打算去的一个地块(对于一个城市)。
这是到目前为止的代码,没有做任何事情......
服务器.R
library(shiny)
shinyServer(function(input, output) {
#MeanTemp
load("CanadianMeanTemp.Rdata")
province = input$provinces
city = input$cities
output$distPlot <- renderPlot({
MeanTemp_province = MeanTemp[grep(c(province), MeanTemp$`InfoTemp[3]`),]
MeanTemp_city = MeanTemp_province[grep(c(city), MeanTemp$`InfoTemp[2]`),]
plot(MeanTemp_city$Year, MeanTemp_city$Annual, type = "l")
lines(supsmu(MeanTemp_city$Year, MeanTemp_city$Annual), col = 2)
})
})
用户界面
library(shiny)
shinyUI(fluidPage(
titlePanel("Temperature"),
sidebarLayout(
sidebarPanel(
selectInput('provinces', 'Province', choices = levels(MeanTemp$`InfoTemp[3]`)),
conditionalPanel(
condition = "input.provinces == true",
selectInput('cities', 'City', choices = levels(MeanTemp_province$`InfoTemp[2]`))
)
),
mainPanel(
plotOutput("distPlot")
)
)
))