contact-lenses.arff
上传用户:wellsales
上传日期:2021-03-11
资源大小:10607k
文件大小:3k
源码类别:

工具条

开发平台:

Others

  1. % 1. Title: Database for fitting contact lenses
  2. % 2. Sources:
  3. %      (a) Cendrowska, J. "PRISM: An algorithm for inducing modular rules",
  4. %          International Journal of Man-Machine Studies, 1987, 27, 349-370
  5. %      (b) Donor: Benoit Julien (Julien@ce.cmu.edu)
  6. %      (c) Date: 1 August 1990
  7. % 3. Past Usage:
  8. %       1. See above.
  9. %       2. Witten, I. H. & MacDonald, B. A. (1988). Using concept
  10. %          learning for knowledge acquisition. International Journal of
  11. %          Man-Machine Studies, 27, (pp. 349-370).
  12. %  Notes:  This database is complete (all possible combinations of
  13. %          attribute-value pairs are represented).
  14. %          Each instance is complete and correct.
  15. %          9 rules cover the training set.
  16. % 4. Relevant Information Paragraph:
  17. %     The examples are complete and noise free.
  18. %     The examples highly simplified the problem. The attributes do not
  19. %     fully describe all the factors affecting the decision as to which type,
  20. %     if any, to fit.
  21. % 5. Number of Instances: 24
  22. % 6. Number of Attributes: 4 (all nominal)
  23. % 7. Attribute Information:
  24. %     -- 3 Classes
  25. %      1 : the patient should be fitted with hard contact lenses,
  26. %      2 : the patient should be fitted with soft contact lenses,
  27. %      1 : the patient should not be fitted with contact lenses.
  28. %     1. age of the patient: (1) young, (2) pre-presbyopic, (3) presbyopic
  29. %     2. spectacle prescription:  (1) myope, (2) hypermetrope
  30. %     3. astigmatic:     (1) no, (2) yes
  31. %     4. tear production rate:  (1) reduced, (2) normal
  32. % 8. Number of Missing Attribute Values:   0
  33. % 9. Class Distribution:
  34. %    1. hard contact lenses: 4
  35. %    2. soft contact lenses: 5
  36. %    3. no contact lenses: 15
  37. @relation contact-lenses
  38. @attribute age  {young, pre-presbyopic, presbyopic}
  39. @attribute spectacle-prescrip {myope, hypermetrope}
  40. @attribute astigmatism {no, yes}
  41. @attribute tear-prod-rate {reduced, normal}
  42. @attribute contact-lenses {soft, hard, none}
  43. @data
  44. %
  45. % 24 instances
  46. %
  47. young,myope,no,reduced,none
  48. young,myope,no,normal,soft
  49. young,myope,yes,reduced,none
  50. young,myope,yes,normal,hard
  51. young,hypermetrope,no,reduced,none
  52. young,hypermetrope,no,normal,soft
  53. young,hypermetrope,yes,reduced,none
  54. young,hypermetrope,yes,normal,hard
  55. pre-presbyopic,myope,no,reduced,none
  56. pre-presbyopic,myope,no,normal,soft
  57. pre-presbyopic,myope,yes,reduced,none
  58. pre-presbyopic,myope,yes,normal,hard
  59. pre-presbyopic,hypermetrope,no,reduced,none
  60. pre-presbyopic,hypermetrope,no,normal,soft
  61. pre-presbyopic,hypermetrope,yes,reduced,none
  62. pre-presbyopic,hypermetrope,yes,normal,none
  63. presbyopic,myope,no,reduced,none
  64. presbyopic,myope,no,normal,none
  65. presbyopic,myope,yes,reduced,none
  66. presbyopic,myope,yes,normal,hard
  67. presbyopic,hypermetrope,no,reduced,none
  68. presbyopic,hypermetrope,no,normal,soft
  69. presbyopic,hypermetrope,yes,reduced,none
  70. presbyopic,hypermetrope,yes,normal,none