欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib.pyplot中cla()、cls()、close()区别详解

程序员文章站 2022-03-19 17:52:36
...
cla()   # Clear axes
clf()   # Clear figure
close()   #Close a figure window

pyplot.py是一个集合了各种绘图函数的模块,使matpltlib可以通过函数方式绘图。

清除当前座标轴。

从matplotlib面向对象绘图来理解,在一个figure对象上可以有多个axes对象。

清除当前figure对象,等价与figure.clf()。

fig.clear()fig.clf()的同义词。

matplotlib.pyplot.close(fig=None)[source]

关闭当前或指定的图片。

fig参数可以为:

  • None: the current figure
  • Figure: the given Figure instance
  • int: a figure number
  • str: a figure name
  • ‘all’: all figures
  • Reference

  1. 绘图: matplotlib核心剖析(面向函数编程||面向对象编程;图像坐标||显示体系||数据坐标)