Nothing
#' @include get_predict.R
#' @rdname get_predict
#' @keywords internal
#' @export
get_predict.Learner <- function(model, newdata, type = NULL, ...) {
if (!is.null(type) && !type %in% model$predict_types) {
msg <- sprintf("Valid `type` values: %s", toString(model$predict_types))
stop_sprintf(msg)
}
out <- drop(stats::predict(model, newdata = newdata, predict_type = type))
out <- data.table(estimate = out)
out <- add_rowid(out, newdata)
return(out)
}
#' @include get_vcov.R
#' @rdname get_vcov
#' @export
get_vcov.Learner <- function(model, ...) {
return(FALSE)
}
#' @include sanity_model.R
#' @rdname sanitize_model_specific
#' @export
sanitize_model_specific.Learner <- function(model, calling_function, ...) {
if (calling_function == "hypotheses") {
msg <- "`marginaleffects` does not support hypothesis tests for models of this class."
stop_sprintf(msg)
}
return(model)
}
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.