python画散点图,
时间: 2023-10-28 14:00:44 浏览: 169
python 画三维图像 曲面图和散点图的示例
5星 · 资源好评率100%
import matplotlib.pyplot as plt
# 创建数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制散点图
plt.scatter(x, y)
# 添加标题和标签
plt.title("Scatter Plot")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
# 显示图形
plt.show()
阅读全文