Last active
February 17, 2019 16:20
-
-
Save gabrielziegler3/138e12698058a53a994fc1c860733d78 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 | |
from sklearn.datasets import load_wine | |
from sklearn.model_selection import train_test_split | |
X, y = load_wine(return_X_y=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment