Data Mining Dr. Wararat Rungworawut การทำเหมืองข้อมูล (Data Mining) สอนโดย ผศ. ดร. วรารัตน์ สงฆ์แป้น ภาควิชาวิทยาการคอมพิวเตอร์ คณะวิทยาศาสตร์ มหาวิทยาลัยขอนแก่น บทที่ 8: การประยุกต์ต้นไม้ตัดสินใจ (Applied Decision Tree)
Data Mining ข้อมูลลูกค้าการซื้อคอมพิวเตอร์
Data Mining ต้นไม้ตัดสินใจ <= >40 age yes student yes no yesno credit fair excellent yesno
Data Mining กฎข้อที่ 1:: If (age<=30) and (student = yes) Then buy computer = yes กฎข้อที่ 2:: If (age<=30) and (student = no) Then buy computer = no กฎข้อที่ 3:: If (age> 30 and age < 40) Then buy computer = yes กฎข้อที่ 4:: If (age > 40) and (credit = fair) Then buy computer = yes กฎข้อที่ 5:: If (age > 40) and (credit = excellent) Then buy computer = no แปลงเป็นกฎจากต้นไม้ตัดสินใจ
Data Mining สร้างแอพพลิเคชัน โดยประยุกต์กฎที่ ได้ ระบบทำนายการซื้อคอมพิวเตอร์ age: student: credit: 1) สร้างไฟล์ buycom.php
Data Mining สร้างแอพพลิเคชัน โดยประยุกต์กฎที่ ได้ <? if($age <= 30 & $student == "yes") echo " ซื้อ "; if($age > 30 & $age <= 40) echo " ซื้อ "; if($age <= 30 & $student == "no") echo " ไม่ซื้อ "; If ($age > 40 & $credit == "fair") echo " ซื้อ "; If ($age > 40 & $credit == "excellent") echo “ ไม่ซื้อ "; ?>
Data Mining สร้างแอพพลิเคชัน โดยประยุกต์กฎที่ ได้ 2. เอาไฟล์ buycom.php ไปวางไว้ที่ C:\AppServ\www และรันแอพพลิเคชัน ดังภาพ ต่อไปนี้
Data Mining กฎข้อที่ 1
Data Mining กฎข้อที่ 2
Data Mining กฎข้อที่ 3
Data Mining กฎข้อที่ 4
Data Mining กฎข้อที่ 5