.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "example_gallery/1d_hist/1d_comparison_pull.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_1d_hist_1d_comparison_pull.py: Pull ==== Compare two 1D histograms using the pull method. .. GENERATED FROM PYTHON SOURCE LINES 7-38 .. image-sg:: /example_gallery/1d_hist/images/sphx_glr_1d_comparison_pull_001.svg :alt: 1d comparison pull :srcset: /example_gallery/1d_hist/images/sphx_glr_1d_comparison_pull_001.svg :class: sphx-glr-single-img .. code-block:: Python from plothist_utils import get_dummy_data df = get_dummy_data() name = "variable_1" x1 = df[name][df["category"] == 2] x2 = df[name][df["category"] == 3] x_range = (min(*x1, *x2), max(*x1, *x2)) from plothist import make_hist h1 = make_hist(x1, bins=50, range=x_range) h2 = make_hist(x2, bins=50, range=x_range) ### from plothist import plot_two_hist_comparison fig, ax_main, ax_comparison = plot_two_hist_comparison( h1, h2, xlabel=name, ylabel="Entries", h1_label=r"$h_1$", h2_label=r"$h_2$", comparison="pull", # <--- ) fig.savefig("1d_comparison_pull.svg", bbox_inches="tight") .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.809 seconds) .. _sphx_glr_download_example_gallery_1d_hist_1d_comparison_pull.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: 1d_comparison_pull.ipynb <1d_comparison_pull.ipynb>` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: 1d_comparison_pull.py <1d_comparison_pull.py>` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: 1d_comparison_pull.zip <1d_comparison_pull.zip>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_