gpt4 book ai didi

r - autoplot 不接受 ts 对象

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

我正在创建一个 ts 对象,然后尝试通过自动绘图运行它。执行给我一个错误:

autoplot(pts, facets = TRUE) Error: Objects of type mts/ts/matrix not supported by autoplot.

我已经检查了对象的类型,它是 ts 并且 autoplot 应该从 ts 对象中绘制出图形。我还尝试运行其他内置 ts 对象 (USAccDeaths) ,但它给了我同样的错误

库(ggplot2)

pts <- ts(data = Popcopys[,-1], start = c(2006,1),频率 = 1 )

自动绘图(分)自动绘图(USAccDeaths)

预期会有 TS 的图,但我得到的是这个错误:

autoplot(pts) Error: Objects of type mts/ts/matrix not supported by autoplot. autoplot(USAccDeaths) Error: Objects of type ts not supported by autoplot.

最佳答案

这有效:

library(ggplot2)
library(ggfortify)
autoplot(USAccDeaths)

已关注 https://cran.r-project.org/web/packages/ggfortify/vignettes/plot_ts.html :
“{ggfortify} 让 {ggplot2} 知道如何解释 ts 对象”

关于r - autoplot 不接受 ts 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55635444/

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