我正在尝试在Windows(R版本3.2.0)和Mac(R版本3.1.3)上运行相同的R脚本。它适用于Mac,但是当我尝试使用此命令时
startYear <- format(min(dates), "%Y")
在Windows中,我收到以下错误消息:
Error in prettyNum(.Internal(format(x, trim, digits, nsmall, width, 3L, :
invalid 'trim'argument
似乎调用了错误的格式函数......
有没有办法告诉它这是我想要的日期格式功能?我已经尝试了
Date.format()
但它只是说Date.format()
不存在!
有人可以帮忙吗?
谢谢!
PS:我不能只停止使用Windows,所以我必须让它在那里工作。