闪亮 - 使用变量访问表格列的数据

时间:2015-05-05 09:27:13

标签: r shiny

如何使用变量?

访问/获取表格列的数据

例如,在我的server.R中,

# Store the requested species name.
species = input$species 

dens <- density(data$species, na.rm = TRUE)

我的数据库中有这些数据,

数据表,

id  nox   co
1   1.2   2
2   2.4   5.6
....

因此,如果所请求的物种名称为“nox&#39;”,那么data$species应该引用data$nox,但我在下面收到此错误消息,

Error: argument 'x' must be numeric

有什么想法吗?

0 个答案:

没有答案