Metadata-Version: 2.1
Name: easyID3
Version: 0.0.5
Summary: simply use print(ID3(data,answer_column_name)) to print your tree.
Author: Jonathan Oren
Author-email: jonmosesoren@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

Utilizes pandas, math, numpy and colorama. 
Easy textual print of the categorical-only ID3 adjusted for any number of answers and will clean data of perfectly unique columns (such as an index column).
example code:

tree = ID3(df, "Purchased?")
print(tree)

As of now there are four rotating colors for middle nodes (cyan magenta blue yellow) and two (red and green) for the final nodes. future release will include functions for controlling the print color scheme.
