Nothing
QR.mm = function(X, y, tau, beta, maxit, toler)
{
if(missing(toler)){
toler = 1e-3
}
if(missing(maxit))
{
maxit = 200
}
n=dim(X)[1]
x=cbind(rep(1,n),X)
if(missing(beta)){
beta=solve(t(x)%*%x,t(x)%*%y)
}
betah=QRMMCPP(X,y,beta,toler,maxit,tau)
beta=matrix(betah[-1])
b=betah[1]
return(list(beta=beta,b=b))
}
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.