gpt4 book ai didi

r - Azure ML无法找到时间序列函数

转载 作者:行者123 更新时间:2023-11-30 09:09:35 25 4
gpt4 key购买 nike

我正在尝试在 Azure ML Studio 中运行 R 脚本。不幸的是,我收到以下错误:

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

奇怪的是,Azure ML 无法 找到函数 timeSeries,因为默认安装了 timeSeries 包。这是证明,您可以看到列出了 timeSeries。

enter image description here

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

enter image description here谢谢

最佳答案

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

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")

关于r - Azure ML无法找到时间序列函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43175671/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com