• 大小: 100KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Python
  • 标签: 机器学习  

资源简介

通过训练集训练模型,然后通过测试集进行测试,案例里有训练数据和测试数据

资源截图

代码片段和文件信息

#-*- coding: utf-8 -*-
‘‘‘
聚类离散化,最后的result的格式为:
      1           2           3           4
A     0    0.178698    0.257724    0.351843
An  240  356.000000  281.000000   53.000000
即(0 0.178698]有240个,(0.178698 0.257724]有356个,依此类推。
‘‘‘
from __future__ import print_function
import pandas as pd
from sklearn.cluster import KMeans #导入K均值聚类算法

datafile = ‘../data/data.xls‘ #待聚类的数据文件
processedfile = ‘../tmp/data_processed.xls‘ #数据处理后文件
typelabel ={u‘肝气郁结证型系数‘:‘A‘ u‘热毒蕴结证型系数‘:‘B‘ u‘冲任失调证型系数‘:‘C‘ u‘气血两虚证型系数‘:‘D‘ u‘脾胃虚弱证型系数‘:‘E‘ u‘肝肾阴虚证型系数‘:‘F‘}
k = 4 #需要进行的聚类类别数

#读取数据并进行聚类分析
data = pd.read_excel(datafile) #读取数据
keys = list(typelabel.keys())
result = pd.Dataframe()

if __name__ == ‘__main__‘: #判断是否主窗口运行,如果是将代码保存为.py后运行,则需要这句,如果直接复制到命令窗口运行,则不需要这句。
  for i in range(len(ke

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        138  2019-09-09 10:44  python实现预测癌症模型\.idea\encodings.xml

     文件        311  2019-09-09 10:44  python实现预测癌症模型\.idea\misc.xml

     文件        283  2019-09-09 10:44  python实现预测癌症模型\.idea\modules.xml

     文件      15161  2019-09-09 10:48  python实现预测癌症模型\.idea\workspace.xml

     文件        464  2019-09-09 10:46  python实现预测癌症模型\.idea\癌症预测.iml

     文件       2200  2018-07-29 17:49  python实现预测癌症模型\demo\code\8-1_discretization.py

     文件       1148  2018-07-29 17:49  python实现预测癌症模型\demo\code\8-2_apriori_rules.py

     文件       2420  2018-07-29 17:49  python实现预测癌症模型\demo\code\apriori.py

     文件       2335  2019-09-09 10:45  python实现预测癌症模型\demo\code\__pycache__\apriori.cpython-37.pyc

     文件      20460  2018-07-29 17:49  python实现预测癌症模型\demo\data\apriori.txt

     文件     193536  2018-07-29 17:49  python实现预测癌症模型\demo\data\data.xls

     文件       5632  2018-07-29 17:49  python实现预测癌症模型\demo\tmp\data_processed.xls

     文件       2414  2018-07-29 17:49  python实现预测癌症模型\test\code\apriori.py

     文件       1133  2018-07-29 17:49  python实现预测癌症模型\test\code\apriori_rules.py

     文件       2167  2018-07-29 17:49  python实现预测癌症模型\test\code\discretization.py

     文件       2331  2019-09-09 10:45  python实现预测癌症模型\test\code\__pycache__\apriori.cpython-37.pyc

     文件      20460  2018-07-29 17:49  python实现预测癌症模型\test\data\apriori.txt

     文件     193536  2018-07-29 17:49  python实现预测癌症模型\test\data\data.xls

     目录          0  2019-09-09 10:45  python实现预测癌症模型\demo\code\__pycache__

     目录          0  2019-09-09 10:45  python实现预测癌症模型\test\code\__pycache__

     目录          0  2019-09-09 10:45  python实现预测癌症模型\demo\code

     目录          0  2018-07-29 17:49  python实现预测癌症模型\demo\data

     目录          0  2018-07-29 17:49  python实现预测癌症模型\demo\tmp

     目录          0  2019-09-09 10:45  python实现预测癌症模型\test\code

     目录          0  2018-07-29 17:49  python实现预测癌症模型\test\data

     目录          0  2018-07-29 18:17  python实现预测癌症模型\test\tmp

     目录          0  2019-09-09 10:48  python实现预测癌症模型\.idea

     目录          0  2018-07-29 17:49  python实现预测癌症模型\demo

     目录          0  2018-07-29 18:17  python实现预测癌症模型\test

     目录          0  2019-09-09 10:44  python实现预测癌症模型

............此处省略3个文件信息

评论

共有 条评论