warning when calculating predicted values

我的梦境 提交于 2019-11-30 20:19:21

Your variable names, as stored in the x.lm model, refer to the x dataframe. There are no variables of the same names in a, so it will use those 29 from x again, which is probably not what you wanted, thus the warning. You can do the following to always use an unqualified variable named Date in the model:

a <- seq(as.Date(tail(x, 1)$Date), by="month", length=5)
a <- data.frame(Date = a)
x.lm <- lm(Val ~ Date, data=x)
x.pre<-predict(x.lm, newdata=a)

Your data.frame a has a column named a. You created your model with columns named Val and Date so that is what its looking for.

when you make your data.frame a name that column Date and you're good to go:

a <- data.frame(Date=a)

Then it runs without the warning.

Per comment:

Edit your lm call to be:

lm(Val ~ Date, data=x)
Roxana Tesileanu

If you can't make predict.lm() work, then you should try to write your own function using function():

yourown_function<- function(predictor1, predictor2,...){intercept+b1*predictor1+b2*predictor2+...}

use yourown_function to predict from any new dataframe:

newvalues<- yourown_function(predictor1=data.frame$predictor1, predictor2=data.frame$predictor2,....)

using the new values, you can compute residuals, MSE, etc...

Instead of x.lm <- lm(x$Val ~ x$Date, data = x) use x.lm <- lm(Val ~ Date, data = x). Removing dataset name before variable name in the lm function should help.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!