Search code examples
pythonattributescontinuous

how to determine whether a attribute is continuous in C 4.5 decision tree


How do I determine whether a attribute is continuous in C4.5 decision tree implementation?


Solution

  • You determine if any attribute is continous or not.

    You feed the data to the DT.

    Attributes are the properties of the data not the decision tree.