R/residop.R

residop <-
function (A, B) 
{
    return(A - B %*% solve(t(B) %*% B) %*% t(B) %*% A)
}

Try the ruv package in your browser

Any scripts or data that you put into this service are public.

ruv documentation built on Aug. 31, 2019, 1:04 a.m.