请运行此代码。当您单击数据表中的一行时,您将看到“a”列中的数字被绘制出来。这是使用回调和观察事件完成的。这很好用。
library(shiny)
library(DT)
runApp(shinyApp(
ui = fluidPage(
DT::dataTableOutput('table') ,
selectInput("NUMBER", "Number:", c(1,100,1000000),selected = 1),
plotOutput("p")
),
server = function(input, output, session) {
NUMBER = reactive({
input$NUMBER
})
output$table <- DT::renderDataTable({
datatable(data.frame(a = c(85,7),b=c(444,2)), rownames = FALSE, selection = 'none', callback=
JS("table.on('click.dt', 'tr', function() {
var data=table.row(this).data();
Shiny.onInputChange('rows',data[0]);
});")
)}
)
observeEvent(input$rows, {
print( input$rows)
print( class( input$rows) )
a = as.numeric(input$rows)
print(a)
print(NUMBER())
new_number = a #THIS WORKS!!!
#new_number = a * as.numeric(NUMBER()) #THIS DOES NOT WORK multiple a by the number in the slider when the SLIDER Is CHANGED
output$p = renderPlot({
# browser()
plot( new_number )
})
})}
))
但您也会看到“NUMBER”滑块输入。当用户更改滑块时,我希望绘图更新,以便绘图显示滑块中选择的数字的倍数。所以:
注释掉这一行:
new_number = a
并取消注释这一行:
new_number = a * as.numeric(NUMBER())
现在重新运行代码,您将看到当您从滑块中选择不同的数字时,但没有任何反应。这是因为
new_number = a * as.numeric(NUMBER())
位于 ObserveEvent 函数内,并且未单击表...只是更改了滑块。那么如何使 NUMBER() 可用以使其有效?
谢谢你。