Nothing
get_predictions_bamlss <- function(model, data_grid, linv, ...) {
prdat <- suppressMessages(stats::predict(
object = model,
newdata = data_grid,
model = "mu",
type = "link"
))
data_grid$predicted <- linv(as.vector(prdat))
data_grid$conf.low <- NA
data_grid$conf.high <- NA
data_grid
}
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.