matplotlib.pyplot.yticks(ticks=None, labels=None, **kwargs)
[source]
Get or set the current tick locations and labels of the y-axis.
Call signatures:
locs, labels = yticks() # Get locations and labels yticks(ticks, [labels], **kwargs) # Set locations and labels
Parameters: |
|
---|---|
Returns: |
|
Calling this function with no arguments (e.g. yticks()
) is the pyplot equivalent of calling get_yticks
and get_yticklabels
on the current axes. Calling this function with arguments is the pyplot equivalent of calling set_yticks
and set_yticklabels
on the current axes.
Get the current locations and labels:
>>> locs, labels = yticks()
Set label locations:
>>> yticks(np.arange(0, 1, step=0.2))
Set text labels:
>>> yticks(np.arange(5), ('Tom', 'Dick', 'Harry', 'Sally', 'Sue'))
Set text labels and properties:
>>> yticks(np.arange(12), calendar.month_name[1:13], rotation=45)
Disable yticks:
>>> yticks([])
matplotlib.pyplot.yticks
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.yticks.html