Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. El módulo de figura proporciona el artista de nivel superior, la figura, que contiene todos los elementos de la trama. Este módulo se utiliza para controlar el espaciado predeterminado de las subparcelas y el contenedor de nivel superior para todos los elementos de la parcela.
método matplotlib.figure.Figure.savefig()
El módulo de figura del método savefig() de la biblioteca matplotlib se utiliza para guardar la figura actual.
Sintaxis: savefig(self, fname, *, transparente=Ninguno, **kwargs)
Parámetros: este método acepta los siguientes parámetros que se analizan a continuación:
- fname: este parámetro es la string del nombre del archivo.
Devoluciones: este método no devuelve ningún valor.
Los siguientes ejemplos ilustran la función matplotlib.figure.Figure.savefig() en matplotlib.figure:
Ejemplo 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 Example\n\n""", fontweight ="bold") plt.show()
Producción:
Ejemplo 2:
# 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() delta = 0.025 x = y = np.arange(-3.0, 3.0, delta) X, Y = np.meshgrid(x, y) Z1 = np.exp(-X**2 - Y**2) Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) Z = (Z1 - Z2) * 2 im = ax.imshow(Z, interpolation ='bilinear', cmap = cm.gray, origin ='lower', extent =[-3, 3, -3, 3]) fig.savefig('image.svg') fig.suptitle("""matplotlib.figure.Figure.savefig() function Example\n\n""", fontweight ="bold") plt.show()
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA