Skip to content

Instantly share code, notes, and snippets.

@vicotrbb
Created May 5, 2020 22:38
Show Gist options
  • Save vicotrbb/5ebf2332a5b72b715d7ca7536363439b to your computer and use it in GitHub Desktop.
Save vicotrbb/5ebf2332a5b72b715d7ca7536363439b to your computer and use it in GitHub Desktop.
iris_dataset = load_iris()
iris = pd.DataFrame(iris_dataset.data, columns=iris_dataset.feature_names)
iris['target'] = iris_dataset.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment