如何从numpy数组绘制数据?

时间:2019-07-03 13:14:08

标签: python numpy matplotlib

我想绘制一些以Numpy数组写入的数据。 我有以下代码:

plt.scatter(image_numpy_penguin, image_numpy_penguin, color = "red", marker = "o", label = "penguin")
plt.scatter(image_numpy_parrot, image_numpy_parrot, color = "blue", marker = "x", label = "parrot")
plt.show()

但是当我尝试启动它时,出现以下错误:

float() argument must be a string or a number, not 'builtin_function_or_method'

为什么会出现此错误,我该怎么办? 谢谢您的帮助

0 个答案:

没有答案