Nothing
estimation_lin = function(obj,coefficient){
coeff.est = c()
posterior = obj$coefficients
for(j in 1:dim(posterior$GS.beta)[2])
{
t1=as.matrix(posterior$GS.beta[,j])
coeff.est[j] = stats::median(t1)
}
MSE = mean((coeff.est-coefficient)^2)
error.est = list(MSE = MSE)
est_lin = list(error=error.est, coeff.est=coeff.est)
return(est_lin)
}
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.