将现有的数据框传递给Shiny.collections

时间:2018-10-09 20:49:47

标签: r shiny reactive

如何将现有表传递给Shiny.collections?我正在尝试构建一个可以由一个闪亮的应用程序中的一个或多个个人进行编辑的交互式表格。我正在按照此页面https://github.com/Appsilon/shiny.collections上的说明进行操作 但我不了解如何传递现有数据框,而不是像示例中那样构建一个数据框。

这是我尝试过的:

server = function(input, output) {
  mydata2 <- read.csv("C:\\Data\\PROJECTS\\SHINY_APPS\\data.csv")
  # We create collection object, where mydata$collection is reactive value.
  mydata <- shiny.collections::collection("mydata2", connection)
  column_names <- colnames(mydata2)

我得到的错误是:

Listening on http://127.0.0.1:6478
Warning: Error in : Columns `Project`,`location`, `Budget`,`Country`, `Commercial`, `Geographical`, `Community`, `Infrastructure` not found
  139: <Anonymous>

0 个答案:

没有答案