- Determine the variable used to split the data at the node from CutPredictor (if not a leaf node).
- Determine whether that variable is continuous or categorical from CutType. If it is continuous, then use CutPoint to determine the threshold used to split the data at that node. Otherwise, use CutCategories.
- Examine Parent to determine which nodes have the current node as its parent.
- Determine the subsets of the observations that fall on either side of the threshold
- Retaining these subsets of observations, repeat these steps for each of the children nodes
Retrieving data points in a CART tree node (statistics and machine learning toolbox)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I would like to obtain the row indices of the predictor matrix X that are returned in the tree.NodeSize variable. I'm looking for something similar to the CutPredictor, but in the first dimension of X. Thanks.
0 comentarios
Respuestas (1)
Sarah Mohamed
el 15 de Sept. de 2017
There doesn’t appear to be built-in functionality for this already, but it is possible to traverse the tree to retrieve these observations using the properties Parent, CutPredictor, CutType, CutPoint, and/or CutCategories. The steps would be somewhat like the following:
Starting from the root node (node 0),
0 comentarios
Ver también
Categorías
Más información sobre Classification en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!