Example #1
0
        //TreeType info = new TreeType();
        public List <List <string> > Income(List <List <string> > body, List <string> head, int d)
        {
            ID3 azaz = new ID3();
            List <List <string> > info = azaz.TreeMap(body, head, d, 0);

            return(info);
        }
Example #2
0
        static public void CalculateTree()
        {
            ID3 id3 = new ID3();

            tree = id3.TreeMap(body, head, decisionPosition, 0);
        }