从零开始通往KAGGLE竞赛之路(一)

监督学习经典案例——良/恶性肿瘤预测

1、数据导入及预处理

良恶性肿瘤的数据

import pandas as pd
import numpy as np

column_names = ['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']

data = pd.read_csv('https://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin//breast-cancer-wisconsin.data',names=column_names)

从网上可以直接获取相关数据,使用pandas读取并设置字段名称

data.info()

查看数据信息:

<class 'pandas.core.frame.DataFrame'>
RangeIndex: 699 entries, 0 to 698
Data columns (total 11 columns):
Sample code number             699 non-null int64
Clump Thickness                699 non-null int64
Uniformity of Cell Size        699 non-null int64
Uniformity of Cell Shape       699 non-null int64
Marginal Adhesion              699 non-null int64
Single Epithelial Cell Size    699 non-null int64
Bare Nuclei                    699 non-null object
Bland Chromatin                699 non-null int64
Normal Nucleoli                699 non-null int64
Mitoses                        699 non-null int64
Class                          699 non-null int64
dtypes: int64(10), object(1)
memory usage: 60.1+ KB

除了字段 Bare Nuclei 外,其他字段均为数值型数据。

看看这个字段数据是什么情况,

data['Bare Nuclei'].unique()#数据中有问号
array(['1', '10', '2', '4', '3', '9', '7', '?', '5', '8', '6'],
      dtype=object)

因为该案例部分数据未收集到,以?代替,在做分析的时候这部分就不能要,把这部分数据删除。

data = data.replace(to_replace='?',value=np.nan)    #非法字符的替代
#删除有空值的数据,删除了15行数据
data=data.dropna(how='any')
data.describe()#数据均为1-10的数值,第一列为id
#查看数据整体情况

#现在剩余的数据
data.shape
(683, 11)

2、拆分训练集与测试集

#from sklearn.cross_valiation import train_test_split #数据导入模块从书中的cross_valiation从0.18以后替换为model_selection
from sklearn.model_selection import train_test_split
x_train,x_test,y_train,y_test=train_test_split(data[data.columns[1:10]],data[data.columns[10]],test_size=0.25,random_state=33)
#random_state随机种子,以保证每次随机取出的数据一致
print(y_train.value_counts(),'\n',y_test.value_counts())

#查看数据切分结果
2    344
4    168
Name: Class, dtype: int64 
2    100
4     71
Name: Class, dtype: int64

3、使用线性分类器进行训练与预测

from sklearn.preprocessing import StandardScaler  #导入归一化模型
from sklearn.linear_model import LogisticRegression
from sklearn.linear_model import SGDClassifier
from sklearn.metrics import  classification_report
## 将数值型数据进行归一化处理,减少部分字段的干扰
ss=StandardScaler()
x_train=ss.fit_transform(x_train)
x_test=ss.transform(x_test)

lr=LogisticRegression()
sgdc=SGDClassifier()

lr.fit(x_train,y_train)
lr_predict=lr.predict(x_test)

sgdc.fit(x_train,y_train)
sgdc_predict=sgdc.predict(x_test)

print('lr:',lr.score(x_test,y_test),'sgdc:',sgdc.score(x_test,y_test))
#多次运行以后发现,sgdc分类器结果有很大波动,每次都不一样

lr_report=classification_report(y_test,lr_predict)
print('lr_report:',lr_report)

sgdc_report=classification_report(y_test,sgdc_predict)
print('lr_report:',sgdc_report)
#逻辑斯蒂模型准确率更高
相比于随机梯度下降法,逻辑斯蒂模型准确率更高

4、项目完整代码

import pandas as pd
import numpy as np
#from sklearn.cross_valiation import train_test_split #数据导入模块从书中的cross_valiation从0.18以后替换为model_selection
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler  #导入归一化模型
from sklearn.linear_model import LogisticRegression
from sklearn.linear_model import SGDClassifier
from sklearn.metrics import  classification_report

#1、读取清洗数据
column_names = ['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']
data = pd.read_csv('https://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin//breast-cancer-wisconsin.data',names=column_names)
data = data.replace(to_replace='?',value=np.nan)
data=data.dropna(how='any')

#2、切分数据集
x_train,x_test,y_train,y_test=train_test_split(data[data.columns[1:10]],data[data.columns[10]],test_size=0.25,random_state=33)
#random_state随机种子,以保证每次随机取出的数据一致

#3、数据归一化
ss=StandardScaler()
x_train=ss.fit_transform(x_train)
x_test=ss.transform(x_test)

#4、训练数据
lr=LogisticRegression()
sgdc=SGDClassifier()

lr.fit(x_train,y_train)
lr_predict=lr.predict(x_test)

sgdc.fit(x_train,y_train)
sgdc_predict=sgdc.predict(x_test)


#5、比较模型准确性
print('lr:',lr.score(x_test,y_test),'sgdc:',sgdc.score(x_test,y_test))
#多次运行以后发现,sgdc分类器结果有很大波动,每次都不一样
lr_report=classification_report(y_test,lr_predict)
print('lr_report:',lr_report)

sgdc_report=classification_report(y_test,sgdc_predict)
print('lr_report:',sgdc_report)

5、两种分类器比较

大数据量(10万以上)时如果对效率要求比较高就选择随机梯度下降、如果时间长短没关系的话就用逻辑斯蒂

模型 优势 劣势
逻辑斯蒂 精确解析、准确率会高一些 计算时间相对较长
随机梯度下降 计算时间短,在大数据量上能快速运算出结果 准确率上没逻辑斯蒂高
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容