R: 为什么xts对象在调用transform()后会变成zoo对象?

发布于 2025-01-06 15:10:48 字数 184 浏览 0 评论 0原文

Transform() 从我的 xts 对象中删除类“xts”限定符:

> class(myxts)
[1] "xts" "zoo"
> myxts = transform(myxts, ABC = 1)
> class(myxts)
[1] "zoo"

这是为什么?

transform() removes the class "xts" qualifier from my xts object:

> class(myxts)
[1] "xts" "zoo"
> myxts = transform(myxts, ABC = 1)
> class(myxts)
[1] "zoo"

Why is that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不回头走下去 2025-01-13 15:10:48

没有用于 transform 的 xts 方法,因此将调度 Zoo 方法。 Zoo 方法显式创建一个新的 Zoo 对象。

> zoo:::transform.zoo
function (`_data`, ...) 
{
    if (is.null(dim(coredata(`_data`)))) 
        warning("transform() is only useful for matrix-based zoo series")
    zoo(transform.data.frame(data.frame(coredata(`_data`)), ...), 
        index(`_data`), attr(`_data`, "frequency"))
}
<environment: namespace:zoo>

您可以简单地将 transform 调用包装在 as.xts 中,或者您的示例可以编写为 myxts$ABC <- 1

There's no xts method for transform, so the zoo method is dispatched. The zoo method explicitly creates a new zoo object.

> zoo:::transform.zoo
function (`_data`, ...) 
{
    if (is.null(dim(coredata(`_data`)))) 
        warning("transform() is only useful for matrix-based zoo series")
    zoo(transform.data.frame(data.frame(coredata(`_data`)), ...), 
        index(`_data`), attr(`_data`, "frequency"))
}
<environment: namespace:zoo>

You could simply wrap your transform calls in as.xts, or your example could be written as myxts$ABC <- 1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文