Guest User

Untitled

a guest
Jul 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. from sklearn.datasets import load_iris
  2.  
  3. #import IRIS data set
  4. Iris = load_iris()
  5. # Feature matrix
  6. Iris.data
  7.  
  8. #Target vector
  9. Iris.target
Add Comment
Please, Sign In to add comment