AIMA.Core.Learning.Inductive.DecisionTree.DecisionTree C# (CSharp) Method

DecisionTree() public method

public DecisionTree ( String attributeName ) : System
attributeName String
return System
        public DecisionTree(String attributeName)
        {
            this.attributeName = attributeName;
            nodes = new Dictionary<String, DecisionTree>();

        }

Same methods

DecisionTree::DecisionTree ( ) : System