These are internal functions not meant to be directly called by the user.
# S3 method for model_fit
predict_class(object, new_data, ...)# S3 method for model_fit
predict_classprob(object, new_data, ...)
# S3 method for model_fit
predict_confint(object, new_data, level = 0.95, std_error = FALSE, ...)
# S3 method for model_fit
predict_numeric(object, new_data, ...)
predict_numeric(object, ...)
# S3 method for model_fit
predict_quantile(object, new_data, quantile = (1:9)/10, ...)
An object of class model_fit
A rectangular data object, such as a data frame.
Arguments to the underlying model's prediction
function cannot be passed here (see opts
). There are some
parsnip
related options that can be passed, depending on the
value of type
. Possible arguments are:
level
: for type
s of "conf_int" and "pred_int" this
is the parameter for the tail area of the intervals
(e.g. confidence level for confidence intervals).
Default value is 0.95.
std_error
: add the standard error of fit or prediction (on
the scale of the linear predictors) for type
s of "conf_int"
and "pred_int". Default value is FALSE
.
quantile
: the quantile(s) for quantile regression
(not implemented yet)
time
: the time(s) for hazard probability estimates
(not implemented yet)
A single numeric value between zero and one for the interval estimates.
A single logical for wether the standard error should be returned (assuming that the model can compute it).
A vector of numbers between 0 and 1 for the quantile being predicted.