https://github.com/cran/Epi
Raw File
Tip revision: 18b6abd7720cf34e0f34e4c63478dfca33bacea6 authored by Bendix Carstensen on 10 January 2007, 00:00:00 UTC
version 0.7.0
Tip revision: 18b6abd
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