Spaziature e margini delle sottotrame #

Regolazione della spaziatura dei margini e delle sottotrame utilizzando pyplot.subplots_adjust.

Nota

C'è anche una finestra degli strumenti per regolare i margini e le spaziature delle figure visualizzate in modo interattivo. Può essere aperto tramite la barra degli strumenti o chiamando pyplot.subplot_tool.

le sottotrame si adattano
import matplotlib.pyplot as plt
import numpy as np

# Fixing random state for reproducibility
np.random.seed(19680801)

plt.subplot(211)
plt.imshow(np.random.random((100, 100)))
plt.subplot(212)
plt.imshow(np.random.random((100, 100)))

plt.subplots_adjust(bottom=0.1, right=0.8, top=0.9)
cax = plt.axes([0.85, 0.1, 0.075, 0.8])
plt.colorbar(cax=cax)

plt.show()

Galleria generata da Sphinx-Gallery