当我用一次观察运行回归时,为什么`fastLm()`返回结果?

Kon*_*nos 1 r armadillo rcpp

fastLm()当我用一次观察进行回归时,为什么返回结果?

在下面,为什么不lm()fastLm()结果相等?

library(Rcpp)
library(RcppArmadillo)
library(data.table)
set.seed(1)
DT <- data.table(y = rnorm(5), x1 = rnorm(5), x2 = rnorm(5), my.key = 1:5)
#             y         x1         x2 my.key
# 1: -0.6264538 -0.8204684  1.5117812      1
# 2:  0.1836433  0.4874291  0.3898432      2
# 3: -0.8356286  0.7383247 -0.6212406      3
# 4:  1.5952808  0.5757814 -2.2146999      4
# 5:  0.3295078 -0.3053884  1.1249309      5

lm(y ~ 1 + x1 + x2, data = DT[my.key == 1])
# Coefficients:
# (Intercept)           x1           x2  
#     -0.6265           NA           NA

fastLm(X = model.matrix(y ~ 1 + x1 + x2, data = DT[my.key == 1]), y = DT[my.key == 1]$y)
# Coefficients:
# (Intercept)          x1          x2 
#    -0.15825     0.12984    -0.23924 

model.matrix(y ~ 1 + x1 + x2, data = DT[my.key == 1])
#   (Intercept)        x1       x2
#             1 -0.8204684 1.511781
# attr(,"assign")
# [1] 0 1 2

DT[my.key == 1]$y
# [1] -0.6264538
Run Code Online (Sandbox Code Playgroud)

当我使用整体时DT结果相同:

 all.equal(fastLm(X = model.matrix(y ~ 1 + x1 + x2, data = DT), y = DT$y)$coef, 
           lm.fit(x = model.matrix(y ~ 1 + x1 + x2, data = DT), y = DT$y)$coef)
# [1] TRUE
Run Code Online (Sandbox Code Playgroud)

RcppArmadillo具有修改过的fLmTwoCasts的库中我也得到了相同的行为:

src <- '
Rcpp::List fLmTwoCastsOnlyCoefficients(Rcpp::NumericMatrix Xr, Rcpp::NumericVector yr) {
    int n = Xr.nrow(), k = Xr.ncol();
    arma::mat X(Xr.begin(), n, k, false);
    arma::colvec y(yr.begin(), yr.size(), false);
    arma::colvec coef = arma::solve(X, y);
    return Rcpp::List::create(Rcpp::Named("coefficients")=trans(coef));
}
'
cppFunction(code=src, depends="RcppArmadillo")

XX <- model.matrix(y ~ 1 + x1 + x2, data = DT[my.key == 1])
YY <- DT[my.key == 1]$y
fLmTwoCastsOnlyCoefficients(XX, YY)$coef
#            [,1]      [,2]       [,3]
# [1,] -0.1582493 0.1298386 -0.2392384
Run Code Online (Sandbox Code Playgroud)

使用整个DT系数是相同的:

lm(y ~ 1 + x1 + x2, data = DT)$coef
# (Intercept)          x1          x2 
#   0.2587933  -0.7709158  -0.6648270

XX.whole <- model.matrix(y ~ 1 + x1 + x2, data = DT)
YY.whole <- DT$y
fLmTwoCastsOnlyCoefficients(XX.whole, YY.whole)
#           [,1]       [,2]      [,3]
# [1,] 0.2587933 -0.7709158 -0.664827
Run Code Online (Sandbox Code Playgroud)

Ben*_*ker 6

因为fastLm不担心等级不足; 这是你为速度付出的代价的一部分.

来自?fastLm:

... Armadillo可以比stats包中的函数更快地执行lm.fit之类的操作的原因是因为Armadillo使用QR分解的Lapack版本而stats包使用修改后的Linpack版本.因此,犰狳使用3级BLAS代码,而统计数据包使用1级BLAS.但是,Armadillo将失败,或者更糟糕的是,在秩不足的模型矩阵上产生完全错误的答案,而stats包中的函数将由于修改的Linpack代码而正确处理它们.

看看这里的代码,代码的内容是

 arma::colvec coef = arma::solve(X, y);
Run Code Online (Sandbox Code Playgroud)

这会进行QR分解.我们可以将lmFast结果与qr()基数R 匹配(这里我不仅使用基本R构造而不是依赖data.table):

set.seed(1)
dd <- data.frame(y = rnorm(5), 
      x1 = rnorm(5), x2 = rnorm(5), my.key = 1:5)

X <- model.matrix(~1+x1+x2, data=subset(dd,my.key==1))
qr(X,dd$y)
## $qr
##   (Intercept)         x1       x2
## 1           1 -0.8204684 1.511781
Run Code Online (Sandbox Code Playgroud)

你可以看一下代码,lm.fit()看看R在拟合线性模型时对等级缺陷的作用; 它所调用的基础BLAS算法通过旋转来实现QR ...

如果你想标记这些情况,我认为这样Matrix::rankMatrix()可以解决问题:

library(Matrix)
rankMatrix(X) < ncol(X)  ## TRUE
X1 <- model.matrix(~1+x1+x2, data=dd)
rankMatrix(X1) < ncol(X1)  ## FALSE
Run Code Online (Sandbox Code Playgroud)

  • FWIW RcppEigen包在其`fastLm()`示例中有一组更全面的分解.但就像Ben如此雄辩地说:"这是你为速度付出代价的一部分."_.我们给你足够的绳索来吊死自己.如果你想保护自己,保持自己,坚持使用`lm()`或`lm.fit()`,或创建一个混合'快速但安全'的版本. (2认同)