全部,
我在 Azure 机器学习上使用 R,但我遇到了一些问题。
我想使用程序 R 计算两个日期之间的差异,例如 2014/11/01 和 2014/11/03。
我在 R 中使用函数“strptime”来做这件事,它可以在我自己的计算机上运行,但是当我想在 Azure ml 上运行相同的代码时,它就出现了错误。
错误是:
[ModuleOutput] 1: In strptime(x, format, tz = tz) :
[ModuleOutput]
[ModuleOutput] unable to identify current timezone 'C':
[ModuleOutput]
[ModuleOutput] please set environment variable 'TZ'
[ModuleOutput]
[ModuleOutput] 2: In strptime(x, format, tz = tz) : unknown timezone 'localtime'
我认为问题在于它无法检测 Azure ml 上的时区,但我不确定。
有没有办法解决这个问题?
提前致谢。