Python绘制散点图
时间: 2023-05-22 12:07:07 浏览: 65
基于python的散点图绘制与实现
可以使用 Matplotlib 库来绘制散点图。具体代码请参考:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.scatter(x, y)
plt.show()
这段代码将绘制以 x 和 y 坐标为轴的散点图。
---
你是否需要我回答更多的问题呢?
阅读全文