ForBo7 // Salman Naqvi
  • Home
  • ForBlog
  • Playground
  • Dictionary
  • About

OneR Classifier

The simplest type of decision tree. The tree only contains a single split.

Below is an example determining whether a car is fast or slow.

flowchart TB
  A([Weight < 2000kg])
  B([Car Is Fast])
  C([Car Is Slow])

  A -- Yes --> B
  A -- No --> C

ForBo7 // Salman Naqvi © 2022 and ForBlog™ by Salman Naqvi | Site Version 2.0.3.1 | Site Feedback | Website made by me!