Created
April 4, 2018 15:09
-
-
Save mempirate/e725f3c0272de2d0d0b70637d81d1456 to your computer and use it in GitHub Desktop.
This file contains 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
# Creating the matrix of features and the vector of labels | |
X = df.iloc[:, :-1].values | |
y = df.iloc[:, 1].values |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment