Nothing
cqr.fit=function(X,y,tau,beta,method,maxit,toler,rho)
{
if(missing(method)){
cat("please input the method\n")
method=1
}
if(method=="mm")
return(cqr.mm(X,y,tau,beta,maxit,toler))
if(method=="cd")
return(cqr.cd(X,y,tau,beta,maxit,toler))
if(method=="ip")
return(cqr.ip(X,y,tau))
if(method=="admm")
return(cqr.admm(X,y,tau,rho,beta,maxit,toler))
}
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.