index = np.argsort(y_test) y=y_test[index]报错"Passing list-likes to .loc or [] with any missing labels is no longer supported. The following labels were missing: Int64Index([26, 48, 43, 38, 37,\n ...\n
时间: 2024-04-23 08:22:13 浏览: 73
这个错误提示是因为在使用`.loc`或者`[]`时,列表中包含有缺失的标签。具体地讲,`Int64Index([26, 48, 43, 38, 37, ...` 中的这些索引在 `y_test` 中找不到。
可能的原因是 `y_test` 中不包含这些索引,或者索引的格式不正确。你可以尝试打印一下 `y_test` 和 `index` 的值,检查是否存在错误的索引或者格式问题。同时,也可以尝试使用 `np.asarray()` 函数将列表转换为数组类型,再进行排序操作。
阅读全文