predict | R Documentation |
Predict outcomes with a fitted model.
## S3 method for class 'MLModelFit'
predict(
object,
newdata = NULL,
times = numeric(),
type = c("response", "raw", "numeric", "prob", "default"),
cutoff = MachineShop::settings("cutoff"),
distr = character(),
method = character(),
verbose = FALSE,
...
)
## S4 method for signature 'MLModelFit'
predict(object, ...)
object |
model fit result. |
newdata |
optional data frame with which to obtain predictions. If not specified, the training data will be used by default. |
times |
numeric vector of follow-up times at which to predict
survival events/probabilities or |
type |
specifies prediction on the original outcome ( |
cutoff |
numeric (0, 1) threshold above which binary factor probabilities are classified as events and below which survival probabilities are classified. |
distr |
character string specifying distributional approximations to
estimated survival curves. Possible values are |
method |
character string specifying the empirical method of estimating
baseline survival curves for Cox proportional hazards-based models.
Choices are |
verbose |
logical indicating whether to display printed output generated by some model-specific predict functions to aid in monitoring progress and diagnosing errors. |
... |
arguments passed from the S4 to the S3 method. |
confusion
, performance
,
metrics
## Requires prior installation of suggested package gbm to run
## Survival response example
library(survival)
gbm_fit <- fit(Surv(time, status) ~ ., data = veteran, model = GBMModel)
predict(gbm_fit, newdata = veteran, times = c(90, 180, 360), type = "prob")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.