Module plottools.labels

Annotate axis with label and unit.

Axes member functions

Settings

mpl.rcParams defined by the labels module:

axes.label.format: '{label} [{unit}]'

Install/uninstall labels functions

You usually do not need to call the install_labels() function. Upon loading the labels module, install_labels() is called automatically.

Expand source code
"""
Annotate axis with label and unit.


## Axes member functions

- `set_xlabel()`: format the xlabel from a label and an unit.
- `set_ylabel()`: format the ylabel from a label and an unit.
- `set_zlabel()`: format the zlabel from a label and an unit.


## Settings

- `labels_params()`: set parameters for axis labels.

`mpl.rcParams` defined by the labels module:
```py
axes.label.format: '{label} [{unit}]'
```

## Install/uninstall labels functions

You usually do not need to call the `install_labels()` function. Upon
loading the labels module, `install_labels()` is called automatically.

- `install_labels()`: install functions of the labels module in matplotlib.
- `uninstall_labels()`: uninstall all code of the labels module from matplotlib.
"""

import numpy as np
import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.rcsetup as mrc
from mpl_toolkits.mplot3d import Axes3D


def __axis_label(label, unit=None):
    """ Format an axis label from a label and a unit
    
    Parameters
    ----------
    label: string
        The name of the axis.
    unit: string
        The unit of the axis values.

    Returns
    -------
    label: string
        An axis label formatted from `label` and `unit` according to
        the `rcParams['axes.label.format']` string.
    """
    if not unit:
        return label
    else:
        return mpl.rcParams['axes.label.format'].format(label=label, unit=unit)


def set_xlabel(ax, label, unit=None, **kwargs):
    """ Format the xlabel from a label and an unit.

    Uses the `__axis_label()` function to format the axis label.
    
    Parameters
    ----------
    label: string
        The name of the axis.
    unit: string
        The unit of the axis values.
    kwargs: key-word arguments
        Further arguments passed on to the `set_xlabel()` function.
    """
    ax.__set_xlabel_labels(__axis_label(label, unit), **kwargs)

        
def set_ylabel(ax, label, unit=None, **kwargs):
    """ Format the ylabel from a label and an unit.

    Uses the `__axis_label()` function to format the axis label.
    
    Parameters
    ----------
    label: string
        The name of the axis.
    unit: string
        The unit of the axis values.
    kwargs: key-word arguments
        Further arguments passed on to the `set_ylabel()` function.
    """
    ax.__set_ylabel_labels(__axis_label(label, unit), **kwargs)

        
def set_zlabel(ax, label, unit=None, **kwargs):
    """ Format the zlabel from a label and an unit.

    Uses the `__axis_label()` function to format the axis label.
    
    Parameters
    ----------
    label: string
        The name of the axis.
    unit: string
        The unit of the axis values.
    kwargs: key-word arguments
        Further arguments passed on to the `set_zlabel()` function.
    """
    ax.__set_zlabel_labels(__axis_label(label, unit), **kwargs)


def labels_params(labelformat=None, labelsize=None, labelweight=None,
                  labelcolor='axes', labelpad=None,
                  xlabellocation=None, ylabellocation=None):
    """ Set parameters for axis labels.
                  
    Only parameters that are not `None` are updated.
    
    Parameters
    ----------
    labelformat: string
        Set the string specifying how axes labels are formatted.
        In this string '{label}' is replaced by the axes' label,
        and '{unit}' is replaced by the axes' unit.
        The default format string is '{label} [{unit}]'.
        Set rcParam `axes.label.format`.
    labelsize: float or string
        Set font size for x- and y-axis labels.
        Sets rcParam `axes.labelsize`.
    labelweight: {'normal', 'bold', 'bolder', 'lighter'}
        Set font weight for x- and y-axis labels.
        Sets rcParam `axes.labelweight`.
    labelcolor: matplotlib color or 'axes'
        Color of x- and y-axis labels.
        If 'axes' set to color of axes (rcParam `axes.edgecolor`).
        Sets rcParam `axes.labelcolor`.
    labelpad: float
        Set space between x- and y-axis labels and axis in points.
        Sets rcParam `axes.labelpad`.
    xlabellocation: {'center', 'left', 'right'}
        Location of xlabels. Sets rcParams `xaxis.labellocation`.
    ylabellocation: {'center', 'bottom', 'top'}
        Location of ylabels. Sets rcParams `yaxis.labellocation`.
    """
    if labelformat is not None and 'axes.label.format' in mrc._validators:
        mpl.rcParams['axes.label.format'] = labelformat
    if labelsize is not None:
        mpl.rcParams['axes.labelsize'] = labelsize
    if labelweight is not None:
        mpl.rcParams['axes.labelweight'] = labelweight
    if labelcolor == 'axes':
        mpl.rcParams['axes.labelcolor'] = mpl.rcParams['axes.edgecolor']
    elif labelcolor is not None:
        mpl.rcParams['axes.labelcolor'] = labelcolor
    if 'axes.labelpad' in mpl.rcParams and labelpad is not None:
        mpl.rcParams['axes.labelpad'] = labelpad
    if 'xaxis.labellocation' in mpl.rcParams and xlabellocation is not None:
        mpl.rcParams['xaxis.labellocation'] = xlabellocation
    if 'yaxis.labellocation' in mpl.rcParams and ylabellocation is not None:
        mpl.rcParams['yaxis.labellocation'] = ylabellocation


def install_labels():
    """ Install labels functions on matplotlib axes.

    Adds `matplotlib.rcParams`:
    ```py
    axes.label.format: '{label} [{unit}]'
    ```

    This function is also called automatically upon importing the module.

    See also
    --------
    set_xlabel(), uninstall_labels()
    """
    if not hasattr(mpl.axes.Axes, '__set_xlabel_labels'):
        mpl.axes.Axes.__set_xlabel_labels = mpl.axes.Axes.set_xlabel
        mpl.axes.Axes.set_xlabel = set_xlabel
    if not hasattr(mpl.axes.Axes, '__set_ylabel_labels'):
        mpl.axes.Axes.__set_ylabel_labels = mpl.axes.Axes.set_ylabel
        mpl.axes.Axes.set_ylabel = set_ylabel
    if not hasattr(Axes3D, '__set_zlabel_labels'):
        Axes3D.__set_zlabel_labels = Axes3D.set_zlabel
        Axes3D.set_zlabel = set_zlabel
    # add labels parameter to rc configuration:
    mrc._validators['axes.label.format'] = mrc.validate_string
    mpl.rcParams['axes.label.format'] = '{label} [{unit}]'
        

def uninstall_labels():
    """ Uninstall labels functions from matplotlib axes.

    Call this function to disable anything that was installed by `install_labels()`.

    See also
    --------
    install_labels()
    """
    if hasattr(mpl.axes.Axes, '__set_xlabel_labels'):
        mpl.axes.Axes.set_xlabel = mpl.axes.Axes.__set_xlabel_labels
        delattr(mpl.axes.Axes, '__set_xlabel_labels')
    if hasattr(mpl.axes.Axes, '__set_ylabel_labels'):
        mpl.axes.Axes.set_ylabel = mpl.axes.Axes.__set_ylabel_labels
        delattr(mpl.axes.Axes, '__set_ylabel_labels')
    if hasattr(Axes3D, '__set_zlabel_labels'):
        Axes3D.set_zlabel = Axes3D.__set_zlabel_labels
        delattr(Axes3D, '__set_zlabel_labels')
    # remove labels parameter from mpl.ptParams:
    mrc._validators.pop('axes.label.format', None)
    #mpl.rcParams.pop('axes.label.format', None)


install_labels()


def demo():
    """ Run a demonstration of the labels module.
    """
    fig, axs = plt.subplots(1, 2, figsize=(9, 5))
    fig.subplots_adjust(wspace=0.5)
    fig.suptitle('plottools.labels')

    x = np.linspace(0, 20, 200)
    y = np.sin(x)
    
    axs[0].plot(x, y)
    axs[0].set_ylim(-1.0, 1.7)
    axs[0].text(1.0, 1.3, "ax.set_xlabel('Time', 'ms')")
    axs[0].text(1.0, 1.1, "ax.set_ylabel('Amplitude', 'Pa')")
    axs[0].set_xlabel('Time', 'ms')
    axs[0].set_ylabel('Amplitude', 'Pa')
    
    labels_params(labelformat='{label} / {unit}')   # usually you would do this before any plotting!
    axs[1].plot(x, 1000*y)
    axs[1].set_ylim(-1000, 1700)
    axs[1].text(1.0, 1500, "labels_params('{label} / {unit}')")
    axs[1].text(1.0, 1300, "ax.set_xlabel('Time', 'ms')")
    axs[1].text(1.0, 1100, "ax.set_ylabel('Amplitude', 'Pa')")
    axs[1].set_xlabel('Time', 'ms')
    axs[1].set_ylabel('Amplitude', 'Pa')
    
    plt.show()

if __name__ == "__main__":
    demo()

Functions

def set_xlabel(ax, label, unit=None, **kwargs)

Format the xlabel from a label and an unit.

Uses the __axis_label() function to format the axis label.

Parameters

label : string
The name of the axis.
unit : string
The unit of the axis values.
kwargs : key-word arguments
Further arguments passed on to the set_xlabel() function.
Expand source code
def set_xlabel(ax, label, unit=None, **kwargs):
    """ Format the xlabel from a label and an unit.

    Uses the `__axis_label()` function to format the axis label.
    
    Parameters
    ----------
    label: string
        The name of the axis.
    unit: string
        The unit of the axis values.
    kwargs: key-word arguments
        Further arguments passed on to the `set_xlabel()` function.
    """
    ax.__set_xlabel_labels(__axis_label(label, unit), **kwargs)
def set_ylabel(ax, label, unit=None, **kwargs)

Format the ylabel from a label and an unit.

Uses the __axis_label() function to format the axis label.

Parameters

label : string
The name of the axis.
unit : string
The unit of the axis values.
kwargs : key-word arguments
Further arguments passed on to the set_ylabel() function.
Expand source code
def set_ylabel(ax, label, unit=None, **kwargs):
    """ Format the ylabel from a label and an unit.

    Uses the `__axis_label()` function to format the axis label.
    
    Parameters
    ----------
    label: string
        The name of the axis.
    unit: string
        The unit of the axis values.
    kwargs: key-word arguments
        Further arguments passed on to the `set_ylabel()` function.
    """
    ax.__set_ylabel_labels(__axis_label(label, unit), **kwargs)
def set_zlabel(ax, label, unit=None, **kwargs)

Format the zlabel from a label and an unit.

Uses the __axis_label() function to format the axis label.

Parameters

label : string
The name of the axis.
unit : string
The unit of the axis values.
kwargs : key-word arguments
Further arguments passed on to the set_zlabel() function.
Expand source code
def set_zlabel(ax, label, unit=None, **kwargs):
    """ Format the zlabel from a label and an unit.

    Uses the `__axis_label()` function to format the axis label.
    
    Parameters
    ----------
    label: string
        The name of the axis.
    unit: string
        The unit of the axis values.
    kwargs: key-word arguments
        Further arguments passed on to the `set_zlabel()` function.
    """
    ax.__set_zlabel_labels(__axis_label(label, unit), **kwargs)
def labels_params(labelformat=None, labelsize=None, labelweight=None, labelcolor='axes', labelpad=None, xlabellocation=None, ylabellocation=None)

Set parameters for axis labels.

Only parameters that are not None are updated.

Parameters

labelformat : string
Set the string specifying how axes labels are formatted. In this string '{label}' is replaced by the axes' label, and '{unit}' is replaced by the axes' unit. The default format string is '{label} [{unit}]'. Set rcParam axes.label.format.
labelsize : float or string
Set font size for x- and y-axis labels. Sets rcParam axes.labelsize.
labelweight : {'normal', 'bold', 'bolder', 'lighter'}
Set font weight for x- and y-axis labels. Sets rcParam axes.labelweight.
labelcolor : matplotlib color or 'axes'
Color of x- and y-axis labels. If 'axes' set to color of axes (rcParam axes.edgecolor). Sets rcParam axes.labelcolor.
labelpad : float
Set space between x- and y-axis labels and axis in points. Sets rcParam axes.labelpad.
xlabellocation : {'center', 'left', 'right'}
Location of xlabels. Sets rcParams xaxis.labellocation.
ylabellocation : {'center', 'bottom', 'top'}
Location of ylabels. Sets rcParams yaxis.labellocation.
Expand source code
def labels_params(labelformat=None, labelsize=None, labelweight=None,
                  labelcolor='axes', labelpad=None,
                  xlabellocation=None, ylabellocation=None):
    """ Set parameters for axis labels.
                  
    Only parameters that are not `None` are updated.
    
    Parameters
    ----------
    labelformat: string
        Set the string specifying how axes labels are formatted.
        In this string '{label}' is replaced by the axes' label,
        and '{unit}' is replaced by the axes' unit.
        The default format string is '{label} [{unit}]'.
        Set rcParam `axes.label.format`.
    labelsize: float or string
        Set font size for x- and y-axis labels.
        Sets rcParam `axes.labelsize`.
    labelweight: {'normal', 'bold', 'bolder', 'lighter'}
        Set font weight for x- and y-axis labels.
        Sets rcParam `axes.labelweight`.
    labelcolor: matplotlib color or 'axes'
        Color of x- and y-axis labels.
        If 'axes' set to color of axes (rcParam `axes.edgecolor`).
        Sets rcParam `axes.labelcolor`.
    labelpad: float
        Set space between x- and y-axis labels and axis in points.
        Sets rcParam `axes.labelpad`.
    xlabellocation: {'center', 'left', 'right'}
        Location of xlabels. Sets rcParams `xaxis.labellocation`.
    ylabellocation: {'center', 'bottom', 'top'}
        Location of ylabels. Sets rcParams `yaxis.labellocation`.
    """
    if labelformat is not None and 'axes.label.format' in mrc._validators:
        mpl.rcParams['axes.label.format'] = labelformat
    if labelsize is not None:
        mpl.rcParams['axes.labelsize'] = labelsize
    if labelweight is not None:
        mpl.rcParams['axes.labelweight'] = labelweight
    if labelcolor == 'axes':
        mpl.rcParams['axes.labelcolor'] = mpl.rcParams['axes.edgecolor']
    elif labelcolor is not None:
        mpl.rcParams['axes.labelcolor'] = labelcolor
    if 'axes.labelpad' in mpl.rcParams and labelpad is not None:
        mpl.rcParams['axes.labelpad'] = labelpad
    if 'xaxis.labellocation' in mpl.rcParams and xlabellocation is not None:
        mpl.rcParams['xaxis.labellocation'] = xlabellocation
    if 'yaxis.labellocation' in mpl.rcParams and ylabellocation is not None:
        mpl.rcParams['yaxis.labellocation'] = ylabellocation
def install_labels()

Install labels functions on matplotlib axes.

Adds matplotlib.rcParams:

axes.label.format: '{label} [{unit}]'

This function is also called automatically upon importing the module.

See Also

set_xlabel(), uninstall_labels()

Expand source code
def install_labels():
    """ Install labels functions on matplotlib axes.

    Adds `matplotlib.rcParams`:
    ```py
    axes.label.format: '{label} [{unit}]'
    ```

    This function is also called automatically upon importing the module.

    See also
    --------
    set_xlabel(), uninstall_labels()
    """
    if not hasattr(mpl.axes.Axes, '__set_xlabel_labels'):
        mpl.axes.Axes.__set_xlabel_labels = mpl.axes.Axes.set_xlabel
        mpl.axes.Axes.set_xlabel = set_xlabel
    if not hasattr(mpl.axes.Axes, '__set_ylabel_labels'):
        mpl.axes.Axes.__set_ylabel_labels = mpl.axes.Axes.set_ylabel
        mpl.axes.Axes.set_ylabel = set_ylabel
    if not hasattr(Axes3D, '__set_zlabel_labels'):
        Axes3D.__set_zlabel_labels = Axes3D.set_zlabel
        Axes3D.set_zlabel = set_zlabel
    # add labels parameter to rc configuration:
    mrc._validators['axes.label.format'] = mrc.validate_string
    mpl.rcParams['axes.label.format'] = '{label} [{unit}]'
def uninstall_labels()

Uninstall labels functions from matplotlib axes.

Call this function to disable anything that was installed by install_labels().

See Also

install_labels()

Expand source code
def uninstall_labels():
    """ Uninstall labels functions from matplotlib axes.

    Call this function to disable anything that was installed by `install_labels()`.

    See also
    --------
    install_labels()
    """
    if hasattr(mpl.axes.Axes, '__set_xlabel_labels'):
        mpl.axes.Axes.set_xlabel = mpl.axes.Axes.__set_xlabel_labels
        delattr(mpl.axes.Axes, '__set_xlabel_labels')
    if hasattr(mpl.axes.Axes, '__set_ylabel_labels'):
        mpl.axes.Axes.set_ylabel = mpl.axes.Axes.__set_ylabel_labels
        delattr(mpl.axes.Axes, '__set_ylabel_labels')
    if hasattr(Axes3D, '__set_zlabel_labels'):
        Axes3D.set_zlabel = Axes3D.__set_zlabel_labels
        delattr(Axes3D, '__set_zlabel_labels')
    # remove labels parameter from mpl.ptParams:
    mrc._validators.pop('axes.label.format', None)
    #mpl.rcParams.pop('axes.label.format', None)
def demo()

Run a demonstration of the labels module.

Expand source code
def demo():
    """ Run a demonstration of the labels module.
    """
    fig, axs = plt.subplots(1, 2, figsize=(9, 5))
    fig.subplots_adjust(wspace=0.5)
    fig.suptitle('plottools.labels')

    x = np.linspace(0, 20, 200)
    y = np.sin(x)
    
    axs[0].plot(x, y)
    axs[0].set_ylim(-1.0, 1.7)
    axs[0].text(1.0, 1.3, "ax.set_xlabel('Time', 'ms')")
    axs[0].text(1.0, 1.1, "ax.set_ylabel('Amplitude', 'Pa')")
    axs[0].set_xlabel('Time', 'ms')
    axs[0].set_ylabel('Amplitude', 'Pa')
    
    labels_params(labelformat='{label} / {unit}')   # usually you would do this before any plotting!
    axs[1].plot(x, 1000*y)
    axs[1].set_ylim(-1000, 1700)
    axs[1].text(1.0, 1500, "labels_params('{label} / {unit}')")
    axs[1].text(1.0, 1300, "ax.set_xlabel('Time', 'ms')")
    axs[1].text(1.0, 1100, "ax.set_ylabel('Amplitude', 'Pa')")
    axs[1].set_xlabel('Time', 'ms')
    axs[1].set_ylabel('Amplitude', 'Pa')
    
    plt.show()