.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "example_gallery/2d_hist/2d_hist_with_projections.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_example_gallery_2d_hist_2d_hist_with_projections.py: 2D histogram with projections ============================== Plot a 2D histogram with the two 1D projections. .. GENERATED FROM PYTHON SOURCE LINES 7-37 .. image-sg:: /example_gallery/2d_hist/images/sphx_glr_2d_hist_with_projections_001.svg :alt: 2d hist with projections :srcset: /example_gallery/2d_hist/images/sphx_glr_2d_hist_with_projections_001.svg :class: sphx-glr-single-img .. code-block:: Python from plothist_utils import get_dummy_data df = get_dummy_data() ### from plothist import make_2d_hist, plot_2d_hist_with_projections name_x = "variable_0" name_y = "variable_1" h = make_2d_hist([df[name_x], df[name_y]]) ( fig, ax_2d, ax_x_projection, ax_y_projection, ax_colorbar, ) = plot_2d_hist_with_projections( h, xlabel="variable_0", ylabel="variable_1", ylabel_x_projection="Entries", xlabel_y_projection="Entries", offset_x_labels=False, colorbar_kwargs={"label": "Entries"}, ) fig.savefig("2d_hist_with_projections.svg", bbox_inches="tight") .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 1.485 seconds) .. _sphx_glr_download_example_gallery_2d_hist_2d_hist_with_projections.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: 2d_hist_with_projections.ipynb <2d_hist_with_projections.ipynb>` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: 2d_hist_with_projections.py <2d_hist_with_projections.py>` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: 2d_hist_with_projections.zip <2d_hist_with_projections.zip>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_