Assignment 7 information

Code and other information

Addenda & eratta

Hints

Results on sample data sets

(print-dt (learn-dt play-tennis-tdata))
(1 (normal yes)
   (high (0 (overcast yes)
            (sunny no)
            (rain no))))
;No value

(print-dt (learn-dt play-tennis-tdata) play-tennis-anames)
(humidity (normal yes)
          (high (outlook (overcast yes)
                         (sunny no)
                         (rain no))))
;No value

(print-dt (learn-dt restaurant-tdata) restaurant-anames)
(patrons (none no)
         (full (hungry (no no)
                       (yes (type (burger yes)
                                  (italian no)
                                  (thai (fri (no no)
                                             (yes yes)))))))
         (some yes))
;No value

(print-dt (learn-dt mushroom-tdata) mushroom-anames)
(odor (c p)
      (p p)
      (l e)
      (a e)
      (f p)
      (n (cap-color (p e)
                    (b p)
                    (c e)
                    (y p)
                    (e e)
                    (n e)
                    (w (cap-shape (f e)
                                  (c p)
                                  (x e)))
                    (g e))))
;No value

whuang@cs.rpi.edu
Last updates: November 9, 1999