Return the prediction from the forest.
# S3 method for multilayerForestry
predict(
object,
feature.new,
aggregation = "average",
seed = as.integer(runif(1) * 10000),
...
)A vector of predicted responses.
A `multilayerForestry` object.
A data frame of testing predictors.
How shall the leaf be aggregated. The default is to return the mean of the leave `average`. Other options are `weightMatrix`.
random seed
additional arguments.