如何使用变量?
访问/获取表格列的数据例如,在我的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
有什么想法吗?