AttributeError: 'numpy.ndarray' object has no attribute 'scatter'
时间: 2023-11-09 07:09:32 浏览: 253
python中利用xml.dom模块解析xml的方法教程
这个错误提示表明你正在尝试在一个 numpy 数组上调用 scatter 方法,但是 numpy 数组并没有 scatter 方法。scatter 方法是 matplotlib 库中的一个函数,用于绘制散点图。因此,你需要将 numpy 数组转换为 matplotlib 中的数据类型,例如使用 plt.scatter() 函数。
阅读全文