Nothing
      RESIDT <-
function(x,b)
{
    x <- as.matrix(x)
    n <- nrow(x)
    p <- length(b)-2
    xmat <- matrix(1,nrow=n-p,ncol=p+2)
    xmat[,p+2] <- (p+1):n
    index <- p:(n-1)
    for(i in 1:p)
    {xmat[,i] <- x[index,1]
    index <- index-1
    }
   
    y <- x[(p+1):n,1]
    e <- y - xmat %*% b
    return(e-mean(e))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.