The FOREST Procedure
Residual Sum of Squares Importance Method
The residual sum of squares (RSS) for regression trees is defined as
where
The residual sum of squares (RSS) for classification trees is defined as
where
For a single tree in the forest, the RSS-based metric measures variable importance based on the change in RSS when a split is found at a node. The change is
where
If the change in RSS is negative (which is possible when you use the validation set), then the change is set to 0.
The RSS-based importance for a single tree is then defined as
where D is the total number of nodes.
The RSS variable importance for the forest is the average of the RSS variable importance across all trees in the forest.
Copyright © SAS Institute Inc. All rights reserved.