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

cla()   # Clear axes
clf()   # Clear figure
close()   #Close a figure window
  • matplotlib.pyplot 官方文档

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

  • matplotlib.pyplot.cla() 官方文档

清除当前座标轴。

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

  • matplotlib.pyplot.clf()官方文档

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

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

  • matplotlib.pyplot.close()官方文档

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核心剖析(面向函数编程||面向对象编程;图像坐标||显示体系||数据坐标)

你可能感兴趣的:(#,小白学Python)