-
Notifications
You must be signed in to change notification settings - Fork 0
/
regression-problems.qmd
687 lines (537 loc) · 17.4 KB
/
regression-problems.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
# 回归问题 {#sec-regression-problems}
::: hidden
$$
\def\bm#1{{\boldsymbol #1}}
$$
:::
```{r}
#| echo: false
source("_common.R")
```
```{r}
#| message: false
library(MASS)
library(pls) # PC / PLS
library(glmnet) # 惩罚回归
library(ncvreg) # MCP / SCAD
library(lars) # LAR
library(abess) # Best subset
library(kernlab) # 基于核的支持向量机 ksvm
library(nnet) # 神经网络 nnet
library(rpart) # 决策树
library(randomForest) # 随机森林
library(xgboost) # 梯度提升
library(lattice)
# Root Mean Squared Error 均方根误差
rmse <- function(y, y_pred) {
sqrt(mean((y - y_pred)^2))
}
```
本章基于波士顿郊区房价数据集 Boston 介绍处理回归问题的 10 种方法。数据集 Boston 来自 R 软件内置的 **MASS** 包,一共 506 条记录 14 个变量,由 Boston Standard Metropolitan Statistical Area (SMSA) 在 1970 年收集。
```{r}
data("Boston", package = "MASS")
str(Boston)
```
14 个变量的含义如下:
- crim: 城镇人均犯罪率 per capita crime rate by town
- zn: 占地面积超过25,000平方尺的住宅用地比例 proportion of residential land zoned for lots over 25,000 sq.ft.
- indus: 每个城镇非零售业务的比例 proportion of non-retail business acres per town.
- chas: 查尔斯河 Charles River dummy variable (= 1 if tract bounds river; 0 otherwise).
- nox: 氮氧化物浓度 nitrogen oxides concentration (parts per 10 million).
- rm: 每栋住宅的平均房间数量 average number of rooms per dwelling. 容积率
- age: 1940年以前建造的自住单位比例 proportion of owner-occupied units built prior to 1940. 房龄
- dis: 到波士顿五个就业中心的加权平均值 weighted mean of distances to five Boston employment centres. 商圈
- rad: 径向高速公路可达性指数 index of accessibility to radial highways. 交通
- tax: 每10,000美元的全额物业税率 full-value property-tax rate per \$10,000. 物业
- ptratio: 城镇的师生比例 pupil-teacher ratio by town. 教育
- black: 城镇黑人比例 $1000(Bk - 0.63)^2$ where Bk is the proportion of blacks by town. 安全
- lstat: 较低的人口状况(百分比)lower status of the population (percent).
- medv: 自住房屋的中位数为 1000 美元 median value of owner-occupied homes in \$1000s. 房价,这是响应变量。
## 线性回归 {#sec-linear-regressions}
对于线性回归问题,为了处理变量之间的相关关系,衍生出许多处理办法。有的办法是线性的,有的办法是非线性的。
### 最小二乘回归 {#sec-ordinary-least-square-regression}
$$
\mathcal{L}(\bm{\beta}) = \sum_{i=1}^{n}(y_i - \bm{x}_i^{\top}\bm{\beta})^2
$$
```{r}
fit_lm <- lm(medv ~ ., data = Boston)
summary(fit_lm)
```
### 逐步回归 {#sec-stepwise-regression}
逐步回归是筛选变量,有向前、向后和两个方向同时进行三个方法。
- `direction = "both"` 双向
- `direction = "backward"` 向后
- `direction = "forward"` 向前
```{r}
fit_step <- step(fit_lm, direction = "both", trace = 0)
summary(fit_step)
```
### 偏最小二乘回归 {#sec-partial-least-square-regression}
偏最小二乘回归适用于存在多重共线性问题或变量个数远大于样本量的情况。
10 折交叉验证,`ncomp = 6` 表示 6 个主成分,拟合方法 `kernelpls` 表示核算法,`validation = "CV"` 表示采用交叉验证的方式调整参数。
```{r}
fit_pls <- pls::plsr(medv ~ ., ncomp = 6, data = Boston, validation = "CV")
summary(fit_pls)
```
交叉验证的方法还可选留一交叉验证 `validation = "LOO"` 。预测的均方根误差 RMSEP 来评估交叉验证的结果。
```{r}
#| label: fig-pls
#| fig-cap: RMSE 随成分数量的变化
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
pls::validationplot(fit_pls, val.type = "RMSEP")
```
### 主成分回归 {#sec-principal-component-regression}
主成分回归采用降维的方法处理高维和多重共线性问题。
10 折交叉验证,6 个主成分,拟合方法 `svdpc` 表示奇异值分解算法。
```{r}
fit_pcr <- pls::pcr(medv ~ ., ncomp = 6, data = Boston, validation = "CV")
summary(fit_pcr)
```
## 惩罚回归 {#sec-penalty-regression}
本节主要介绍 4 个 R 包的使用,分别是 **glmnet** 包 [@Friedman2010]、 **ncvreg** 包 [@Breheny2011] 、 **lars** 包 [@Efron2004] 和 **abess** 包 [@abess2022]。
| R 包 | 惩罚方法 | 函数实现 |
|------------|-------------------|--------------------------------|
| **glmnet** | 岭回归 | `glmnet(...,alpha = 0)` |
| **glmnet** | Lasso 回归 | `glmnet(...,alpha = 1)` |
| **glmnet** | 弹性网络回归 | `glmnet(...,alpha)` |
| **glmnet** | 自适应 Lasso 回归 | `glmnet(...,penalty.factor)` |
| **glmnet** | 松驰 Lasso 回归 | `glmnet(...,relax = TRUE)` |
| **ncvreg** | MCP | `ncvreg(...,penalty = "MCP")` |
| **ncvreg** | SCAD | `ncvreg(...,penalty = "SCAD")` |
| **lars** | 最小角回归 | `lars(...,type = "lar")` |
| **abess** | 最优子集回归 | `abess()` |
: 惩罚回归的 R 包实现 {#tbl-penalty}
函数 `glmnet()` 的参数 `penalty.factor` 表示惩罚因子,默认值为全 1 向量,自适应 Lasso 回归中需要指定。弹性网络回归要求参数 `alpha` 介于 0-1 之间。
### 岭回归 {#sec-ridge-regression}
岭回归
$$
\mathcal{L}(\bm{\beta}) = \sum_{i=1}^{n}(y_i - \bm{x}_i^{\top}\bm{\beta})^2 + \lambda\|\bm{\beta}\|_2^2
$$
```{r}
library(glmnet)
fit_ridge <- glmnet(x = Boston[, -14], y = Boston[, "medv"], family = "gaussian", alpha = 0)
```
```{r}
#| label: fig-ridge-glmnet
#| fig-cap: 岭回归
#| fig-subcap:
#| - 回归系数的迭代路径
#| - 惩罚系数的迭代路径
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
#| layout-ncol: 2
plot(fit_ridge)
plot(fit_ridge$lambda,
ylab = expression(lambda), xlab = "迭代次数", main = "惩罚系数的迭代路径"
)
```
```{r}
fit_ridge$lambda[60]
coef(fit_ridge, s = 28.00535)
```
### Lasso 回归 {#sec-lasso-regression}
Lasso 回归
$$
\mathcal{L}(\bm{\beta}) = \sum_{i=1}^{n}(y_i - \bm{x}_i^{\top}\bm{\beta})^2 + \lambda\|\bm{\beta}\|_1
$$
```{r}
fit_lasso <- glmnet(x = Boston[, -14], y = Boston[, "medv"], family = "gaussian", alpha = 1)
```
```{r}
#| label: fig-lasso-glmnet
#| fig-cap: Lasso 回归
#| fig-subcap:
#| - 回归系数的迭代路径
#| - 惩罚系数的迭代路径
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
#| layout-ncol: 2
plot(fit_lasso)
plot(fit_lasso$lambda,
ylab = expression(lambda), xlab = "迭代次数",
main = "惩罚系数的迭代路径"
)
```
```{r}
fit_lasso$lambda[60]
coef(fit_lasso, s = 0.02800535)
```
### 弹性网络 {#sec-elastic-net-regression}
弹性网络 [@Zou2005]
$$
\mathcal{L}(\bm{\beta}) = \sum_{i=1}^{n}(y_i - \bm{x}_i^{\top}\bm{\beta})^2 + \lambda(\frac{1-\alpha}{2}\|\bm{\beta}\|_2^2 + \alpha \|\bm{\beta}\|_1)
$$
```{r}
fit_elasticnet <- glmnet(x = Boston[, -14], y = Boston[, "medv"], family = "gaussian")
```
```{r}
#| label: fig-elasticnet-glmnet
#| fig-cap: 弹性网络
#| fig-subcap:
#| - 回归系数的迭代路径
#| - 惩罚系数的迭代路径
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
#| layout-ncol: 2
plot(fit_elasticnet)
plot(fit_elasticnet$lambda,
ylab = expression(lambda), xlab = "迭代次数",
main = "惩罚系数的迭代路径"
)
```
```{r}
fit_elasticnet$lambda[60]
coef(fit_elasticnet, s = 0.02800535)
```
### 自适应 Lasso {#sec-adaptive-lasso}
自适应 Lasso [@Zou2006]
$$
\mathcal{L}(\bm{\beta}) = \sum_{i=1}^{n}(y_i - \bm{x}_i^{\top}\bm{\beta})^2 + \lambda_n\sum_{j=1}^{p}\frac{1}{w_j}|\beta_j|
$$
普通最小二乘估计或岭回归估计的结果作为适应性 Lasso 回归的权重。其中 $w_j = (|\hat{\beta}_{ols_j}|)^{\gamma}$ 或 $w_j = (|\hat{\beta}_{ridge_j}|)^{\gamma}$ , $\gamma$ 是一个用于调整自适应权重向量的正常数,一般建议的正常数是 0.5,1 或 2。
```{r}
# 岭权重 gamma = 1
g <- 1
set.seed(20232023)
## 岭回归
ridge_model <- cv.glmnet(
x = as.matrix(Boston[, -14]),
y = Boston[, 14], alpha = 0
)
ridge_coef <- as.matrix(coef(ridge_model, s = ridge_model$lambda.min))
ridge_weight <- 1 / (abs(ridge_coef[-1, ]))^g
## Adaptive Lasso
set.seed(20232023)
fit_adaptive_lasso <- cv.glmnet(
x = as.matrix(Boston[, -14]),
y = Boston[, 14], alpha = 1,
penalty.factor = ridge_weight # 惩罚权重
)
```
岭回归和自适应 Lasso 回归模型的超参数
```{r}
#| label: fig-adaptive-lasso
#| fig-width: 4
#| fig-height: 4
#| fig-showtext: true
#| fig-cap: 自适应 Lasso 回归模型的超参数选择
#| layout-ncol: 2
#| fig-subcap:
#| - 岭回归
#| - 自适应 Lasso 回归
plot(ridge_model)
plot(fit_adaptive_lasso)
```
$\lambda$ 超参数
```{r}
fit_adaptive_lasso$lambda.min
```
自适应 Lasso 回归参数
```{r}
coef(fit_adaptive_lasso, s = fit_adaptive_lasso$lambda.min)
```
预测
```{r}
pred_medv_adaptive_lasso <- predict(
fit_adaptive_lasso, newx = as.matrix(Boston[, -14]),
s = fit_adaptive_lasso$lambda.min, type = "response"
)
```
预测的均方根误差
```{r}
rmse(Boston[, 14], pred_medv_adaptive_lasso)
```
### 松弛 Lasso {#sec-relaxed-lasso}
Lasso 回归倾向于将回归系数压缩到 0,松弛 Lasso
$$
\hat{\beta}_{relax}(\lambda,\gamma) = \gamma \hat{\beta}_{lasso}(\lambda) + (1 - \gamma)\hat{\beta}_{ols}(\lambda)
$$
其中,$\gamma \in[0,1]$ 是一个超参数。
```{r}
fit_relax_lasso <- cv.glmnet(
x = as.matrix(Boston[, -14]),
y = Boston[, "medv"], relax = TRUE
)
```
```{r}
#| label: fig-relax-lasso
#| fig-cap: "回归系数的迭代路径"
#| fig-width: 6
#| fig-height: 5
#| fig-showtext: true
plot(fit_relax_lasso)
```
CV 交叉验证筛选出来的超参数 $\lambda$ 和 $\gamma$ ,$\gamma = 0$ 意味着松弛 Lasso 退化为 OLS 估计
```{r}
fit_relax_lasso$relaxed$lambda.min
fit_relax_lasso$relaxed$gamma.min
```
松弛 Lasso 回归系数与 OLS 估计的结果一样
```{r}
coef(fit_relax_lasso, s = "lambda.min", gamma = "gamma.min")
```
松弛 Lasso 预测
```{r}
pred_medv_relax_lasso <- predict(
fit_relax_lasso,
newx = as.matrix(Boston[, -14]),
s = "lambda.min", gamma = "gamma.min"
)
```
```{r}
rmse(Boston[, 14], pred_medv_relax_lasso)
```
### MCP {#sec-mcp-regression}
**ncvreg** 包 [@Breheny2011] 提供额外的两种非凸/凹惩罚类型,分别是 MCP (minimax concave penalty)和 SCAD(smoothly clipped absolute deviation)。
```{r}
library(ncvreg)
fit_mcp <- ncvreg(X = Boston[, -14], y = Boston[, "medv"], penalty = "MCP")
```
```{r}
#| label: fig-mcp-ncvreg
#| fig-cap: "回归系数的迭代路径"
#| fig-width: 5
#| fig-height: 4
#| fig-showtext: true
#| par: true
plot(fit_mcp)
```
回归系数
```{r}
coef(fit_mcp, lambda = 0.85)
summary(fit_mcp, lambda = 0.85)
```
10 折交叉验证,选择超参数 $\lambda$
```{r}
fit_mcp_cv <- cv.ncvreg(
X = Boston[, -14], y = Boston[, "medv"],
penalty = "MCP", seed = 20232023
)
summary(fit_mcp_cv)
```
在 $\lambda = 0.1362$ 时,交叉验证的误差最小,非 0 回归系数 11 个。
```{r}
#| label: fig-mcp-lambda
#| fig-cap: "惩罚系数的迭代路径"
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
plot(fit_mcp_cv)
```
### SCAD {#sec-scad-regression}
```{r}
fit_scad <- ncvreg(X = Boston[, -14], y = Boston[, "medv"], penalty = "SCAD")
```
```{r}
#| label: fig-scad-ncvreg
#| fig-cap: "回归系数的迭代路径"
#| fig-width: 5
#| fig-height: 4
#| fig-showtext: true
#| par: true
plot(fit_scad)
```
```{r}
coef(fit_scad, lambda = 0.85)
summary(fit_scad, lambda = 0.85)
```
10 折交叉验证,选择超参数 $\lambda$
```{r}
fit_scad_cv <- cv.ncvreg(
X = Boston[, -14], y = Boston[, "medv"],
penalty = "SCAD", seed = 20232023
)
summary(fit_scad_cv)
```
在 $\lambda = 0.1362$ 时,交叉验证的误差最小,非 0 回归系数 11 个。
```{r}
#| label: fig-scad-lambda
#| fig-cap: "惩罚系数的迭代路径"
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
plot(fit_scad_cv)
```
### 最小角回归 {#sec-least-angle}
**lars** 包提供 Lasso 回归和最小角(Least Angle)回归[@Efron2004]。
```{r}
#| message: false
library(lars)
# Lasso 回归
fit_lars_lasso <- lars(
x = as.matrix(Boston[, -14]), y = as.matrix(Boston[, "medv"]),
type = "lasso", trace = FALSE, normalize = TRUE, intercept = TRUE
)
# LAR 回归
fit_lars_lar <- lars(
x = as.matrix(Boston[, -14]), y = as.matrix(Boston[, "medv"]),
type = "lar", trace = FALSE, normalize = TRUE, intercept = TRUE
)
```
参数 `type = "lasso"` 表示采用 Lasso 回归,参数 `trace = FALSE` 表示不显示迭代过程,参数 `normalize = TRUE` 表示每个变量都标准化,使得它们的 L2 范数为 1,参数 `intercept = TRUE` 表示模型中包含截距项,且不参与惩罚。
Lasso 和最小角回归系数的迭代路径见下图。
```{r}
#| label: fig-lars-lasso
#| fig-width: 4
#| fig-height: 4
#| fig-showtext: true
#| fig-cap: Lasso 和最小角回归系数的迭代路径
#| layout-ncol: 2
#| fig-subcap:
#| - Lasso 回归
#| - 最小角回归
plot(fit_lars_lasso)
plot(fit_lars_lar)
```
采用 10 折交叉验证筛选变量
```{r}
#| label: fig-cv-lars
#| fig-cap: 交叉验证均方误差的变化
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
#| layout-ncol: 2
#| fig-subcap:
#| - Lasso 回归
#| - 最小角回归
set.seed(20232023)
cv.lars(
x = as.matrix(Boston[, -14]), y = as.matrix(Boston[, "medv"]),
type = "lasso", trace = FALSE, plot.it = TRUE, K = 10
)
set.seed(20232023)
cv.lars(
x = as.matrix(Boston[, -14]), y = as.matrix(Boston[, "medv"]),
type = "lar", trace = FALSE, plot.it = TRUE, K = 10
)
```
### 最优子集回归 {#sec-best-subset}
$$
\mathcal{L}(\bm{\beta}) = \sum_{i=1}^{n}(y_i - \bm{x}_i^{\top}\bm{\beta})^2 + \lambda\|\bm{\beta}\|_0
$$
最优子集回归,添加 L0 惩罚,[abess](https://github.com/abess-team/abess) 包 [@abess2022] 支持线性回归、泊松回归、逻辑回归、多项回归等模型,可以非常高效地做最优子集筛选变量。
```{r}
library(abess)
fit_abess <- abess(medv ~ ., data = Boston, family = "gaussian",
tune.type = "cv", nfolds = 10, seed = 20232023)
```
参数 `tune.type = "cv"` 表示交叉验证的方式确定超参数来筛选变量,参数 `nfolds = 10` 表示将数据划分为 10 份,采用 10 折交叉验证,参数 `seed` 用来设置随机数,以便可重复交叉验证 CV 的结果。惩罚系数的迭代路径见下左图。使用交叉验证筛选变量个数,不同的 support size 表示进入模型中的变量数目。
```{r}
#| label: fig-abess-lambda
#| fig-cap: 最优子集回归
#| fig-subcap:
#| - 惩罚系数的迭代路径
#| - 交叉验证筛选变量个数
#| fig-width: 5
#| fig-height: 5
#| fig-showtext: true
#| par: true
#| layout-ncol: 2
plot(fit_abess, label = TRUE, main = "惩罚系数的迭代路径")
plot(fit_abess, type = "tune", main = "交叉验证筛选变量个数")
```
从上右图可以看出,选择 6 个变量是比较合适的,作为最终的模型。
```{r}
best_model <- extract(fit_abess, support.size = 6)
# 模型的结果,惩罚参数值、各个变量的系数
str(best_model)
```
## 支持向量机 {#sec-svm-regression}
```{r}
library(kernlab)
fit_ksvm <- ksvm(medv ~ ., data = Boston)
fit_ksvm
```
```{r}
# 预测
pred_medv_svm <- predict(fit_ksvm, newdata = Boston)
# RMSE
rmse(Boston$medv, pred_medv_svm)
```
## 神经网络 {#sec-nnet-regression}
单隐藏层的神经网络
```{r}
library(nnet)
fit_nnet <- nnet(medv ~ .,
data = Boston, trace = FALSE,
size = 12, # 隐藏层单元数量
maxit = 500, # 最大迭代次数
linout = TRUE, # 线性输出单元
decay = 0.01 # 权重下降的参数
)
pred_medv_nnet <- predict(fit_nnet, newdata = Boston[, -14], type = "raw")
rmse(Boston$medv, pred_medv_nnet)
```
## 决策树 {#sec-rpart-regression}
```{r}
library(rpart)
fit_rpart <- rpart(medv ~ .,
data = Boston, control = rpart.control(minsplit = 5)
)
pred_medv_rpart <- predict(fit_rpart, newdata = Boston[, -14])
rmse(Boston$medv, pred_medv_rpart)
```
```{r}
#| label: fig-Boston-rpart
#| fig-width: 5
#| fig-height: 4
#| fig-cap: 分类回归树
#| fig-showtext: true
#| par: true
library(rpart.plot)
rpart.plot(fit_rpart)
```
## 随机森林 {#sec-rf-regression}
```{r}
library(randomForest)
fit_rf <- randomForest(medv ~ ., data = Boston)
print(fit_rf)
pred_medv_rf <- predict(fit_rf, newdata = Boston[, -14])
rmse(Boston$medv, pred_medv_rf)
```
## 集成学习 {#sec-boosting-regression}
```{r}
# 输入数据 x 和采样比例 prop
add_mark <- function(x = Boston, prop = 0.7) {
idx <- sample(x = nrow(x), size = floor(nrow(x) * prop))
rbind(
cbind(x[idx, ], mark = "train"),
cbind(x[-idx, ], mark = "test")
)
}
set.seed(20232023)
Boston_df <- add_mark(Boston, prop = 0.7)
library(data.table)
Boston_dt <- as.data.table(Boston_df)
# 训练数据
Boston_train <- list(
data = as.matrix(Boston_dt[Boston_dt$mark == "train", -c("mark", "medv")]),
label = as.matrix(Boston_dt[Boston_dt$mark == "train", "medv"])
)
# 测试数据
Boston_test <- list(
data = as.matrix(Boston_dt[Boston_dt$mark == "test", -c("mark", "medv")]),
label = as.matrix(Boston_dt[Boston_dt$mark == "test", "medv"])
)
```
```{r}
library(xgboost)
Boston_xgb <- xgboost(
data = Boston_train$data,
label = Boston_train$label,
objective = "reg:squarederror", # 学习任务
eval_metric = "rmse", # 评估指标
nrounds = 6
)
```
```{r}
# ?predict.xgb.Booster
Boston_pred <- predict(object = Boston_xgb, newdata = Boston_test$data)
# RMSE
rmse(Boston_test$label, Boston_pred)
```