plot.py 378 B

123456789101112131415
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. '''
  4. @Auther :liuyuqi.gov@msn.cn
  5. @Time :2018/7/6 16:59
  6. @File :plot.py
  7. '''
  8. import matplotlib
  9. matplotlib.use('Agg')
  10. import matplotlib.pyplot as plt # 导入模块
  11. squares = [1, 4, 9, 16, 25] # 指定列表Y坐标为列表中的值,X坐标为列表下标
  12. plt.plot(squares) # 传入列表
  13. plt.show()
  14. plt.savefig("../submit/t1.jpg")