Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
说,一个数据框df_1有 8 列,并使用以下代码。
df_1
res = kmeans(df_1, 4, nstart=40)
K-means 聚类结果存储在res.
res
在大多数示例中,使用两个维度(即两列)来演示聚类。
但是,在上面的代码中,df_1有 8 个维度。
我怎么知道使用了哪些列?