我相信有一种方法可以在Spotfire中生成相关值而无需编写R脚本但是我想了解为什么下面的代码没有在Spotfire中运行。我也尝试将统计数据和基础库加载到Spotfire中无济于事。
脚本如下:
output <- cor(input1, input2)
错误信息如下:
TIBCO Enterprise Runtime for R returned an error: 'Error in library(pkg, character.only = TRUE) : there is no package called 'correlation''.
答案 0 :(得分:1)
最可能发生的事情是,Tibco有一个预先安装的称为关联的软件包,可以屏蔽cor()
函数。使用以下命令从统计信息库中调用它:
stats::cor(input1,input2)