- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 X-axis?
To adjust tick frequency for X-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_x to adjust the frequency of the xticks.
- Use xticks() method to set the xticks.
- 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_x = 3 plt.xticks(np.arange(0, N, freq_x)) plt.show()
Output
- Related Articles
- How to adjust 'tick frequency' in Matplotlib for string Y-axis?
- Overlapping Y-axis tick label and X-axis tick label in Matplotlib
- How to append a single labeled tick to X-axis using 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?
- Changing the color of a single X-axis tick label in Matplotlib
- Hide axis values but keep axis tick labels in matplotlib
- Centering x-tick labels between tick marks in Matplotlib
- How to turn off the upper/right axis tick marks in Matplotlib?
- How to rotate X-axis tick labels in Pandas bar plot?
- How to change the separation between tick labels and axis labels in Matplotlib?
- Show tick labels when sharing an axis in Matplotlib
- How to customize the X-axis in Matplotlib?
- How to customize X-axis ticks in Matplotlib?
- How to show all the X-axis tick values in Python Plotly?

Advertisements