Public methods
Method new()
Creates a new instance of this R6 class.
Usage
PredictionDens$new(
task = NULL,
row_ids = task$row_ids,
truth = task$truth(),
pdf = NULL,
cdf = NULL
)
Arguments
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.
pdf
(numeric()
)
Numeric vector of estimated probability density function, evaluated at 'target' column of
test set. One element for each observation in the test set.
cdf
(numeric()
)
Numeric vector of estimated cumulative distribution function, evaluated at 'target' column
of test set. One element for each observation in the test set.
Method clone()
The objects of this class are cloneable with this method.
Usage
PredictionDens$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.