Created
May 17, 2019 09:01
-
-
Save theSekyi/85abc3e3c3d1a9c4dfa31c5fddfd94b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| %matplotlib inline | |
| from sklearn.tree import DecisionTreeClassifier | |
| from sklearn.tree import export_graphviz #plot tree | |
| df = pd.read_csv('winequality-red.csv') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment