摘要: import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [2, 3, 2, 4, 2] plt.scatter(x, y) plt.title('Scatter Plot Example') # 添加标题 plt.xlabel('X Axis' 阅读全文
posted @ 2024-07-16 11:32 西北逍遥 阅读(2) 评论(0) 推荐(0) 编辑