gpt4 book ai didi

r - 为什么 apply() 返回转置的 xts 矩阵?

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

我想在 xts 矩阵的所有周期上运行一个函数。 apply() 非常快,但返回的矩阵与原始对象相比具有转置维度:

> dim(myxts)
[1] 7429 48
> myxts.2 = apply(myxts, 1 , function(x) { return(x) })
> dim(myxts.2)
[1] 48 7429
> str(myxts)
An 'xts' object from 2012-01-03 09:30:00 to 2012-01-30 16:00:00 containing:
Data: num [1:7429, 1:48] 4092500 4098500 4091500 4090300 4095200 ...
- attr(*, "dimnames")=List of 2
..$ : NULL
..$ : chr [1:48] "Open" "High" "Low" "Close" ...
Indexed by objects of class: [POSIXlt,POSIXt] TZ:
xts Attributes:
NULL
> str(myxts.2)
num [1:48, 1:7429] 4092500 4098500 4091100 4098500 0 ...
- attr(*, "dimnames")=List of 2
..$ : chr [1:48] "Open" "High" "Low" "Close" ...
..$ : chr [1:7429] "2012-01-03 09:30:00" "2012-01-03 09:31:00" "2012-01-03 09:32:00" "2012-01-03 09:33:00" ...
> nrow(myxts)
[1] 7429
> head(myxts)
Open High Low Close
2012-01-03 09:30:00 4092500 4098500 4091100 4098500
2012-01-03 09:31:00 4098500 4099500 4092000 4092000
2012-01-03 09:32:00 4091500 4095000 4090000 4090200
2012-01-03 09:33:00 4090300 4096400 4090300 4094900
2012-01-03 09:34:00 4095200 4100000 4095200 4099900
2012-01-03 09:35:00 4100000 4100000 4096500 4097500

如何保留 myxts 尺寸?

最佳答案

这就是 apply 记录下来要做的事情。来自?申请:

Value:

 If each call to ‘FUN’ returns a vector of length ‘n’, then ‘apply’
returns an array of dimension ‘c(n, dim(X)[MARGIN])’ if ‘n > 1’.

在您的情况下,'n'=48(因为您正在循环遍历行),因此apply将返回维度c(48 ,7429)

另请注意,myxts.2 不是 xts 对象。这是一个常规数组。您有几个选择:

  1. 在重新创建 xts 对象之前转置 apply 的结果:

    data(sample_matrix)
    myxts <- as.xts(sample_matrix)
    dim(myxts) # [1] 180 4
    myxts.2 <- apply(myxts, 1 , identity)
    dim(myxts.2) # [1] 4 180
    myxts.2 <- xts(t(apply(myxts, 1 , identity)), index(myxts))
    dim(myxts.2) # [1] 180 4
  2. 对您的函数进行向量化,以便它对 xts 的所有行进行操作对象并返回一个 xts 对象。那你就不用担心关于申请

最后,请开始提供可重现的示例。这并不难,而且让人们更容易提供帮助。我在上面提供了一个示例,希望您可以在以下问题中使用它。

关于r - 为什么 apply() 返回转置的 xts 矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9521260/

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