我在R中使用带有以下代码的软件包“ lars”:
> library(lars)
> set.seed(3)
> n <- 1000
> x1 <- rnorm(n)
> x2 <- x1+rnorm(n)*0.5
> x3 <- rnorm(n)
> x4 <- rnorm(n)
> x5 <- rexp(n)
> y <- 5*x1 + 4*x2 + 2*x3 + 7*x4 + rnorm(n)
> x <- cbind(x1,x2,x3,x4,x5)
> cor(cbind(y,x))
y x1 x2 x3 x4 x5
y 1.00000000 0.74678534 0.743536093 0.210757777 0.59218321 0.03943133
x1 0.74678534 1.00000000 0.892113559 0.015302566 -0.03040464 0.04952222
x2 0.74353609 0.89211356 1.000000000 -0.003146131 -0.02172854 0.05703270
x3 0.21075778 0.01530257 -0.003146131 1.000000000 0.05437726 0.01449142
x4 0.59218321 -0.03040464 -0.021728535 0.054377256 1.00000000 -0.02166716
x5 0.03943133 0.04952222 0.057032700 0.014491422 -0.02166716 1.00000000
> m <- lars(x,y,"step",trace=T)
Forward Stepwise sequence
Computing X'X .....
LARS Step 1 : Variable 1 added
LARS Step 2 : Variable 4 added
LARS Step 3 : Variable 3 added
LARS Step 4 : Variable 2 added
LARS Step 5 : Variable 5 added
Computing residuals, RSS etc .....
我有一个包含5个连续变量的数据集,我正在尝试将模型拟合为单个(因变量)y。我的两个预测变量彼此高度相关(x1,x2)。
如上例所示,带有“ stepwise”选项的lars函数首先选择与y最相关的变量。进入模型的下一个变量是与残差最相关的变量。确实是x4:
> round((cor(cbind(resid(lm(y~x1)),x))[1,3:6]),4)
x2 x3 x4 x5
0.1163 0.2997 0.9246 0.0037
现在,如果我执行“套索”选项:
> m <- lars(x,y,"lasso",trace=T)
LASSO sequence
Computing X'X ....
LARS Step 1 : Variable 1 added
LARS Step 2 : Variable 2 added
LARS Step 3 : Variable 4 added
LARS Step 4 : Variable 3 added
LARS Step 5 : Variable 5 added
它在前两个步骤中将两个相关变量都添加到模型中。这与我在几篇论文中所读的相反。然后大多数人说,如果存在一组变量之间的相关性非常高,则“套索”倾向于从该组中随机选择一个变量。
有人可以提供这种行为的例子吗?或解释一下,为什么将我的变量x1,x2依次(一起)添加到模型中?
R
OP正在发出的呼叫以及他提供的相关输出,您会发现他确实在使用套索。如您所知,您可以对lars算法进行一些细微调整,从而得出套索正则化路径。