我正在尝试编写一个函数,将一些 xts 数据加载到R中,并按我指定的日期/时间对它们进行排序。也许我正在尝试一种过于简单的方法,但这是我的代码:
load.data <- function (x, time1, time2) #x is going to be the actual file name
{
vector = get(load("C:/Users/username/Desktop/x"))
sortvector = vector['time1/time2/']
return (sortvector)
}
当我执行它时,我收到消息:
In readChar(con, 5L, useBytes = TRUE) :
cannot open compressed file 'C:/Users/username/Desktop/x', probable reason 'No such file or directory'
那么,我怎样才能让我的函数真正搜索文件名,而不是实际的通用“x”?我希望我很清楚,我当然会非常感谢任何帮助。