Created
December 27, 2018 19:37
-
-
Save rohanjoseph93/0e4c7148cbd2e11148dd9744d0d2400e to your computer and use it in GitHub Desktop.
This file contains 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
#import data | |
data = pd.read_csv('breast-cancer-wisconsin.csv',header=None) | |
#set column names | |
data.columns = ['Sample Code Number','Clump Thickness','Uniformity of Cell Size', | |
'Uniformity of Cell Shape','Marginal Adhesion','Single Epithelial Cell Size', | |
'Bare Nuclei','Bland Chromatin','Normal Nucleoli','Mitoses','Class'] | |
#view top 10 rows | |
data.head(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment