散点图

散点图

from matplotlib import pyplot as plt
x = [1, 2, 3]
y = [3, 4, 5]
plt.scatter(x, y)
plt.show()
散点图

meshgrid生成点阵图

meshgrid用法

最后更新于

这有帮助吗?