Metadata-Version: 2.1
Name: mplhep
Version: 0.1.19
Summary: Matplotlib styles for HEP
Home-page: https://github.com/andrzejnovak/mplhep/
Author: andrzejnovak
Author-email: novak5andrzej@gmail.com
License: MIT License
Description: <p float="left">
          <img src="https://raw.githubusercontent.com/scikit-hep/mplhep/master/docs/source/_static/mplhep.png" width="300"/>
        </p>
        
        [![Build Status](https://travis-ci.org/scikit-hep/mplhep.svg?branch=master)](https://travis-ci.org/scikit-hep/mplhep)
        [![GitHub Actions Status: CI](https://github.com/scikit-hep/mplhep/workflows/CI/CD/badge.svg)](https://github.com/scikit-hep/mplhep/actions?query=workflow%3ACI%2FCD+branch%3Amaster)
        [![GitHub Actions Status: Publish](https://github.com/scikit-hep/mplhep/workflows/publish%20distributions/badge.svg)](https://github.com/scikit-hep/mplhep/actions?query=workflow%3A%22publish+distributions%22+branch%3Amaster)
        
        [![PyPI version](https://badge.fury.io/py/mplhep.svg)](https://badge.fury.io/py/mplhep)
        [![Supported Python versions](https://img.shields.io/pypi/pyversions/mplhep.svg)](https://pypi.org/project/mplhep/)
        
        ![Hits](https://countimports.pythonanywhere.com/nocount/tag.svg?url=count_mplhep_imports)
        [![PyPI download week](https://img.shields.io/pypi/dw/mplhep?label=downloads%20%28incl%20CI%29)](https://img.shields.io/pypi/dw/mplhep?label=downloads%20%28incl%20CI%29)
        
        [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/scikit-hep/mplhep/master)
        
        A set of helpers for `matplotlib` to more easily produce plots typically
        needed in HEP as well as style them in way that's compatible with current
        collaboration requirements (ROOT).
        
        
        # Installation
        ```
        pip install mplhep
        ```
        # Getting Started
        ### Styling
        ```
        import matplotlib.pyplot as plt
        import mplhep as hep
        plt.style.use(hep.style.ROOT) # For now ROOT defaults to CMS
        # Or choose one of the experiment styles
        plt.style.use(hep.style.CMS)
        # or
        plt.style.use(hep.style.ATLAS)
        # or
        plt.style.use(hep.style.LHCb)
        ```
        Experiment specific style are also available. **If the default styles are not what you need, I'd be happy to merge in new styles or modify the current ones.**
        
        Default experiment labels are also available
        ```
        # Overall - both left and right annotation
        hep.<experiment>.label()
        # Just experiment label and <text> such as 'Preliminary' or 'Simulation'
        hep.<experiment>.text(<text>)
        ```
        
        ### Plotting
        #### 1D Histograms
        ```
        h, bins = [2, 3, 2], [0, 1, 2, 3]
        hep.histplot(h, bins)
        ```
        #### 2D Histograms
        ```
        import numpy as np
        xbins, ybins = [0, 1, 2, 3], [0, 1, 2, 3]
        H = np.array([[2,3,2], [1,2,1], [3,1,3]])
        hep.hist2dplot(H, xbins, ybins)
        ```
        Several useful style adjustments differing form mpl defaults are also available separately or within
        ```
        hep.mpl_magic()
        ```
        - align axis labels to the right
        - Set lower ylim to 0, if no data is obscured
        - Autoscale upper ylim to fit legend without overlapping with plots
        
        # Basic Use
        ## Styling
        #### Minimal Example
        ```diff
        import numpy as np
        import matplotlib.pyplot as plt
        + import mplhep as hep
        
        x = np.random.uniform(0, 10, 240)
        y = np.random.normal(512, 112, 240)
        z = np.random.normal(0.5, 0.1, 240)
        
        + plt.style.use(hep.style.ROOT)
        f, ax = plt.subplots()
        ax.scatter(x,y, c=z);
        
        ```
        <p float="center">
          <img src="img/style0.png" width="300" />
          <img src="img/style1.png" width="300" />
        </p>
        *(gray padded to see figure size)
        
        ## Plotting
        A pre-binned histogram plotter is provided, as this functionality is currently
        awkward in `mpl`.
        
        ```diff
        import numpy as np
        import matplotlib.pyplot as plt
        + import mplhep as hep
        
        h, bins = np.histogram(np.random.normal(10,3,1000))
        
        f, ax = plt.subplots()
        - ax.step(bins, np.r_[h, h[-1]], step='post')
        + hep.histplot(h, bins)
        
        ```
        Additional functionality is also wrapped inside.
        - if `h` is a list of arrays or a 2d array, separate histograms will be plotted
        - `stack=True` stack plots
        - `yerr={None | True | array of ndim = h.ndim | array of ndim = h.ndim + 1}` is
        available to plot `{ no | Poisson | one-sided | two-sided }` errors.
        - `density=True` show density
        - `weights`
        - `histype={'step' | 'fill'}`
        - `edges` when plotting with `'step'` close the shape outside
        
        An effort has been made to provide API as close as possible to `plt.hist()`
        
        ### 2D Histogram plotter is also included
        
        ```
        import numpy as np
        import matplotlib.pyplot as plt
        import mplhep as hep
        
        fig, ax = plt.subplots()
        
        xedges = [0, 1, 3, 5]
        yedges = [0, 2, 3, 4, 6,7]
        x = np.random.normal(2, 1, 100)
        y = np.random.normal(4, 1, 100)
        H, xedges, yedges = np.histogram2d(x, y, bins=(xedges, yedges))
        
        hep.hist2dplot(H, xedges, yedges)
        
        ```
        
        # More Information
        
        ### Available styles:
        
        - `plt.style.use(style.ROOT)` - Default (figure 10x10 inches, full column size)
        - `plt.style.use(style.ROOTlegacy)` - Same as ROOT stylele above, but use ROOT fonts - Helvetica, fallback to Arial - instead of TeX Gyre Heros, requires font to be already available on the system
        - `plt.style.use(style.ROOTs)` - Default (figure 6x6 inches, half column size)
        - `plt.style.use(style.fira)` - use Fira Sans
        
        - `plt.style.use(style.firamath)` - use Fira Math
        
        - `plt.style.use(style.ATLAS)` - use default ATLAS style from https://github.com/kratsg/ATLASstylempl, note it defaults to Helvetica, which is not supplied in this package as explained below, and will only work properly if already available on the system
        
        #### Styles can be chained:
        - e.g. `plt.style.use([style.ROOT, style.fira, style.firamath])`
        - reappearing rcParams get overwritten silently
        
        #### Styles can be modified on the fly
        - Since styles are dictionaries and they can be chained/overwritten they can be easiely modified on the fly. e.g.
        ```
        plt.style.use(style.ROOT)
        plt.style.use({"font.sans-serif":'Comic Sans MS'})
        ```
        
        #### Styling with LaTeX
        - `plt.style.use(style.ROOTtex)` - Use LaTeX to produce all text labels
        - Requires having the full tex-live distro
        - True Helvetica
        - Use sansmath as the math font
        - Takes longer and not always better
        - In general more possibilities, but a bit more difficult to get everything working properly
        
        ## Experiment annotations
        ```diff
        + plt.style.use(hep.cms.style.ROOT)
        + ax = hep.cms.cmslabel(ax, data=False, paper=False, year='2017')
        ```
        <p float="center">
          <img src="img/style1.png" width="400" />
          <img src="img/style2.png" width="400" />
        </p>
        
        
        ## Plot helper functions
        
        #### Box (or other) aspect
        
        #### Square plot with subplot (works with `tight_layout()`)
        
        #### Append a new axes, without modifying the original
        
        # Notes
        
        ## Consistency \& Fonts
        As it is ROOT does not come with any fonts and therefore relies on using system fonts. Therfore the font in a figure can be dependent on whether it was produced on OSX or PC. The default sans-serif font used is Helvetica, but it only comes with OSX, in Windows this will silently fallback to Arial.
        
        ### License
        Both Helvetica and Arial are proprietary, which as far as fonts go means you can use it to create any text/graphics once you have the license, but you cannot redistribute the font files as part of other software. That means we cannot just package Helvetica with this to make sure everyone has the same font in plots.
        
        Luckily for fonts it seems only the software is copyrighted, not the actual shapes, which means there are quite a few open alternatives with similar look. The most closely resembling Helvetica being Tex Gyre Heros
        
        #### Tex Gyre Heros
        http://www.gust.org.pl/projects/e-foundry/tex-gyre/heros
        
        You can compare yourself if the differences are meanigful below.
        
        <p float="center">
          <img src="FontComp.png" width="400" />
        </p>
        
        They are Tex Gyre Heros, Helvetica and Arial respecively.
        
        ### Math Fonts
        - Math fonts are a separate set from regular fonts due to the amount of special characters
        - It's not trivial to make sure you get a matching math font to your regular font
        - Most math-fonts are serif fonts, but this is not ideal if one wants to use sans-serif font for normal text like Helvetica or Arial
        - The number of sans-serif math-fonts is very limited
         	- The number of **open** sans-serif math-fonts is **extremely** limited
         	- Basically there's two, Fira Sans and GFS Neohellenic Math, of which I like Fira Sans better
         	- https://tex.stackexchange.com/questions/374250/are-there-opentype-sans-math-fonts-under-development
        
        For consistent styling Fira Sans is included as well.
        #### Default Fira Sans
        https://github.com/mozilla/Fira
        #### Math font extension
        https://github.com/firamath/firamath
        
        ## What doesn't work
        
        ### Context styles and fonts
        ```
        with pyplot.style.context(style.ROOT):
            plotting...
        ```
        - This syntax would be ideal, however, it doesn't work properly for fonts and there are no plans by mpl devs to fix this behaviour https://github.com/matplotlib/matplotlib/issues/11673
        
        For now one has to set the style globally
        ```
        plt.style.use(style.ROOT)
        ```
        
        
        ### Use in publications
        
        Updating list of citations and use cases of `mplhep` in publications:
        
        - [Simultaneous Jet Energy and Mass Calibrations with Neural Networks](https://cds.cern.ch/record/2706189), ATLAS Collaboration, 2019
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: develop
Provides-Extra: complete
