group_by,总结反应性不起作用

发布于 2025-01-21 16:15:40 字数 911 浏览 0 评论 0原文

反应性在我的应用程序中的其他任何地方都可以正常工作,但是当我尝试创建一个摘要统计表时,表返回所选变量的名称而不是摘要统计量:

ui <- selectInput('summary_metric', 'Select Metric', choices = c('height', 'weight'))
      tableOuput('summary_table')

server <- function(input, output) {
      output$summary_table <- renderTable({ data %>% group_by(Age_Group) %>% 
                                                     summarise(min = min(input$summary_metric),
                                                               median = median(weight))})

返回一个读取的表:

age_groupmin中间
18-29重量170
30-- 39重量180
40-49重量190

当在UI中选择“重量”并在UI中选择“高度”时将“重量”切换为“高度”。因此,它没有计算最小值,而只是返回变量名称。关于我缺少的东西有什么想法吗?

Reactivity is working everywhere else in my app, but when I try to create a summary statistic table the table returns the name of the variable selected instead of the summary statistic:

ui <- selectInput('summary_metric', 'Select Metric', choices = c('height', 'weight'))
      tableOuput('summary_table')

server <- function(input, output) {
      output$summary_table <- renderTable({ data %>% group_by(Age_Group) %>% 
                                                     summarise(min = min(input$summary_metric),
                                                               median = median(weight))})

Returns a table that reads:

Age_Groupminmedian
18-29weight170
30-39weight180
40-49weight190

when 'weight' is selected in the UI and toggles to 'height' in the min column when 'height' is selected in the UI. So instead of calculating the minimum, it is just returning the variable name. Any thoughts as to what I'm missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文