https://github.com/cran/pracma
Raw File
Tip revision: c79a04b5074656b36e591191eb8137b70a349932 authored by Hans W. Borchers on 30 June 2014, 00:00:00 UTC
version 1.7.0
Tip revision: c79a04b
odregress.R
##
##  o d r l i n r e g . R  Orthogonal Distance Regression
##


# Linear orthogonal distance regression method
odregress <- function(x, y) {
    stopifnot(is.numeric(x), is.numeric(y))
    
    Z <- cbind(x, y)
    n <- nrow(Z)      # no. of data points
    m <- ncol(Z) - 1  # no. of independent variables

    meanZ <- repmat(apply(Z, 2, mean), n, 1)
    svdZ <- svd(Z - meanZ)
    V <- svdZ$v

    a <- -V[1:m, m+1] / V[m+1, m+1]
    b <- mean(Z %*% V[, m+1]) / V[m+1, m+1]

    # Fitted values
    yfit <- cbind(x, 1) %*% c(a, b)
    resd <- y - yfit

    # orthogonal distance
    normal <- V[, m+1]
    err <- abs((Z - meanZ) %*% normal)
    ssq <- sum(err^2)

    return( list(coeff = c(a, b), ssq = ssq, err = err, 
                 fitted = yfit, resid = resd, normal = normal) )
}
back to top