I want to access the spatial distribution of errors in a map based on random forest predictions on 10-fold Cross validation.
I run:
model <- train(predictors,response,method="rf",metric="Rsquared",
trControl=ctrl,ntree=1500)
predictions <- predict(preds, model)
I thought I could use the predictions interval of each pixel (max pred - min pred) as a measure of uncertainty. But I can´t find how to obtain the max and min predictions per pixes in the predictions output. How could I obtain that?