Nothing
generate_Y_mean.lm <- function(true_mean, theta, ...){
stopifnot(is(true_mean, "lm"))
if(is.null(true_mean[["x"]]) || is.null(true_mean[["y"]]))
true_mean <- update(true_mean, x = TRUE, y = TRUE)
tX <- t(true_mean[["x"]])
return(colSums(theta*tX))
}
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.