Skip to content

Instantly share code, notes, and snippets.

@sagarhowal
Created December 25, 2017 10:41
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 sagarhowal/c61a00ab9ecbfa32de86b28352597eef to your computer and use it in GitHub Desktop.
Save sagarhowal/c61a00ab9ecbfa32de86b28352597eef to your computer and use it in GitHub Desktop.
Reading CSV File with NumPy
import numpy as np
import pandas as pd
#Importing dataset
dataset = pd.read_csv('breast_cancer.csv')
#Check the first 5 rows of the dataset.
dataset.head(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment