Operation |
Details |
public CART(): |
Sequential |
public DescribeMethod():string |
Sequential Notes: | Get a description for a method instance, for its options etc. Used by stepping. | |
protected BuildSpecific():int |
Sequential Notes: | Main function for building the decision tree.
@returns negative if error, zero if succes | |
protected CompareSplitters( int node, DecTreeSplitter splitter1, DecTreeSplitter splitter2):int |
Sequential Notes: | Compares two splitters which is better.
@returns 1 if splitter1 is better than splitter2, 0 if it is equivalent, -1 else | |
protected GetSplitters( int node):ArrayList |
Sequential Notes: | Returns ArrayList of Spitter class - all available splitters in node.
@returns | |
private Diversity( int node):double |
Sequential Notes: | Gets a index of diversity as defined by CART, in node.
@returns | |
private Diversity( int node, string where):double |
Sequential Notes: | Gets a index of diversity as defined by CART, in node subset, where "where".
@returns | |