【发布时间】:2020-07-21 19:06:35
【问题描述】:
我现在一直在尝试让我的 Shiny App 正常工作,这样当我将鼠标移动到绘图中的某些点时,它们会显示在表格中,但不幸的是它无法正常工作。 我不确定我做错了什么,你能帮帮我吗?
边框
ui ) )
服务器
output$Plot <- renderPlot({
ggplot(table,aes(x=table$A, y=table$B), colour=border)) +
geom_point()
})
命中
output$HitSpots <- renderTable({
hit()
}
}
shinyApp(ui = ui, server = server)
【问题讨论】: