Metadata-Version: 2.1
Name: easyID3
Version: 0.0.11
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.\n
Easy textual print of categorical-only ID3 decision tree adjusted for any number of answers.\n
will clean data of perfectly unique columns (such as an index column).\n
\n
example code:\n
\n
tree = ID3(df, "Purchased?")\n
print(tree)\n
\n
As of now there are four rotating colors for middle nodes (cyan magenta blue yellow) and two (red and green) for the final nodes. \n future release will include functions for controlling the print color scheme.
