【发布时间】:2020-06-01 18:43:52
【问题描述】:
我正在尝试在Divorce dataset from UCI Machine Learning Repository 上可视化K-Means clustering implementation 的结果。
我的代码如下:
import pandas as pd, seaborn as sns1
import matplotlib.pyplot as plt
from scipy import cluster
from sklearn.cluster import KMeans
from sklearn.model_selection import train_test_split
df = pd.read_csv('C:\\Users\\wundermahn\\Desktop\\code\\divorce.csv')
y = df['Class']
X = df.drop('Class', axis=1)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.33, random_state=42)
y_pred = KMeans(n_clusters=2, random_state=170).fit_predict(X_test)
plt.subplot(221)
plt.scatter(X_test[:, 0], X_test[:, 1], c=y_pred)
plt.title("Guess")
plt.show()
这在很大程度上受到上面超链接 K-Means 链接的影响。
我收到一个错误:
Traceback (most recent call last):
File "c:\Users\wundermahn\Desktop\code\kmeans.py", line 25, in <module>
plt.scatter(X_test[:, 0], X_test[:, 1], c=y_pred)
File "C:\Python367-64\lib\site-packages\pandas\core\frame.py", line 2800, in __getitem__
indexer = self.columns.get_loc(key)
File "C:\Python367-64\lib\site-packages\pandas\core\indexes\base.py", line 2646, in get_loc
return self._engine.get_loc(key)
File "pandas\_libs\index.pyx", line 111, in pandas._libs.index.IndexEngine.get_loc
File "pandas\_libs\index.pyx", line 116, in pandas._libs.index.IndexEngine.get_loc
TypeError: '(slice(None, None, None), 0)' is an invalid key
我做错了什么?为什么我的 slice None 在我清楚地向它传递数据时是类型?
【问题讨论】:
标签: python pandas matplotlib scikit-learn k-means