Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。
matplotlib.figure.Figure.savefig()方法
matplotlib库的savefig()方法图形模块用于保存当前图形。
用法:savefig(self, fname, *, transparent=None, **kwargs)
参数:此方法接受下面讨论的以下参数:
fname:此参数是文件名字符串。
返回值:此方法不返回任何值。
以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.savefig()函数:
范例1:
# Implementation of matplotlib function
import numpy as np
import matplotlib.cm as cm
import matplotlib.mlab as mlab
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
s = ax.scatter([1, 2, 3], [4, 5, 6])
s.set_url(‘http://www.google.com’)
fig.savefig(‘scatter.svg’)
fig.suptitle(“””matplotlib.figure.Figure.savefig()
function E