Azume ML无法找到timeSeries功能

时间:2017-04-03 02:25:24

标签: r azure machine-learning

我正试图在R Script中投放Azure ML Studio。不幸的是,我收到以下错误:

Error 0063: The following error occurred during evaluation of R script:
---------- Start of error message from R ----------
could not find function "timeSeries"

Azure ML cannot默认安装function timeSeries包时timeSeries找到@timestamp似乎很奇怪。以下是证明,您可以看到列出了timeSeries。

enter image description here

这是我的代码和Azure图。第一个R脚本用于写入已安装软件包的CSV(第一张图片)。第二个R脚本中的代码显示在第二张图片的右侧。

enter image description here 感谢

1 个答案:

答案 0 :(得分:1)

需要加载库,因为它是外部库

library(timeSeries)
#Map 1-based optional input ports to variables
dataset1 <- maml.mapInputPort(1) #class: data.frame
HOLD <- maml.mapInputPort(2) #class: data.frame

colnames(HOLD) <- c("Dates", "Val")

Daily.TS <- timeSeries(HOLD$Val, as.Date(HOLD$Dates),
     format="%Y-%m-%d")