This object stores the predictions returned by a learner of class LearnerSurv.
The task_type
is set to "surv"
.
mlr3::Prediction
-> PredictionSurv
truth
(Surv
)
True (observed) outcome.
crank
(numeric()
)
Access the stored predicted continuous ranking.
distr
(VectorDistribution) Access the stored predicted survival distribution.
lp
(numeric()
)
Access the stored predicted linear predictor.
response
(numeric()
)
Access the stored predicted survival time.
missing
(integer()
)
Returns row_ids
for which the predictions are missing or incomplete.
new()
Creates a new instance of this R6 class.
PredictionSurv$new( task = NULL, row_ids = task$row_ids, truth = task$truth(), crank = NULL, distr = NULL, lp = NULL, response = NULL )
task
(TaskSurv)
Task, used to extract defaults for row_ids
and truth
.
row_ids
(integer()
)
Row ids of the predicted observations, i.e. the row ids of the test set.
truth
(numeric()
)
True (observed) response.
crank
(numeric()
)
Numeric vector of predicted continuous rankings (or relative risks). One element for each
observation in the test set. For a pair of continuous ranks, a higher rank indicates that
the observation is more likely to experience the event.
distr
(VectorDistribution) VectorDistribution from distr6. Each individual distribution in the vector represents the random variable 'survival time' for an individual observation.
lp
(numeric()
)
Numeric vector of linear predictor scores. One element for each observation in the test
set. \(lp = X\beta\) where \(X\) is a matrix of covariates and \(\beta\) is a vector
of estimated coefficients.
response
(numeric()
)
Numeric vector of predicted survival times.
One element for each observation in the test set.
clone()
The objects of this class are cloneable with this method.
PredictionSurv$clone(deep = FALSE)
deep
Whether to make a deep clone.
Other Prediction:
PredictionDens
# NOT RUN {
library(mlr3)
task = tgen("simsurv")$generate(20)
learner = mlr_learners$get("surv.rpart")
p = learner$train(task)$predict(task)
head(as.data.table(p))
# }
Run the code above in your browser using DataLab