.. 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_uneven.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_uneven.py: 2D histogram, uneven binning ============================ Plot a 2D histogram with uneven binning. .. GENERATED FROM PYTHON SOURCE LINES 7-29 .. image-sg:: /example_gallery/2d_hist/images/sphx_glr_2d_hist_uneven_001.svg :alt: 2d hist uneven :srcset: /example_gallery/2d_hist/images/sphx_glr_2d_hist_uneven_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 name_x = "variable_0" name_y = "variable_1" # Bins [-10,0], [0,10] for variable 1, # and bins [-10,-5], [-5,0], [0,5], [5,10] for variable 2 bins = [[-10, 0, 10], [-10, -5, 0, 5, 10]] h = make_2d_hist([df[name_x], df[name_y]], bins=bins) fig, ax, ax_colorbar = plot_2d_hist(h, colorbar_kwargs={"label": "Entries"}) ax.set_xlabel(name_x) ax.set_ylabel(name_y) fig.savefig("2d_hist_uneven.svg", bbox_inches="tight") .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.914 seconds) .. _sphx_glr_download_example_gallery_2d_hist_2d_hist_uneven.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_uneven.ipynb <2d_hist_uneven.ipynb>` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: 2d_hist_uneven.py <2d_hist_uneven.py>` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: 2d_hist_uneven.zip <2d_hist_uneven.zip>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_