Myluzh Blog

Python matplotlib 绘制散点图/柱状图

发布时间: 2023-7-13 文章作者: myluzh 分类名称: Python 朗读文章


0x01 散点图
WechatIMG13050.jpeg
复制代码
  1. import matplotlib.pyplot as plt
  2. import random
  3.  
  4. # 生成数据
  5. num_points = 1000
  6. x = [random.uniform(0, 10) for i in range(1000)]
  7. y = [random.uniform(0, 10) for i in range(1000)]
  8.  
  9. # 绘制散点图
  10. plt.scatter(x, y, s=5, alpha=0.5)
  11.  
  12. # 添加标题和标签
  13. plt.title('Scatter Plot Example')
  14. plt.xlabel('X')
  15. plt.ylabel('Y')
  16. # 显示图形
  17. plt.show()

0x02 柱状图

柱状图.jpeg
复制代码
  1. import matplotlib.pyplot as plt
  2.  
  3. # 柱状图的数据
  4. categories = ['A', 'B', 'C', 'D', 'E']
  5. values = [15, 25, 10, 20, 30]
  6.  
  7. # 创建一个新的图形
  8. fig, ax = plt.subplots()
  9.  
  10. # 绘制柱状图
  11. ax.bar(categories, values)
  12.  
  13. # 设置图形的标签和标题
  14. ax.set_xlabel('Categories')
  15. ax.set_ylabel('Values')
  16. ax.set_title('Bar Chart Example')
  17.  
  18. # 显示图形
  19. plt.show()

0x03 其他
其他示例可以参考官网
https://matplotlib.org/stable/plot_types/basic/index.html

标签: python matplotlib 散点图 柱状图


正文到此结束
版权声明:若无特殊注明,本文皆为 Myluzh Blog 原创,转载请保留文章出处。
文章内容:https://itho.cn/py/321.html
文章标题:《Python matplotlib 绘制散点图/柱状图

发表评论