AxesΒΆ

This example shows various axes command to position matplotlib axes.

../../../_images/sphx_glr_plot_axes-2_001.png
import matplotlib.pyplot as plt
plt.axes([.1, .1, .5, .5])
plt.xticks([])
plt.yticks([])
plt.text(.1, .1, 'axes([0.1, 0.1, 0.5, 0.5])', ha='left', va='center',
size=16, alpha=.5)
plt.axes([.2, .2, .5, .5])
plt.xticks([])
plt.yticks([])
plt.text(.1, .1, 'axes([0.2, 0.2, 0.5, 0.5])', ha='left', va='center',
size=16, alpha=.5)
plt.axes([.3, .3, .5, .5])
plt.xticks([])
plt.yticks([])
plt.text(.1, .1, 'axes([0.3, 0.3, 0.5, 0.5])', ha='left', va='center',
size=16, alpha=.5)
plt.axes([.4, .4, .5, .5])
plt.xticks([])
plt.yticks([])
plt.text(.1, .1, 'axes([0.4, 0.4, 0.5, 0.5])', ha='left', va='center',
size=16, alpha=.5)
plt.show()

Total running time of the script: ( 0 minutes 0.086 seconds)

Gallery generated by Sphinx-Gallery