當一個數據幀警告計算預測值
x
Date Val
1/1/2012 7
2/1/2012 9
3/1/2012 20
4/1/2012 24
5/1/2012 50
a <- seq(as.Date(tail(x, 1)$Date), by="month", length=5)
a <- data.frame(a)
x.lm <- lm(x$Val ~ x$Date)
x.pre<-predict(x.lm, newdata=a)
我得到這個工作ERRO:
Warning message:
'newdata' had 5 rows but variable(s) found have 29 rows
我究竟做錯了什麼?
這裏是dput輸出:
dput(x)
structure(list(Date = structure(c(14610, 14641, 14669, 14700,
14730, 14761, 14791, 14822, 14853, 14883, 14914, 14944, 14975,
15006, 15034, 15065, 15095, 15126, 15156, 15187, 15218, 15248,
15279, 15309, 15340, 15371, 15400, 15431, 15461), class = "Date"),
Val = c(45, 51, 56, 56, 59, 60, 60, 60, 64, 65, 75, 73, 74,
80, 87, 91, 92, 96, 109, 108, 123, 129, 133, 143, 127, 127,
123, 121, 130)), .Names = c("Date", "Val"), row.names = c(NA,
29L), class = "data.frame")
你的第一行中的'z'是否應該是'x'?否則我們不知道'z'是什麼。你沒有收到錯誤,你會收到警告。另外,你向我們展示的任何東西都有29行,所以我們不能重複這一點。使用'dput'向我們顯示您的實際數據。 – Justin 2012-08-03 20:47:27
對不起,是的,它是x。我只是更新它 – user1471980 2012-08-03 20:50:32