Matplotlib's default tick locators and formatters are designed to be generally sufficient in many common situations, but are in no way optimal for every plot. This section will give several examples of adjusting the tick locations and formatting for the particular plot type you're interested in.
Before we go into examples, it will be best for us to understand further the object hierarchy of Matplotlib plots.
Matplotlib aims to have a Python object representing everything that appears on the plot: for example, recall that the figure
is the bounding box within which plot elements appear.
Each Matplotlib object can also act as a container of sub-objects: for example, each figure
can contain one or more axes
objects, each of which in turn contain other objects representing plot contents.
The tick marks are no exception. Each axes
has attributes xaxis
and yaxis
, which in turn have attributes that contain all the properties of the lines, ticks, and labels that make up the axes.
Within each axis, there is the concept of a major tick mark, and a minor tick mark. As the names would imply, major ticks are usually bigger or more pronounced, while minor ticks are usually smaller. By default, Matplotlib rarely makes use of minor ticks, but one place you can see them is within logarithmic plots:
We see here that each major tick shows a large tickmark and a label, while each minor tick shows a smaller tickmark with no label.
These tick properties—locations and labels—that is, can be customized by setting the formatter
and locator
objects of each axis. Let's examine these for the x axis of the just shown plot:
<matplotlib.ticker.LogLocator object at 0x10dbaf630> <matplotlib.ticker.LogLocator object at 0x10dba6e80>
<matplotlib.ticker.LogFormatterMathtext object at 0x10db8dbe0> <matplotlib.ticker.NullFormatter object at 0x10db9af60>
We see that both major and minor tick labels have their locations specified by a LogLocator
(which makes sense for a logarithmic plot). Minor ticks, though, have their labels formatted by a NullFormatter
: this says that no labels will be shown.
We'll now show a few examples of setting these locators and formatters for various plots.
Perhaps the most common tick/label formatting operation is the act of hiding ticks or labels.
This can be done using plt.NullLocator()
and plt.NullFormatter()
, as shown here:
Notice that we've removed the labels (but kept the ticks/gridlines) from the x axis, and removed the ticks (and thus the labels as well) from the y axis. Having no ticks at all can be useful in many situations—for example, when you want to show a grid of images. For instance, consider the following figure, which includes images of different faces, an example often used in supervised machine learning problems (see, for example, In-Depth: Support Vector Machines):
Notice that each image has its own axes, and we've set the locators to null because the tick values (pixel number in this case) do not convey relevant information for this particular visualization.
One common problem with the default settings is that smaller subplots can end up with crowded labels. We can see this in the plot grid shown here:
Particularly for the x ticks, the numbers nearly overlap and make them quite difficult to decipher.
We can fix this with the plt.MaxNLocator()
, which allows us to specify the maximum number of ticks that will be displayed.
Given this maximum number, Matplotlib will use internal logic to choose the particular tick locations:
This makes things much cleaner. If you want even more control over the locations of regularly-spaced ticks, you might also use plt.MultipleLocator
, which we'll discuss in the following section.
Matplotlib's default tick formatting can leave a lot to be desired: it works well as a broad default, but sometimes you'd like do do something more. Consider this plot of a sine and a cosine:
There are a couple changes we might like to make. First, it's more natural for this data to space the ticks and grid lines in multiples of . We can do this by setting a MultipleLocator
, which locates ticks at a multiple of the number you provide. For good measure, we'll add both major and minor ticks in multiples of :
But now these tick labels look a little bit silly: we can see that they are multiples of , but the decimal representation does not immediately convey this.
To fix this, we can change the tick formatter. There's no built-in formatter for what we want to do, so we'll instead use plt.FuncFormatter
, which accepts a user-defined function giving fine-grained control over the tick outputs: