https://github.com/cran/Epi
Raw File
Tip revision: 4b16c017957e9134e7631b9ed628ff7df8e0886e authored by Bendix Carstensen on 22 September 2009, 00:00:00 UTC
version 1.1.7
Tip revision: 4b16c01
detrend.R
detrend <-
function( M, t, weight=rep(1,nrow(M)) )
{
Thin.col <-
function ( X, tol = 1e-06)
# Function to remove lin. dep. columns from a matrix
# (stolen from PD, existed at some time as stats:::Thin.col )
{
  QR <- qr(X, tol = tol, LAPACK = FALSE)
  X[, QR$pivot[seq(length = QR$rank)], drop = FALSE]
}
# Now detrend the matrix using the weighted inner product.
  Thin.col( projection.ip( cbind( 1, t ), M , orth = TRUE, weight = weight ) )
}
back to top