Advertisement
Guest User

ross classification rules

a guest
Nov 19th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. DA CW 2
  2.  
  3. Professions had typos: below are the changes made to correct data.
  4. Ather > other
  5. busines > business
  6. busness > business
  7. Radio/Tv > radio/tv
  8. Eduction > education
  9.  
  10. No duplicates found.
  11. All incorrect/unrealistic data was removed. Screenshots were taken.
  12.  
  13. Used J48 to find classification rules as it showed the dataset in a parent/child tree format. This was easier to interpret than the likes of OneR where the data is presented in a irrelvant fashion. J48 is an improbed version of ID3 which allows the use of numbers aswell as text. Due to my dataset containing both numbers and text this was neccesary.
  14.  
  15. Classification Rules:
  16.  
  17. IF checking_status = <0
  18. AND credit_history = existing paid
  19. AND saving_status = no known savings
  20. AND job = unskilled resident
  21. THEN class = good
  22. *3 instances
  23.  
  24. IF checking_status = <0
  25. AND credit_history = existing paid
  26. AND saving_status = <100
  27. AND purpose = radio/tv
  28. AND employment = 1<=X<4
  29. AND job = high qualif/self emp/mgmt
  30. THEN class = good
  31. *2 instances
  32.  
  33. IF checking_status = 0<=X<200
  34. AND saving_status <100
  35. AND credit_amount <= 9283
  36. AND purpose = new car
  37. AND employment = >=7
  38. THEN class = bad
  39. *5 instances
  40.  
  41. IF checking_status = 0<=X<200
  42. AND saving_status <100
  43. AND credit_amount <= 9283
  44. AND purpose = business
  45. AND employment 1<=X<4
  46. AND age >29
  47. THEN class = bad
  48. *3 instances
  49.  
  50. IF checking_status = 0<=X<200
  51. AND saving_status <100
  52. AND credit_amount <= 9283
  53. AND purpose = business
  54. AND employment = 4<=X<7
  55. THEN class = good
  56. *2 instances
  57.  
  58. IF checking_status = 0<=X<200
  59. AND saving_status <100
  60. AND credit_amount > 9283
  61. THEN class = bad
  62. *12 instances (Jordan has 13)
  63.  
  64. IF checking status = <0
  65. credit_history = existing paid
  66. saving_status >=1000
  67. THEN class = good
  68. *4 instances
  69.  
  70. IF checking_status = <0
  71. Credit_history = existing paid
  72. Saving status = <100
  73. Purpose = furniture/equipment
  74. Employment >=7
  75. Personal_status = male single
  76. THEN class = bad
  77. *4 instances (jordans)
  78.  
  79. IF checking_status = <0
  80. Credit_history = existing paid
  81. Saving status = <100
  82. Purpose = furniture/equipment
  83. Employment >=7
  84. Credit amount >1680
  85. Class = bad (2 instances)
  86. if credit amount <=1680
  87. class = good (2 instances)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement