Does anyone know how baseimps are calculated?
library(pre)
tree.pre <- pre(A ~ ., data=data_set, tree.unbiased=FALSE, maxdepth=3, ntrees=100)
imps <- importance(tree.pre)
imps$baseimps[1:3,]
pre() with CART algorithm was used and all variables are continuous.
importance() provides baseimps of the model but have no idea how it's calcaulated.
