Inherited methods
Method new()
Creates a new instance of this R6 class.
Usage
PredictionClust$new(
task = NULL,
row_ids = task$row_ids,
partition = NULL,
prob = NULL,
check = TRUE
)
Arguments
task
(TaskClust)
Task, used to extract defaults for row_ids.
row_ids
(integer())
Row ids of the predicted observations, i.e. the row ids of the test set.
partition
(integer())
Vector of cluster partitions.
prob
(matrix())
Numeric matrix of cluster membership probabilities with one column for each cluster
and one row for each observation.
Columns must be named with cluster numbers, row names are automatically removed.
If prob is provided, but partition is not, the cluster memberships are calculated from
the probabilities using max.col() with ties.method set to "first".
check
(logical(1))
If TRUE, performs some argument checks and predict type conversions.
Method clone()
The objects of this class are cloneable with this method.
Usage
PredictionClust$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.