gpt4 book ai didi

r - 将数据框转换为 xts

转载 作者:行者123 更新时间:2023-12-03 06:12:32 25 4
gpt4 key购买 nike

我正在尝试使用 as.xts() 方法将数据帧转换为 xts 对象。这是我的输入数据框 q:

q
t x
1 2006-01-01 00:00:00 1
2 2006-01-01 01:00:00 2
3 2006-01-01 02:00:00 3

str(q)
'data.frame': 10 obs. of 2 variables:
$ t: POSIXct, format: "2006-01-01 00:00:00" "2006-01-01 01:00:00" "2006-01-01 02:00:00" "2006-01-01 03:00:00" ...
$ x: int 1 2 3 4 5 6 7 8 9 10

结果是:

> as.xts(q)
Error in as.POSIXlt.character(x, tz, ...) :
character string is not in a standard unambiguous format

这是我能想到的最简单的例子,所以无法让它工作是非常令人沮丧的......感谢任何帮助!

最佳答案

这有明确记录 --- xtszoo对象是通过提供两个参数、一个携带数据和日期POSIXct<的向量矩阵来形成的, chron, ... 提供时间信息的类型(或者在 zoo 的情况下排序)。

所以做类似的事情

 qxts <- xts(q[,-1], order.by=q[,1])

你应该已经准备好了。

关于r - 将数据框转换为 xts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4297231/

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