简单的线性分类器

一个简单的线性分类器

#coding=utf-8
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
#线性分类的一种算法
from sklearn.linear_model import LogisticRegression

#读入训练集和测试集,csv类似于excel
df_train = pd.read_csv("breast-cancer-train.csv")
df_test = pd.read_csv("breast-cancer-train.csv")

#选出正样本集,负样本集,特征是Type值不同而已为它们加上属性,格式为属性,去掉Type
df_test_negative = df_test.loc[df_test['Type']==0][['Clump Thickness', 'Cell Size']]
df_test_positive = df_test.loc[df_test['Type']==1][['Clump Thickness', 'Cell Size']]

lr = LogisticRegression()
#选出10个样本进行训练
lr.fit(df_train[['Clump Thickness', 'Cell Size']][:10], df_train['Type'][:10])
#输出训练结果(正确率)
print("Testing accuracy (10 training samples):",
      lr.score(df_test[['Clump Thickness', 'Cell Size']],  df_test['Type']))

#绘图
plt.scatter(df_test_negative['Clump Thickness'],
            df_test_negative['Cell Size'],
            marker='o',
            s=200,
            c='red')
plt.scatter(df_test_positive['Clump Thickness'],
            df_test_positive['Cell Size'],
            marker='o',
            s=150,
            c='black')
plt.xlabel('Clump Thickness')
plt.ylabel('Cell Size')

#画出直线
intercept = lr.intercept_
coef = lr.coef_[0, :]
lx = np.arange(0, 12)
ly = (-intercept-lx*coef[0])/coef[1]
plt.plot(lx, ly, c="yellow")
plt.show()
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值