在参考《深入浅出python机器学习》敲代码过程中
import numpy as np
clf = KNeighborsClassifier()
clf.fit(X, y)
#下面的代码用于画图
x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() +1
y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() +1
xx, yy = np.meshgrid(np.arange(x_min, x_max, .02),
np.arange(y_min, y_max, .02))
Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])
Z = Z.reshape(xx.shape)
plt.pcolormesh(xx, yy, Z, cmap = plt.cm.Pastell)
plt.scatter(X[:,0], X[:,1], c = y, cmap = plt.cm.spring, edgecolor = 'k')
plt.xlim(xx.min(), xx.max())
plt.ylim (yy.min(), yy.max())
plt.title ("Classifier:KNN")
plt.show()
然后报错,搜索说是版本问题
卸载、重装、失败、继续报错
然后探访官网matplotlib.cm — Matplotlib 3.8.2 documentation
查询注册表:
from matplotlib import colormaps
list(colormaps)
在用眼睛“遍历“注册表之后,终于让我发现了问题,
这个attribute根本不是pastell而是”pastel1“
修改为
plt.pcolormesh(xx, yy, Z, cmap = plt.cm.Pastel1)
然后,就解决了!!!!!!