Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created April 21, 2019 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/5d28265a61a0c8a376073273d4c2256f to your computer and use it in GitHub Desktop.
Save NMZivkovic/5d28265a61a0c8a376073273d4c2256f to your computer and use it in GitHub Desktop.
COLUMN_NAMES = [
'SepalLength',
'SepalWidth',
'PetalLength',
'PetalWidth',
'Species'
]
data = pd.read_csv('iris_data.csv', names=COLUMN_NAMES, header=0)
data.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment