Scales define the distribution of data values on an axis, e.g. a log scaling. They are defined as subclasses of ScaleBase
.
See also axes.Axes.set_xscale
and the scales examples in the documentation.
See Custom scale for a full example of defining a custom scale.
Matplotlib also supports non-separable transformations that operate on both Axis
at the same time. They are known as projections, and defined in matplotlib.projections
.
Bases: matplotlib.scale.ScaleBase
Provide an arbitrary scale with user-supplied function for the axis.
Axis
The axis for the scale.
two-tuple of the forward and inverse functions for the scale. The forward function must be monotonic.
Both functions must have the signature:
def forward(values: array-like) -> array-like
Return the FuncTransform
associated with this scale.
Set the locators and formatters of axis to instances suitable for this scale.
Bases: matplotlib.scale.LogScale
Provide an arbitrary scale with user-supplied function for the axis and then put on a logarithmic axes.
matplotlib.axis.Axis
The axis for the scale.
two-tuple of the forward and inverse functions for the scale. The forward function must be monotonic.
Both functions must have the signature:
def forward(values: array-like) -> array-like
Logarithmic base of the scale.
Bases: matplotlib.transforms.Transform
A simple transform that takes and arbitrary function for the forward and inverse transform.
True if this transform has a corresponding inverse transform.
The number of input dimensions of this transform. Must be overridden (with integers) in the subclass.
Return the corresponding inverse transformation.
It holds x == self.inverted().transform(self.transform(x))
.
The return value of this method should be treated as temporary. An update to self does not cause a corresponding update to its inverted copy.
True if this transform is separable in the x- and y- dimensions.
The number of output dimensions of this transform. Must be overridden (with integers) in the subclass.
Apply only the non-affine part of this transformation.
transform(values)
is always equivalent to transform_affine(transform_non_affine(values))
.
In non-affine transformations, this is generally equivalent to transform(values)
. In affine transformations, this is always a no-op.
The input values as NumPy array of length input_dims
or shape (N x input_dims
).
The output values as NumPy array of length input_dims
or shape (N x output_dims
), depending on the input.
Bases: matplotlib.transforms.Transform
A string representing the "name" of the transform. The name carries no significance other than to improve the readability of str(transform)
when DEBUG=True.
True if this transform has a corresponding inverse transform.
The number of input dimensions of this transform. Must be overridden (with integers) in the subclass.
Return the corresponding inverse transformation.
It holds x == self.inverted().transform(self.transform(x))
.
The return value of this method should be treated as temporary. An update to self does not cause a corresponding update to its inverted copy.
True if this transform is separable in the x- and y- dimensions.
The number of output dimensions of this transform. Must be overridden (with integers) in the subclass.
Apply only the non-affine part of this transformation.
transform(values)
is always equivalent to transform_affine(transform_non_affine(values))
.
In non-affine transformations, this is generally equivalent to transform(values)
. In affine transformations, this is always a no-op.
The input values as NumPy array of length input_dims
or shape (N x input_dims
).
The output values as NumPy array of length input_dims
or shape (N x output_dims
), depending on the input.
Bases: matplotlib.transforms.Transform
A string representing the "name" of the transform. The name carries no significance other than to improve the readability of str(transform)
when DEBUG=True.
True if this transform has a corresponding inverse transform.
The number of input dimensions of this transform. Must be overridden (with integers) in the subclass.
Return the corresponding inverse transformation.
It holds x == self.inverted().transform(self.transform(x))
.
The return value of this method should be treated as temporary. An update to self does not cause a corresponding update to its inverted copy.
True if this transform is separable in the x- and y- dimensions.
The number of output dimensions of this transform. Must be overridden (with integers) in the subclass.
Apply only the non-affine part of this transformation.
transform(values)
is always equivalent to transform_affine(transform_non_affine(values))
.
In non-affine transformations, this is generally equivalent to transform(values)
. In affine transformations, this is always a no-op.
The input values as NumPy array of length input_dims
or shape (N x input_dims
).
The output values as NumPy array of length input_dims
or shape (N x output_dims
), depending on the input.
Bases: matplotlib.scale.ScaleBase
The default linear scale.
Return the transform for linear scaling, which is just the IdentityTransform
.
Set the locators and formatters of axis to instances suitable for this scale.
Bases: matplotlib.scale.ScaleBase
A standard logarithmic scale. Care is taken to only plot positive values.
Axis
The axis for the scale.
The base of the logarithm.
Determines the behavior for non-positive values. They can either be masked as invalid, or clipped to a very small positive number.
Where to place the subticks between each major tick. For example, in a log10 scale, [2, 3, 4, 5, 6, 7, 8, 9]
will place 8 logarithmically spaced minor ticks between each major tick.
Return the LogTransform
associated with this scale.
Limit the domain to positive values.
Set the locators and formatters of axis to instances suitable for this scale.
Bases: matplotlib.transforms.Transform
A string representing the "name" of the transform. The name carries no significance other than to improve the readability of str(transform)
when DEBUG=True.
True if this transform has a corresponding inverse transform.
The number of input dimensions of this transform. Must be overridden (with integers) in the subclass.
Return the corresponding inverse transformation.
It holds x == self.inverted().transform(self.transform(x))
.
The return value of this method should be treated as temporary. An update to self does not cause a corresponding update to its inverted copy.
True if this transform is separable in the x- and y- dimensions.
The number of output dimensions of this transform. Must be overridden (with integers) in the subclass.
Apply only the non-affine part of this transformation.
transform(values)
is always equivalent to transform_affine(transform_non_affine(values))
.
In non-affine transformations, this is generally equivalent to transform(values)
. In affine transformations, this is always a no-op.
The input values as NumPy array of length input_dims
or shape (N x input_dims
).
The output values as NumPy array of length input_dims
or shape (N x output_dims
), depending on the input.
Bases: matplotlib.transforms.Transform
A string representing the "name" of the transform. The name carries no significance other than to improve the readability of str(transform)
when DEBUG=True.
True if this transform has a corresponding inverse transform.
The number of input dimensions of this transform. Must be overridden (with integers) in the subclass.
Return the corresponding inverse transformation.
It holds x == self.inverted().transform(self.transform(x))
.
The return value of this method should be treated as temporary. An update to self does not cause a corresponding update to its inverted copy.
True if this transform is separable in the x- and y- dimensions.
The number of output dimensions of this transform. Must be overridden (with integers) in the subclass.
logistic transform (base 10)
Bases: matplotlib.scale.ScaleBase
Logit scale for data between zero and one, both excluded.
This scale is similar to a log scale close to zero and to one, and almost linear around 0.5. It maps the interval ]0, 1[ onto ]-infty, +infty[.
matplotlib.axis.Axis
Currently unused.
Determines the behavior for values beyond the open interval ]0, 1[. They can either be masked as invalid, or clipped to a number very close to 0 or 1.
Indicate the usage of survival notation (overline{x}) in place of standard notation (1-x) for probability close to one.
The string used for ticks formatter to represent 1/2.
Return the LogitTransform
associated with this scale.
Limit the domain to values between 0 and 1 (excluded).
Set the locators and formatters of axis to instances suitable for this scale.
Bases: matplotlib.transforms.Transform
A string representing the "name" of the transform. The name carries no significance other than to improve the readability of str(transform)
when DEBUG=True.
True if this transform has a corresponding inverse transform.
The number of input dimensions of this transform. Must be overridden (with integers) in the subclass.
Return the corresponding inverse transformation.
It holds x == self.inverted().transform(self.transform(x))
.
The return value of this method should be treated as temporary. An update to self does not cause a corresponding update to its inverted copy.
True if this transform is separable in the x- and y- dimensions.
The number of output dimensions of this transform. Must be overridden (with integers) in the subclass.
logit transform (base 10), masked or clipped
Bases: object
The base class for all scales.
Scales are separable transformations, working on a single dimension.
Subclasses should override
name
The scale's name.
get_transform()
A method returning a Transform
, which converts data coordinates to scaled coordinates. This transform should be invertible, so that e.g. mouse positions can be converted back to data coordinates.
set_default_locators_and_formatters()
A method that sets default locators and formatters for an Axis
that uses this scale.
limit_range_for_scale()
An optional method that "fixes" the axis range to acceptable values, e.g. restricting log-scaled axes to positive values.
Construct a new scale.
The following note is for scale implementors.
For back-compatibility reasons, scales take an Axis
object as first argument. However, this argument should not be used: a single scale object should be usable by multiple Axis
es at the same time.
Return the range vmin, vmax, restricted to the domain supported by this scale (if any).
minpos should be the minimum positive value in the data. This is used by log scales to determine a minimum value.
Set the locators and formatters of axis to instances suitable for this scale.
Bases: matplotlib.scale.ScaleBase
The symmetrical logarithmic scale is logarithmic in both the positive and negative directions from the origin.
Since the values close to zero tend toward infinity, there is a need to have a range around zero that is linear. The parameter linthresh allows the user to specify the size of this range (-linthresh, linthresh).
The base of the logarithm.
Defines the range (-x, x)
, within which the plot is linear. This avoids having the plot go to infinity around zero.
Where to place the subticks between each major tick. For example, in a log10 scale: [2, 3, 4, 5, 6, 7, 8, 9]
will place 8 logarithmically spaced minor ticks between each major tick.
This allows the linear range (-linthresh, linthresh)
to be stretched relative to the logarithmic range. Its value is the number of decades to use for each half of the linear range. For example, when linscale == 1.0 (the default), the space used for the positive and negative halves of the linear range will be equal to one decade in the logarithmic range.
Construct a new scale.
The following note is for scale implementors.
For back-compatibility reasons, scales take an Axis
object as first argument. However, this argument should not be used: a single scale object should be usable by multiple Axis
es at the same time.
Return the SymmetricalLogTransform
associated with this scale.
Set the locators and formatters of axis to instances suitable for this scale.
Bases: matplotlib.transforms.Transform
A string representing the "name" of the transform. The name carries no significance other than to improve the readability of str(transform)
when DEBUG=True.
True if this transform has a corresponding inverse transform.
The number of input dimensions of this transform. Must be overridden (with integers) in the subclass.
Return the corresponding inverse transformation.
It holds x == self.inverted().transform(self.transform(x))
.
The return value of this method should be treated as temporary. An update to self does not cause a corresponding update to its inverted copy.
True if this transform is separable in the x- and y- dimensions.
The number of output dimensions of this transform. Must be overridden (with integers) in the subclass.
Apply only the non-affine part of this transformation.
transform(values)
is always equivalent to transform_affine(transform_non_affine(values))
.
In non-affine transformations, this is generally equivalent to transform(values)
. In affine transformations, this is always a no-op.
The input values as NumPy array of length input_dims
or shape (N x input_dims
).
The output values as NumPy array of length input_dims
or shape (N x output_dims
), depending on the input.
Return the names of the available scales.
Register a new kind of scale.
ScaleBase
The scale to register.
Return a scale class by name.
matplotlib.axis.Axis
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/scale_api.html