Skip to content

Pure Python implementation of Decision Tree algorithm

Notifications You must be signed in to change notification settings

nahidul-opu/Decision-Tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Decision-Tree

Pure Python implementation of Decision Tree algorithm.
accepts pandas DataFrame.
API is similar to scikit-learn.

Example

from DecisionTree import DecisionTree
dtf=DecisionTree()
dtf.fit(x_train,y_train)
y_pred = dtf.predict(x_train,probability=False)
df.print() #print the tree

About

Pure Python implementation of Decision Tree algorithm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published