假设您要评估一个简单的glm模型来预测经济数据系列。 请考虑以下代码:
library(caret)
library(ggplot2)
data(economics)
h <- 7
myTimeControl <- trainControl(method = "timeslice",
initialWindow = 24*h,
horizon = 12,
fixedWindow = TRUE)
fit.glm <- train(unemploy ~ pce + pop + psavert,
data = economics,
method = "glm",
preProc = c("center", "scale","BoxCox"),
trControl = myTimeControl)
假设用于列车公式的协变量是通过某些其他模型获得的值的预测。 这个简单的模型给出了以下结果:
Generalized Linear Model
574 samples
3 predictor
Pre-processing: centered (3), scaled (3), Box-Cox transformation (3)
Resampling: Rolling Forecasting Origin Resampling (12 held-out with a fixed
window)
Summary of sample sizes: 168, 168, 168, 168, 168, 168, ...
Resampling results:
RMSE Rsquared
1446.335 0.2958317
除了获得的不良结果(这只是一个例子)。 我想知道它是否正确:
如果我显示fit.glm摘要,我会获得:
Call:
NULL
Deviance Residuals:
Min 1Q Median 3Q Max
-5090.0 -1025.5 -208.1 833.4 4948.4
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 7771.56 64.93 119.688 < 2e-16 ***
pce 5750.27 1153.03 4.987 8.15e-07 ***
pop -1483.01 1117.06 -1.328 0.185
psavert 2932.38 144.56 20.286 < 2e-16 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
(Dispersion parameter for gaussian family taken to be 2420081)
Null deviance: 3999514594 on 573 degrees of freedom
Residual deviance: 1379446256 on 570 degrees of freedom
AIC: 10072
Number of Fisher Scoring iterations: 2
显示的参数是指最后一次训练的GLM还是“平均”参数? 我希望我已经足够清楚了。
答案 0 :(得分:0)
这种重采样方法与其他方法一样。使用训练数据的不同子集估计RMSE。请注意,它显示“Summary of sample sizes: 168, 168, 168, 168, 168, 168, ...
”。最终模型使用训练数据集的所有。
Rob的结果与这些之间的差异主要是由于平均绝对误差(MAE)和均方根误差(RMSE)之间的差异