尝试在 R Shiny Application 中使用 mapply 函数时出错

Error when attempting to use the mapply function in R Shiny Application

在我正在创建的 shiny 应用程序中,我尝试使用 mapply 函数将两个列表添加到一起,但是每当我尝试 运行 时,程序都会显示以下错误。

ERROR:  object 'SIMPLIFY' not found

这是有问题的代码

addedUp <-  mapply("+", a, b, SIMPLIFY = FALSE) 

Simplify 显然没有印刷错误,所以我完全不知道是什么导致了这个问题。我尝试用谷歌搜索这个问题,但没有发现任何提及此特定错误的内容。

Documentation中,simplify参数没有大写。 (尽管当我在 R 中查看 help(mapply) 时它是大写的。也许这行得通:

addedUp <-  mapply("+", a, b, simplify=FALSE)

或者,您可以尝试:

Map('+',a,b)

希望对您有所帮助。