我已经看到了autoplot不支持的对象的其他错误,但没有类型为numeric的错误。 example1 example2
假设我创建了一些随机数
require(ggfortify)
require(ggplot2)
data <- c(.034,0343,0343,.0653,.034,0343,0343,.0653)
autoplot(data)
Error: Objects of type numeric not supported by autoplot.
我将不胜感激任何帮助!
答案 0 :(得分:0)
数据必须是时间序列格式而不是数字
autoplot(ts(data))