autoplot不支持类型数字

时间:2017-03-01 16:55:24

标签: r ggplot2

我已经看到了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.

我将不胜感激任何帮助!

1 个答案:

答案 0 :(得分:0)

数据必须是时间序列格式而不是数字

autoplot(ts(data))