Nothing
calculate_error <- function(theta_hat, theta_test, alpha_hat, alpha_test, delta_hat, delta_test){
theta_error <- sum((theta_hat - theta_test)^2)
alpha_error <- sum((alpha_hat - alpha_test)^2)
delta_error <- sum((delta_hat - delta_test)^2)
error <- max(theta_error,alpha_error,delta_error)
return(error)
}
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.