1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
.. _usage-axes:
Axes
====
In boost-histogram, a histogram is collection of Axis objects and a
storage.
Axis types
----------
There are several axis types to choose from.
Regular axis
^^^^^^^^^^^^
.. image:: ../_images/axis_regular.png
:alt: Regular axis illustration
:align: center
.. py:function:: bh.axis.Regular(bins, start, stop, *, metadata="", underflow=True, overflow=True, circular=False, growth=False, transform=None)
:noindex:
The regular axis can have overflow and/or underflow bins (enabled by default). It can also grow if ``growth=True`` is given. In general, you should not mix options, as growing axis will already have the correct flow bin settings. The exception is ``underflow=False, overflow=False``, which is quite useful together to make an axis with no flow bins at all.
There are some other useful axis types based on regular axis:
.. image:: ../_images/axis_circular.png
:alt: Regular axis illustration
:align: center
.. py:function:: bh.axis.Regular(..., circular=True)
:noindex:
This wraps around, so that out-of-range values map back into the valid range circularly.
Regular axis: Transforms
^^^^^^^^^^^^^^^^^^^^^^^^
Regular axes support transforms, as well; these are functions that convert from an external,
non-regular bin spacing to an internal, regularly spaced one. A transform is made of two functions,
a ``forward`` function, which converts external to internal (and for which the transform is usually named),
and a ``inverse`` function, which converts from the internal space back to the external space. If you
know the functional form of your spacing, you can get the benefits of a constant performance scaling
just like you would with a normal regular axis, rather than falling back to a variable axis and a poorer
scaling from the bin edge lookup required there.
You can define your own functions for transforms, see :ref:`usage-transforms`. If you use compiled/numba
functions, you can keep the high performance you would expect from a Regular axis. There are also several
precompiled transforms:
.. py:function:: bh.axis.Regular(..., transform=bh.axis.transform.sqrt)
:noindex:
This is an axis with bins transformed by a sqrt.
.. py:function:: bh.axis.Regular(..., transform=bh.axis.transform.log)
:noindex:
Transformed by log.
.. py:function:: bh.axis.Regular(..., transform=bh.axis.transform.Power(v))
:noindex:
Transformed by a power (the argument is the power).
Variable axis
^^^^^^^^^^^^^
.. image:: ../_images/axis_variable.png
:alt: Regular axis illustration
:align: center
.. py:function:: bh.axis.Variable([edge1, ...], *, metadata="", underflow=True, overflow=True, circular=False, growth=False)
:noindex:
You can set the bin edges explicitly with a variable axis. The options are mostly the same as the Regular axis.
Integer axis
^^^^^^^^^^^^
.. image:: ../_images/axis_integer.png
:alt: Regular axis illustration
:align: center
.. py:function:: bh.axis.Integer(start, stop, *, metadata="", underflow=True, overflow=True, circular=False, growth=False)
:noindex:
This could be mimicked with a regular axis, but is simpler and slightly faster. Bins are whole integers only,
so there is no need to specify the number of bins.
One common use for an integer axis could be a true/false axis:
.. code-block:: python3
bool_axis = bh.axis.Integer(0, 2, underflow=False, overflow=False)
Another could be for an IntEnum if the values are contiguous.
Category axis
-------------
.. image:: ../_images/axis_category.png
:alt: Regular axis illustration
:align: center
.. py:function:: bh.axis.IntCategory([value1, ...], metadata="", growth=False)
:noindex:
You should put integers in a category axis; but unlike an integer axis, the integers do not need to be adjacent.
One use for an IntCategory axis is for an IntEnum:
.. code-block:: python3
import enum
class MyEnum(enum.IntEnum):
a = 1
b = 5
my_enum_axis = bh.axis.IntEnum(list(MyEnum), underflow=False, overflow=False)
.. py:function:: bh.axis.StrCategory([str1, ...], metadata="", growth=False)
:noindex:
You can put strings in a category axis as well. The fill method supports lists or arrays of strings
to allow this to be filled.
Boolean axis
^^^^^^^^^^^^
.. py:function:: bh.axis.Boolean(metadata="")
:noindex:
This is an axis that holds either ``True`` and ``False`` only.
Manipulating Axes
-----------------
Axes have a variety of methods and properties that are useful. When inside a histogram, you can also access
these directly on the ``hist.axes`` object, and they return a tuple of valid results. If the property or method
normally returns an array, the ``axes`` version returns a broadcasting-ready version in the output tuple.
|