机器学习KNN
进击的程小白
这个作者很懒,什么都没留下…
展开
-
机器学习实战P24页,图例代码(书上没有)
机器学习实战中P24页,图2—5没有源代码,代码如下:@author: zeh0814"""import matplotlibimport matplotlib.pyplot as pltimport numpy as npfig = plt.figure()ax = fig.add_subplot(111)datingLabels = array(datingLabels)...原创 2018-08-04 16:14:32 · 484 阅读 · 0 评论 -
Python中的sorted函数以及operator.itemgetter函数
operator.itemgetter函数operator模块提供的itemgetter函数用于获取对象的哪些维的数据,参数为一些序号(即需要获取的数据在对象中的序号),下面看例子。a = [1,2,3] >>> b=operator.itemgetter(1) //定义函数b,获取对象的第1个域的值>>> b(a) 2 >>...原创 2018-08-04 20:51:03 · 137 阅读 · 0 评论 -
annotate标注解释
标注 基本标注使用text()会将文本放置在轴域的任意位置。 文本的一个常见用例是标注绘图的某些特征,而annotate()方法提供辅助函数,使标注变得容易。 在标注中,有两个要考虑的点:由参数xy表示的标注位置和xytext的文本位置。 这两个参数都是(x, y)元组。 # coding=utf-8import numpy as npimport matplotli...转载 2018-09-01 16:49:30 · 8847 阅读 · 0 评论