如何将timeDate列表合并到一个timeDate中?

时间:2017-02-04 09:01:06

标签: r finance

我可以为New York Exchange生成timeDate个对象的列表。但是,大多数分析函数都需要一个timeDate个对象。基础数据表示为POSIXct,因此我不能像向量或列表一样附加它们。

怎么做?

library(timeDate)
x <- lapply(c(1885: 1886), holidayNYSE)
x

[[1]]
NewYork
[1] [1885-01-01] [1885-02-23] [1885-04-03] [1885-11-03] [1885-11-26] [1885-12-25]

[[2]]
NewYork
[1] [1886-01-01] [1886-02-22] [1886-04-23] [1886-05-31] [1886-07-05] [1886-11-02] [1886-11-25]

class(x[[1]])
[1] "timeDate"
attr(,"package")
[1] "timeDate"

class(x[[1]]@Data)
[1] "POSIXct" "POSIXt"

# ??? How to my two datetime objects ???

1 个答案:

答案 0 :(得分:1)

我们可以将do.callc

一起使用
x1 <- do.call(c, x)
x1
#NewYork
#[1] [1885-01-01] [1885-02-23] [1885-04-03] [1885-11-03] [1885-11-26] [1885-12-25] [1886-01-01] [1886-02-22] [1886-04-23] [1886-05-31] [1886-07-05] [1886-11-02]
#[13] [1886-11-25]

str(x1)
#Formal class 'timeDate' [package "timeDate"] with 3 slots
#  ..@ Data     : POSIXct[1:13], format: "1885-01-01 05:00:00" "1885-02-23 05:00:00" "1885-04-03 05:00:00" "1885-11-03 05:00:00" ...
#  ..@ format   : chr "%Y-%m-%d"
#  ..@ FinCenter: chr "NewYork"

并且OP list的结构是

str(x)
#List of 2
#$ :Formal class 'timeDate' [package "timeDate"] with 3 slots
#  .. ..@ Data     : POSIXct[1:6], format: "1885-01-01 05:00:00" "1885-02-23 05:00:00" "1885-04-03 05:00:00" "1885-11-03 05:00:00" ...
#  .. ..@ format   : chr "%Y-%m-%d"
#  .. ..@ FinCenter: chr "NewYork"
# $ :Formal class 'timeDate' [package "timeDate"] with 3 slots
#   .. ..@ Data     : POSIXct[1:7], format: "1886-01-01 05:00:00" "1886-02-22 05:00:00" "1886-04-23 05:00:00" "1886-05-31 05:00:00" ...
#  .. ..@ format   : chr "%Y-%m-%d"
#  .. ..@ FinCenter: chr "NewYork"