Ваша ошибка связана с тем, как вы нарезаете pandas df
. То, как вы это делаете, вы получаете X
как одно измерение. Следовательно, ваша ошибка выходит за пределы диапазона индекса.
Попробуйте изменить строки:
X = Test_Cu_48hrs.iloc[:,1:2].values
y = Test_Cu_48hrs.iloc[:,2].values
на:
X = Test_Cu_48hrs.iloc[:,0:2].values
y = Test_Cu_48hrs.iloc[:,2].values
и все в порядке на go.
Доказательство
# prepare data
X = Test_Cu_48hrs.iloc[:,0:2].values
y = Test_Cu_48hrs.iloc[:,2].values
h = .02
# Create color maps
cmap_light = ListedColormap(['#FFAAAA', '#AAFFAA', '#AAAAFF','#AFAFAF','#FFFF00','#800080','#00CED1'])
cmap_bold = ListedColormap(['#FF0000', '#00FF00', '#0000FF','#AFAFAF','#FFFF00','#800080','#00CED1'])
# we create an instance of Neighbours Classifier and fit the data.
clf = neighbors.KNeighborsClassifier(n_neighbors, weights='distance')
clf.fit(X, y)
# calculate min, max and limits
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, h),
np.arange(y_min, y_max, h))
# predict class using data and kNN classifier
Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])
# Put the result into a color plot
Z = Z.reshape(xx.shape)
plt.figure()
plt.pcolormesh(xx, yy, Z, cmap=cmap_light)
# Plot also the training points
plt.scatter(X[:, 0], X[:, 1], c=y, cmap=cmap_bold)
plt.xlim(xx.min(), xx.max())
plt.ylim(yy.min(), yy.max())
plt.title("7-Class classification (k = %i)" % (n_neighbors))
plt.show()