python机器学习-chapter2_12
Posted 摸鱼匠与炼丹侠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python机器学习-chapter2_12相关的知识,希望对你有一定的参考价值。
•XX, YY = np.meshgrid(xx, yy)
meshgrid()函数用两个坐标轴上的点在平面上画网格
https://www.cnblogs.com/shanlizi/p/9127878.html
•ax.plot_surface(XX, YY, ZZ, rstride = 8, cstride = 8, alpha = 0.3)
rstride:行之间的跨度 cstride:列之间的跨度
plot_surface()中的更多参数说明:https://blog.csdn.net/ygdxt/article/details/86618606
•decision_function()的功能:计算样本点到分割超平面的函数距离 #未解决
https://blog.csdn.net/qq_33039859/article/details/69810788
以上是关于python机器学习-chapter2_12的主要内容,如果未能解决你的问题,请参考以下文章