Note
Go to the endto download the full example code.
Add lines directly to a figure#
You can add artists such as aLine2D directly to a figure. This istypically useful for visual structuring.
importmatplotlib.pyplotaspltimportmatplotlib.linesaslinesfig,axs=plt.subplots(2,2,gridspec_kw={'hspace':0.4,'wspace':0.4})fig.add_artist(lines.Line2D([0,1],[0.47,0.47],linewidth=3))fig.add_artist(lines.Line2D([0.5,0.5],[1,0],linewidth=3))plt.show()

References
The use of the following functions, methods, classes and modules is shownin this example: