Nothing
gpComputeM <-
function(model) {
## Remove mean function value from m (if mean function present).
if ("meanFunction" %in% names(model) && length(model$meanFunction)>0)
m = model$y - modelOut(model$meanFunction, model$X)
else
m = model$y
## Remove bias and apply scale.
for (i in 1:model$d) {
m[,i] = m[,i] - model$bias[i]
if (model$scale[i]>0) {
m[,i] = m[,i]/model$scale[i]
}
}
return(m)
}
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.