https://github.com/cran/Epi
Raw File
Tip revision: e6283ed10f9df46e028f91f182735309eaefa469 authored by Bendix Carstensen on 22 November 2009, 16:10:57 UTC
version 1.1.9
Tip revision: e6283ed
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