Last active
July 11, 2022 10:45
-
-
Save neelindresh/f9ab0c6f392ed453603b42dd3a984203 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
from sklearn.datasets import load_iris | |
iris_data=load_iris() | |
data=iris_data["data"] | |
target=iris_data["target"] | |
df=pd.DataFrame(data,columns=iris_data["feature_names"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment