This module contains classes for configuring tick locating and formatting. Generic tick locators and formatters are provided, as well as domain specific custom ones.
Although the locators know nothing about major or minor ticks, they are used by the Axis class to support major and minor tick locating and formatting.
The Locator class is the base class for all tick locators. The locators handle autoscaling of the view limits based on the data limits, and the choosing of tick locations. A useful semi-automatic tick locator is MultipleLocator
. It is initialized with a base, e.g., 10, and it picks axis limits and ticks that are multiples of that base.
The Locator subclasses defined here are:
| |
Finds up to a max number of intervals with ticks at nice locations. | |
Space ticks evenly from min to max. | |
Space ticks logarithmically from min to max. | |
Ticks and range are a multiple of base; either integer or float. | |
Tick locations are fixed. | |
Locator for index plots (e.g., where | |
No ticks. | |
Locator for use with with the symlog norm; works like | |
Locator for logit scaling. | |
Locator for minor ticks when the axis is linear and the major ticks are uniformly spaced. Subdivides the major tick interval into a specified number of minor intervals, defaulting to 4 or 5 depending on the major interval. |
There are a number of locators specialized for date locations - see the dates
module.
You can define your own locator by deriving from Locator. You must override the __call__
method, which returns a sequence of locations, and you will probably want to override the autoscale method to set the view limits from the data limits.
If you want to override the default locator, use one of the above or a custom locator and pass it to the x or y axis instance. The relevant methods are:
ax.xaxis.set_major_locator(xmajor_locator) ax.xaxis.set_minor_locator(xminor_locator) ax.yaxis.set_major_locator(ymajor_locator) ax.yaxis.set_minor_locator(yminor_locator)
The default minor locator is NullLocator
, i.e., no minor ticks on by default.
Note
Locator
instances should not be used with more than one Axis
or Axes
. So instead of:
locator = MultipleLocator(5) ax.xaxis.set_major_locator(locator) ax2.xaxis.set_major_locator(locator)
do the following instead:
ax.xaxis.set_major_locator(MultipleLocator(5)) ax2.xaxis.set_major_locator(MultipleLocator(5))
Tick formatting is controlled by classes derived from Formatter. The formatter operates on a single tick value and returns a string to the axis.
No labels on the ticks. | |
Set the strings manually for the labels. | |
User defined function sets the labels. | |
Use string | |
Use an old-style sprintf format string. | |
Default formatter for scalars: autopick the format string. | |
Formatter for log axes. | |
Format values for log axis using | |
Format values for log axis using | |
Format values for log axis using scientific notation. | |
Probability formatter. | |
Format labels in engineering notation. | |
Format labels as a percentage. |
You can derive your own formatter from the Formatter base class by simply overriding the __call__
method. The formatter class has access to the axis view and data limits.
To control the major and minor tick label formats, use one of the following methods:
ax.xaxis.set_major_formatter(xmajor_formatter) ax.xaxis.set_minor_formatter(xminor_formatter) ax.yaxis.set_major_formatter(ymajor_formatter) ax.yaxis.set_minor_formatter(yminor_formatter)
In addition to a Formatter
instance, set_major_formatter
and set_minor_formatter
also accept a str
or function. str
input will be internally replaced with an autogenerated StrMethodFormatter
with the input str
. For function input, a FuncFormatter
with the input function will be generated and used.
See Major and minor ticks for an example of setting major and minor ticks. See the matplotlib.dates
module for more information and examples of using date locators and formatters.
Bases: matplotlib.ticker.MaxNLocator
Dynamically find major tick positions. This is actually a subclass of MaxNLocator
, with parameters nbins = 'auto' and steps = [1, 2, 2.5, 5, 10].
To know the values of the non-public parameters, please have a look to the defaults of MaxNLocator
.
Bases: matplotlib.ticker.Locator
Dynamically find minor tick positions based on the positions of major ticks. The scale must be linear with major ticks evenly spaced.
n is the number of subdivisions of the interval between major ticks; e.g., n=2 will place a single minor tick midway between major ticks.
If n is omitted or None, it will be set to 5 or 4.
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Bases: matplotlib.ticker.Formatter
Format axis values using engineering prefixes to represent powers of 1000, plus a specified unit, e.g., 10 MHz instead of 1e7.
Unit symbol to use, suitable for use with single-letter representations of powers of 1000. For example, 'Hz' or 'm'.
Precision with which to display the number, specified in digits after the decimal point (there will be between one and three digits before the decimal point). If it is None, the formatting falls back to the floating point format '%g', which displays up to 6 significant digits, i.e. the equivalent value for places varies between 0 and 5 (inclusive).
Separator used between the value and the prefix/unit. For example, one get '3.14 mV' if sep
is " " (default) and '3.14mV' if sep
is "". Besides the default behavior, some other useful options may be:
sep=""
to append directly the prefix/unit to the value;sep="\N{THIN SPACE}"
(U+2009
);sep="\N{NARROW NO-BREAK SPACE}"
(U+202F
);sep="\N{NO-BREAK SPACE}"
(U+00A0
).rcParams["text.usetex"]
(default: False
)
To enable/disable the use of TeX's math mode for rendering the numbers in the formatter.
rcParams["axes.formatter.use_mathtext"]
(default: False
)
To enable/disable the use mathtext for rendering the numbers in the formatter.
Format a number in engineering notation, appending a letter representing the power of 1000 of the original number. Some examples:
>>> format_eng(0) # for self.places = 0 '0'
>>> format_eng(1000000) # for self.places = 1 '1.0 M'
>>> format_eng("-1e-6") # for self.places = 2 '-1.00 µ'
Bases: matplotlib.ticker.Formatter
Return fixed strings for tick labels based only on position, not value.
Note
FixedFormatter
should only be used together with FixedLocator
. Otherwise, the labels may end up in unexpected positions.
Set the sequence seq of strings that will be used for labels.
Bases: matplotlib.ticker.Locator
Tick locations are fixed. If nbins is not None, the array of possible positions will be subsampled to keep the number of ticks <= nbins +1. The subsampling will be done so as to include the smallest absolute value; for example, if zero is included in the array of possibilities, then it is guaranteed to be one of the chosen ticks.
Set parameters within this locator.
Return the locations of the ticks.
Note
Because the values are fixed, vmin and vmax are not used in this method.
Bases: matplotlib.ticker.Formatter
Use an old-style ('%' operator) format string to format the tick.
The format string should have a single variable format (%) in it. It will be applied to the value (not the position) of the tick.
Negative numeric values will use a dash not a unicode minus, use mathtext to get a unicode minus by wrappping the format specifier with $ (e.g. "$%g$").
Bases: matplotlib.ticker.TickHelper
Create a string based on a tick value and location.
Some classes may want to replace a hyphen for minus with the proper unicode symbol (U+2212) for typographical correctness. This is a helper method to perform such a replacement when it is enabled via rcParams["axes.unicode_minus"]
(default: True
).
Return the full string representation of the value with the position unspecified.
Return a short string version of the tick value.
Defaults to the position-independent long value.
Return the tick labels for all the ticks at once.
Set the locations of the ticks.
This method is called before computing the tick labels because some formatters need to know all tick locations to do so.
Bases: matplotlib.ticker.Formatter
Use a user-defined function for formatting.
The function should take in two inputs (a tick value x
and a position pos
), and return a string containing the corresponding tick label.
Bases: matplotlib.ticker.Locator
Place a tick on every multiple of some base number of points plotted, e.g., on every 5th point. It is assumed that you are doing index plotting; i.e., the axis is 0, len(data). This is mainly useful for x ticks.
Place ticks every base data point, starting at offset.
Set parameters within this locator
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Bases: matplotlib.ticker.Locator
Determine the tick locations
The first time this function is called it will try to set the number of ticks to make a nice tick partitioning. Thereafter the number of ticks will be fixed so that interactive navigation will be nice
Use presets to set locs based on lom. A dict mapping vmin, vmax->locs
Set parameters within this locator.
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Try to choose the view limits intelligently.
Bases: matplotlib.ticker.TickHelper
Determine the tick locations;
Note that the same locator should not be used across multiple Axis
because the locator stores references to the Axis data and view limits.
Adjust a range as needed to avoid singularities.
This method gets called during autoscaling, with (v0, v1)
set to the data limits on the axes if the axes contains any data, or (-inf, +inf)
if not.
v0 == v1
(possibly up to some floating point slop), this method returns an expanded interval around this value.(v0, v1) == (-inf, +inf)
, this method returns appropriate default view limits.(v0, v1)
is returned without modification.Log at WARNING level if locs is longer than Locator.MAXTICKS
.
This is intended to be called immediately before returning locs from __call__
to inform users in case their Locator returns a huge number of ticks, causing Matplotlib to run out of memory.
The "strange" name of this method dates back to when it would raise an exception instead of emitting a log.
Do nothing, and raise a warning. Any locator class not supporting the set_params() function will call this.
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Select a scale for the range from vmin to vmax.
Subclasses should override this method to change locator behaviour.
Bases: matplotlib.ticker.Formatter
Base class for formatting ticks on a log or symlog scale.
It may be instantiated directly, or subclassed.
Base of the logarithm used in all calculations.
If True, label ticks only at integer powers of base. This is normally True for major ticks and False for minor ticks.
If labelOnlyBase is False, these two numbers control the labeling of ticks that are not at integer powers of base; normally these are the minor ticks. The controlling parameter is the log of the axis data range. In the typical case where base is 10 it is the number of decades spanned by the axis, so we can call it 'numdec'. If numdec <= all
, all minor ticks will be labeled. If all < numdec <= subset
, then only a subset of minor ticks will be labeled, so as to avoid crowding. If numdec > subset
then no minor ticks will be labeled.
If a symmetric log scale is in use, its linthresh
parameter must be supplied here.
The set_locs
method must be called to enable the subsetting logic controlled by the minor_thresholds
parameter.
In some cases such as the colorbar, there is no distinction between major and minor ticks; the tick locations might be set manually, or by a locator that puts ticks at integer powers of base and at intermediate locations. For this situation, disable the minor_thresholds logic by using minor_thresholds=(np.inf, np.inf)
, so that all ticks will be labeled.
To disable labeling of minor ticks when 'labelOnlyBase' is False, use minor_thresholds=(0, 0)
. This is the default for the "classic" style.
To label a subset of minor ticks when the view limits span up to 2 decades, and all of the ticks when zoomed in to 0.5 decades or less, use minor_thresholds=(2, 0.5)
.
To label all minor ticks when the view limits span up to 1.5 decades, use minor_thresholds=(1.5, 1.5)
.
Change the base for labeling.
Warning
Should always match the base used for LogLocator
Return the full string representation of the value with the position unspecified.
Return a short string version of the tick value.
Defaults to the position-independent long value.
Switch minor tick labeling on or off.
If True, label ticks only at integer powers of base.
Use axis view limits to control which ticks are labeled.
The locs parameter is ignored in the present algorithm.
Bases: matplotlib.ticker.LogFormatter
Format values for log axis using exponent = log_base(value)
.
Bases: matplotlib.ticker.LogFormatter
Format values for log axis using exponent = log_base(value)
.
Bases: matplotlib.ticker.LogFormatterMathtext
Format values following scientific notation in a logarithmic axis.
Bases: matplotlib.ticker.Locator
Determine the tick locations for log axes
Place ticks on the locations : subs[j] * base**i
The base of the log used, so ticks are placed at base**n
.
Gives the multiples of integer powers of the base at which to place ticks. The default places ticks only at integer powers of the base. The permitted string values are 'auto'
and 'all'
, both of which use an algorithm based on the axis view limits to determine whether and how to put ticks between integer powers of the base. With 'auto'
, ticks are placed only between integer powers; with 'all'
, the integer powers are included. A value of None is equivalent to 'auto'
.
The maximum number of ticks to allow on a given axis. The default of None
will try to choose intelligently as long as this Locator has already been assigned to an axis using get_tick_space
, but otherwise falls back to 9.
Set the log base (major tick every base**i
, i integer).
Adjust a range as needed to avoid singularities.
This method gets called during autoscaling, with (v0, v1)
set to the data limits on the axes if the axes contains any data, or (-inf, +inf)
if not.
v0 == v1
(possibly up to some floating point slop), this method returns an expanded interval around this value.(v0, v1) == (-inf, +inf)
, this method returns appropriate default view limits.(v0, v1)
is returned without modification.Set parameters within this locator.
Set the minor ticks for the log scaling every base**i*subs[j]
.
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Try to choose the view limits intelligently.
Bases: matplotlib.ticker.Formatter
Probability formatter (using Math text).
If x > 1/2, with x = 1-v, indicate if x should be displayed as $overline{v}$. The default is to display $1-v$.
The string used to represent 1/2.
Indicate if the formatter is formatting minor ticks or not. Basically minor ticks are not labelled, except when only few ticks are provided, ticks with most space with neighbor ticks are labelled. See other parameters to change the default behavior.
Maximum number of locs for labelling some minor ticks. This parameter have no effect if minor is False.
Number of ticks which are labelled when the number of ticks is below the threshold.
Return a short string version of the tick value.
Defaults to the position-independent long value.
Set the locations of the ticks.
This method is called before computing the tick labels because some formatters need to know all tick locations to do so.
Set the number of minor ticks to label when some minor ticks are labelled.
Number of ticks which are labelled when the number of ticks is below the threshold.
Set the threshold for labelling minors ticks.
Maximum number of locations for labelling some minor ticks. This parameter have no effect if minor is False.
Set the way one half is displayed.
The string used to represent 1/2.
Switch display mode with overline for labelling p>1/2.
If x > 1/2, with x = 1-v, indicate if x should be displayed as $overline{v}$. The default is to display $1-v$.
Bases: matplotlib.ticker.MaxNLocator
Determine the tick locations for logit axes
Place ticks on the logit locations
Number of ticks. Only used if minor is False.
Indicate if this locator is for minor ticks or not.
Adjust a range as needed to avoid singularities.
This method gets called during autoscaling, with (v0, v1)
set to the data limits on the axes if the axes contains any data, or (-inf, +inf)
if not.
v0 == v1
(possibly up to some floating point slop), this method returns an expanded interval around this value.(v0, v1) == (-inf, +inf)
, this method returns appropriate default view limits.(v0, v1)
is returned without modification.Set parameters within this locator.
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Bases: matplotlib.ticker.Locator
Find nice tick locations with no more than N being within the view limits. Locations beyond the limits are added to support autoscaling.
Maximum number of intervals; one less than max number of ticks. If the string 'auto', the number of bins will be automatically determined based on the length of the axis.
Sequence of nice numbers starting with 1 and ending with 10; e.g., [1, 2, 4, 5, 10], where the values are acceptable tick multiples. i.e. for the example, 20, 40, 60 would be an acceptable set of ticks, as would 0.4, 0.6, 0.8, because they are multiples of 2. However, 30, 60, 90 would not be allowed because 3 does not appear in the list of steps.
If True, ticks will take only integer values, provided at least min_n_ticks integers are found within the view limits.
If True, autoscaling will result in a range symmetric about zero.
Remove edge ticks -- useful for stacked or ganged plots where the upper tick of one axes overlaps with the lower tick of the axes above it, primarily when rcParams["axes.autolimit_mode"]
(default: 'data'
) is 'round_numbers'
. If prune=='lower'
, the smallest tick will be removed. If prune == 'upper'
, the largest tick will be removed. If prune == 'both'
, the largest and smallest ticks will be removed. If prune is None, no ticks will be removed.
Relax nbins and integer constraints if necessary to obtain this minimum number of ticks.
Set parameters for this locator.
see MaxNLocator
see MaxNLocator
see MaxNLocator
see MaxNLocator
see MaxNLocator
see MaxNLocator
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Select a scale for the range from vmin to vmax.
Subclasses should override this method to change locator behaviour.
Bases: matplotlib.ticker.Locator
Set a tick on each integer multiple of a base within the view interval.
Set parameters within this locator.
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Set the view limits to the nearest multiples of base that contain the data.
Bases: matplotlib.ticker.Formatter
Always return the empty string.
Bases: matplotlib.ticker.Locator
No ticks
Return the locations of the ticks.
Note
Because the values are Null, vmin and vmax are not used in this method.
Bases: matplotlib.ticker.Formatter
Format numbers as a percentage.
Determines how the number is converted into a percentage. xmax is the data value that corresponds to 100%. Percentages are computed as x / xmax * 100
. So if the data is already scaled to be percentages, xmax will be 100. Another common situation is where xmax is 1.0.
The number of decimal places to place after the point. If None (the default), the number will be computed automatically.
A string that will be appended to the label. It may be None or empty to indicate that no symbol should be used. LaTeX special characters are escaped in symbol whenever latex mode is enabled, unless is_latex is True.
If False, reserved LaTeX characters in symbol will be escaped.
Format the number as a percentage number with the correct number of decimals and adds the percent symbol, if any.
If self.decimals
is None
, the number of digits after the decimal point is set based on the display_range of the axis as follows:
display_range | decimals | sample |
>50 | 0 |
|
>5 | 1 |
|
>0.5 | 2 |
|
... | ... | ... |
This method will not be very good for tiny axis ranges or extremely large ones. It assumes that the values on the chart are percentages displayed on a reasonable scale.
The configured percent symbol as a string.
If LaTeX is enabled via rcParams["text.usetex"]
(default: False
), the special characters {'#', '$', '%', '&', '~', '_', '^', '\', '{', '}'}
are automatically escaped in the string.
Bases: matplotlib.ticker.Formatter
Format tick values as a number.
rcParams["axes.formatter.useoffset"]
(default: True
)
Whether to use offset notation. See set_useOffset
.
rcParams["axes.formatter.use_mathtext"]
(default: False
)
Whether to use fancy math formatting. See set_useMathText
.
rcParams["axes.formatter.use_locale"]
(default: False
).
Whether to use locale settings for decimal sign and positive sign. See set_useLocale
.
In addition to the parameters above, the formatting of scientific vs. floating point representation can be configured via set_scientific
and set_powerlimits
).
Offset notation and scientific notation
Offset notation and scientific notation look quite similar at first sight. Both split some information from the formatted tick values and display it at the end of the axis.
1e6
.+1e6
. The offset notation label is always prefixed with a +
or -
sign and is thus distinguishable from the order of magnitude label.The following plot with x limits 1_000_000
to 1_000_010
illustrates the different formatting. Note the labels at the right edge of the x axis.
(Source code, png, pdf)
Return the full string representation of the value with the position unspecified.
Return a short string version of the tick value.
Defaults to the position-independent long value.
Return scientific notation, plus offset.
Return whether locale settings are used for formatting.
See also
Return whether to use fancy math formatting.
See also
Return whether automatic mode for offset notation is active.
This returns True if set_useOffset(True)
; it returns False if an explicit offset was set, e.g. set_useOffset(1000)
.
See also
Set the locations of the ticks.
This method is called before computing the tick labels because some formatters need to know all tick locations to do so.
Set size thresholds for scientific notation.
A tuple (min_exp, max_exp) containing the powers of 10 that determine the switchover threshold. For a number representable as \(a \times 10^\mathrm{exp}\) with \(1 <= |a| < 10\), scientific notation will be used if exp <= min_exp
or exp >= max_exp
.
The default limits are controlled by rcParams["axes.formatter.limits"]
(default: [-5, 6]
).
In particular numbers with exp equal to the thresholds are written in scientific notation.
Typically, min_exp will be negative and max_exp will be positive.
For example, formatter.set_powerlimits((-3, 4))
will provide the following formatting: \(1 \times 10^{-3}, 9.9 \times 10^{-3}, 0.01,\) \(9999, 1 \times 10^4\).
See also
Turn scientific notation on or off.
See also
Set whether to use locale settings for decimal sign and positive sign.
None resets to rcParams["axes.formatter.use_locale"]
(default: False
).
Set whether to use fancy math formatting.
If active, scientific notation is formatted as \(1.2 \times 10^3\).
None resets to rcParams["axes.formatter.use_mathtext"]
(default: False
).
Set whether to use offset notation.
When formatting a set numbers whose value is large compared to their range, the formatter can separate an additive constant. This can shorten the formatted numbers so that they are less likely to overlap when drawn on an axis.
rcParams["axes.formatter.offset_threshold"]
(default: 4
).With active offset notation, the values
100_000, 100_002, 100_004, 100_006, 100_008
will be formatted as 0, 2, 4, 6, 8
plus an offset +1e5
, which is written to the edge of the axis.
Return whether locale settings are used for formatting.
See also
Return whether to use fancy math formatting.
See also
Return whether automatic mode for offset notation is active.
This returns True if set_useOffset(True)
; it returns False if an explicit offset was set, e.g. set_useOffset(1000)
.
See also
Bases: matplotlib.ticker.Formatter
Use a new-style format string (as used by str.format
) to format the tick.
The field used for the tick value must be labeled x and the field used for the tick position must be labeled pos.
Bases: matplotlib.ticker.Locator
Determine the tick locations for symmetric log axes.
SymmetricalLogTransform
, optional
If set, defines the base and linthresh of the symlog transform.
The base and linthresh of the symlog transform, as documented for SymmetricalLogScale
. These parameters are only used if transform is not set.
The multiples of integer powers of the base where ticks are placed, i.e., ticks are placed at [sub * base**i for i in ... for sub in subs]
.
Either transform, or both base and linthresh, must be given.
Set parameters within this locator.
Return the values of the located ticks given vmin and vmax.
Note
To get tick locations with the vmin and vmax values defined automatically for the associated axis
simply call the Locator instance:
>>> print(type(loc)) <type 'Locator'> >>> print(loc()) [1, 2, 3, 4]
Try to choose the view limits intelligently.
Bases: object
[Deprecated]
Deprecated since version 3.5:
[Deprecated]
Deprecated since version 3.5:
[Deprecated]
Deprecated since version 3.5:
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/ticker_api.html