On this page
matplotlib.pyplot.xticks
matplotlib.pyplot.xticks(*args, **kwargs)[source]-
Get or set the current tick locations and labels of the x-axis.
Call signatures:
locs, labels = xticks() # Get locations and labels xticks(locs, [labels], **kwargs) # Set locations and labelsParameters: -
locs : array_like -
A list of positions at which ticks should be placed. You can pass an empty list to disable xticks.
-
labels : array_like, optional -
A list of explicit labels to place at the given locs.
- **kwargs
-
Textproperties can be used to control the appearance of the labels.
Returns: - locs
-
An array of label locations.
- labels
-
A list of
Textobjects.
Notes
Calling this function with no arguments (e.g.
xticks()) is the pyplot equivalent of callingget_xticksandget_xticklabelson the current axes. Calling this function with arguments is the pyplot equivalent of callingset_xticksandset_xticklabelson the current axes.Examples
Get the current locations and labels:
>>> locs, labels = xticks()Set label locations:
>>> xticks(np.arange(0, 1, step=0.2))Set text labels:
>>> xticks(np.arange(5), ('Tom', 'Dick', 'Harry', 'Sally', 'Sue'))Set text labels and properties:
>>> xticks(np.arange(12), calendar.month_name[1:13], rotation=20)Disable xticks:
>>> xticks([]) -
Examples using matplotlib.pyplot.xticks
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/2.2.3/api/_as_gen/matplotlib.pyplot.xticks.html