Skip to contents

This function aggregates predictions from multiple calls of prediction().

Usage

aggregate_predictions(predictions)

Arguments

predictions

(vector of predict.rfsrc() objects) The prediction objects from prediction().

Value

category_summary (data frame) A table of means and standard deviations of confidences for each category

Examples

if (FALSE) {
# Example usage:
prediction <- list()
predictions[[1]] <- prediction(model = "bs23.rds", ...)
predictions[[2]] <- prediction(model = "bs24.rds", ...)
result <- aggregate_predictions(predictions)
}