https://github.com/cran/Epi
Raw File
Tip revision: c469ae980662892c5bb1d1210126fdbb74d31021 authored by Bendix Carstensen on 24 December 2009, 10:41:52 UTC
version 1.1.10
Tip revision: c469ae9
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