我目前在R中为穷举搜索模型实现accucay函数时遇到问题。 我已经开发了以下代码,但是给了我一个错误,那就是参数不正确
首先,我在R中使用regsubests()对给定的数据实施了详尽搜索。并打印摘要 现在,我的任务是使用R中的accurcay()来确定预测精度度量,而我正面临错误
#exhaustive search approach
#implement full search regression
search.model<-regsubsets(FARE~.,data = vdata,nbest = 1,nvmax = NULL,method="exhaustive")
options(scipen = 999)
summary(search.model)
#----------------------------------------#
#use forecast package to determine predictive accuracy measures
#use forecast package to determine predcitive accuracy measures
install.packages('forecast', dependencies = TRUE)
library('forecast')
#prediction accuracy measures
summary(search.model.predict)
summary(accuracy(search.model.predict, vdata$FARE))
准确性错误。默认值(search.model.predict,vdata $ FARE): 第一个参数应该是预测对象或时间序列。