group_by,总结反应性不起作用
反应性在我的应用程序中的其他任何地方都可以正常工作,但是当我尝试创建一个摘要统计表时,表返回所选变量的名称而不是摘要统计量:
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_group | min | 中间 |
---|---|---|
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_Group | min | median |
---|---|---|
18-29 | weight | 170 |
30-39 | weight | 180 |
40-49 | weight | 190 |
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论