Metadata-Version: 2.1
Name: easyID3
Version: 0.0.13
Summary: Easily print ID3 Algorithm Decision Tree
Author: asparagus_beef
Author-email: pinepinejohn@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 and numpy.\
Easy textual print of categorical-only ID3 decision tree adjusted for any number of answers.\
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.
