当前位置:   article > 正文

Python使用matplotlib绘制透明背景的可视化图像并保存透明背景的可视化结果(transparent background)_transparent-background

transparent-background

Python使用matplotlib绘制透明背景的可视化图像并保存透明背景的可视化结果(transparent background)

目录

Python使用matplotlib绘制透明背景的可视化图像并保存透明背景的可视化结果(transparent background)

#matplotlib绘制透明背景的可视化图像

#保存透明背景的可视化结果(transparent background)


#matplotlib绘制透明背景的可视化图像

  1. import matplotlib.pyplot as plt
  2. # employee growth year over year
  3. emp_count = [3, 20, 50, 200, 350, 400]
  4. year = [2014, 2015, 2016, 2017, 2018, 2019]
  5. # plot the employee growth
  6. plt.plot(year, emp_count)
  7. # add axes labels and plot title
  8. plt.xlabel('Year')
  9. plt.ylabel('Employees')
  10. plt.title("Employee Growth YoY")
  11. # save the plot as a PNG image
  12. plt.sav
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Guff_9hys/article/detail/801881
推荐阅读
相关标签
  

闽ICP备14008679号