.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "matplotlib/plot_contourf_cbar2.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_matplotlib_plot_contourf_cbar2.py: multiple contourf plots with colorbar2 ================================== .. GENERATED FROM PYTHON SOURCE LINES 5-24 .. image-sg:: /matplotlib/images/sphx_glr_plot_contourf_cbar2_001.png :alt: plot contourf cbar2 :srcset: /matplotlib/images/sphx_glr_plot_contourf_cbar2_001.png :class: sphx-glr-single-img .. code-block:: default import numpy as np import matplotlib.pyplot as plt kw = {"height_ratios": [1,1],"width_ratios":[98,2]} fig, ax = plt.subplots(2,2, gridspec_kw=kw,figsize=(4,8)) x = np.linspace(-5,5,1000) y = np.linspace(-5,5,1000) X,Y = np.meshgrid(x,y) H = lambda q,p: p**2/2 + np.cos(q) ax[0,0].plot(x, np.sin(x)) ax[0,1].axis('off') cf=ax[1,0].contourf(X,Y, H(X,Y), 10, cmap=plt.cm.hot_r) fig.colorbar(cf, cax=ax[1,1]) plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.145 seconds) .. _sphx_glr_download_matplotlib_plot_contourf_cbar2.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_contourf_cbar2.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_contourf_cbar2.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_