- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to adjust 'tick frequency' in Matplotlib for string Y-axis?
To adjust tick frequency for for Y-axis, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Initialize a variable, N, for number of sample data points.
- Create x and y data points using numpy.
- Plot x and y data points using plot() method.
- Initialize a variable freq_y to adjust the frequency of the yticks.
- Use yticks() method to set the yticks.
- To display the figure, use show() method.
Example
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True N = 10 x = np.random.randint(low=0, high=N, size=N) y = np.random.randint(low=0, high=N, size=N) plt.plot(x, y, color='red') freq_y = 3 plt.yticks(np.arange(0, N, freq_y)) plt.show()
Output
- Related Articles
- How to adjust 'tick frequency' in Matplotlib for string X-axis?
- Overlapping Y-axis tick label and X-axis tick label in Matplotlib
- How to change the datetime tick label frequency for Matplotlib plots?
- How do I convert (or scale) axis values and redefine the tick frequency in Matplotlib?
- Hide axis values but keep axis tick labels in matplotlib
- How to turn off the upper/right axis tick marks in Matplotlib?
- How to set the Y-axis tick marks using ggplot2 in R?
- How to append a single labeled tick to X-axis using matplotlib?
- How to change the separation between tick labels and axis labels in Matplotlib?
- Show tick labels when sharing an axis in Matplotlib
- Turn off the left/bottom axis tick marks in Matplotlib
- How to share secondary Y-axis between subplots in Matplotlib?
- How to specify values on Y-axis in Python Matplotlib?
- How to hide the Y-axis tick labels on a chart in Python Plotly?
- How to exponentially scale the Y axis with matplotlib?

Advertisements