私のシャイニーアプリケーションに関連するコードは次のとおりです。追加のコードが必要な場合はお知らせください。私はプロットをレンダリングするために同じメソッドを使用することができますが、テーブルをレンダリングしようとするとエラーが発生しています。シャイニーはアクションボタン付きのテーブルを更新します
UI:数のエラー:未使用の引数(
actionButton("do", "Test!"),
fluidPage(
tableOutput('table1')
),
Serverの私は、 "テスト" ボタンを押すと
しかしglobals <- reactiveValues(
mydf = dat
)
count <- eventReactive(input$do, {
filter_mk <- input$mk
filter_date <- input$date
filter_universe <- input$universe
dat_f <- globals$mydf %>% filter(date >= filter_date & universe %in% filter_universe & mrkcp_buckets %in% filter_mk)
count <- dat_f %>%
group_by(date) %>%
count() %>%
rename(st = n) %>%
group_by(strftime(date, "%Y-%m")) %>%
filter(date == max(date)) %>%
ungroup() %>%
select(`strftime(date, \"%Y-%m\")`, st) %>%
spread(`strftime(date, \"%Y-%m\")`, st) %>%
.[seq(1, length(.), 3)]
})
output$table1 <- renderTable({
count()
}, caption= "Test",
caption.placement = getOption("xtable.caption.placement", "top")
)
、私は次のエラーを取得しています)。私が何か簡単なものを見逃しているのだろうかと思います。
私もできませんobserveEvent(input$do, {output$table2 <- renderTable({.})
私は簡潔にしようとしなかったいくつかの他の制約をします。