.. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_axes_grid1_parasite_simple.py: =============== Parasite Simple =============== .. image:: /gallery/axes_grid1/images/sphx_glr_parasite_simple_001.png :class: sphx-glr-single-img .. code-block:: python from mpl_toolkits.axes_grid1 import host_subplot import matplotlib.pyplot as plt host = host_subplot(111) par = host.twinx() host.set_xlabel("Distance") host.set_ylabel("Density") par.set_ylabel("Temperature") p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density") p2, = par.plot([0, 1, 2], [0, 3, 2], label="Temperature") leg = plt.legend() host.yaxis.get_label().set_color(p1.get_color()) leg.texts[0].set_color(p1.get_color()) par.yaxis.get_label().set_color(p2.get_color()) leg.texts[1].set_color(p2.get_color()) plt.show() .. _sphx_glr_download_gallery_axes_grid1_parasite_simple.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download :download:`Download Python source code: parasite_simple.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: parasite_simple.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature Keywords: matplotlib code example, codex, python plot, pyplot `Gallery generated by Sphinx-Gallery `_