我有一个反应闪亮的连接到MySQL并根据用户输入呈现数据表。在表mytable
,
A列的值为Won或Lost B列有值 - 赢或丢或绑 C列的值为1到9 列D的值为0到150 E列的值为-1或2
根据用户输入选择这4个值。表mytable
有其他列,如E和F,它们不依赖于用户输入。
ui <- fluidPage(fluidRow(
column(4,radioButtons("firstorsecond", "First or Second",
choices = c(1: 2),selected='1')),
column(4,radioButtons("anotherselection", "Choose won or lost",
choices = list("Won" = 1, "Lost" = 2),selected='1')),
column(4,radioButtons("result", "Match Result",
choices = list("Won" = 1, "Lost" = 2, "Tied"=3),selected='1')),
column(4,checkboxGroupInput("pos", "Position",
choices = c(1:9),inline = TRUE)),
column(4,sliderInput("range", "Score Range", min = 0,
max = 150,value = c(25,75))
))
)
server <- function(input, output)
{
rs=dbSendQuery(mydb,"select A,B,C,D,E,F from mytable where name='abcd'")
adv_ana=fetch(rs,n=-1)
dataInput<-reactive({
**code goes here**
})
}
在
dataInput<-reactive({})
中,帮我弄清楚如何获取输入值并显示包含所有列的表。
提前致谢。
您可以使用dplyr::filter
根据您的条件筛选行(未经测试,因为我没有您的数据):
datainput <- reactive{(
your_table %>%
dplyr::filter(A == input$firstorsecond,
B == input$anotherselection,
C == input$result,
D == input$pos)
})
你可能已经适应了你的实际输入,我估计有5个输入,而在你的描述中你只提到4列。