Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. # split train input and output data
  2. X = df.drop(axis=0, columns=['Class', 'Case #'])
  3. Y = df.Class
  4.  
  5. #Print the shape of X and Y
  6. print(X.shape)
  7. print(Y.shape)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement