Nothing
betadraw_rmse = function(betadraw, beta_true) {
rmse = c()
for (i in 1:dim(betadraw)[1]) #iterate over n
{
squared_error = (beta_true[i, ] - betadraw[i,,])^2 # 5x80
sum_squared_error = colSums(squared_error)
rmse[i] = sqrt(mean(sum_squared_error))
}
return(mean(rmse))
}
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.