- 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 make markers on lines smaller in Matplotlib?
To make markers on lines smaller in Matplotlib, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Create random data points, x.
- Plot x data points using plot() method, with linewidth =0.5 and color="black".
- To display the figure, use show() method.
Example
from matplotlib import pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.random.rand(20) plt.plot(x, '*-', color='black', markersize=10, lw=0.5) plt.show()
Output
- Related Articles
- How to create custom markers on a plot in Matplotlib
- How to set same color for markers and lines in a Matplotlib plot loop?
- How to make two markers share the same label in the legend using Matplotlib?
- How to plot arbitrary markers on a Pandas data series using Matplotlib?
- How to Add Markers to a Graph Plot in Matplotlib with Python?
- How to hide lines in Matplotlib?
- How to adjust the space between legend markers and labels in Matplotlib?
- How to plot overlapping lines in Matplotlib?
- How to set a line color to orange, and specify line markers in Matplotlib?
- How to remove lines in a Matplotlib plot?
- How to use different markers for different points in a Pylab scatter plot(Matplotlib)?
- How to make simple double head arrows on the axes in Matplotlib?
- Transparent error bars without affecting the markers in Matplotlib
- How to make several plots on a single page using Matplotlib?
- How to make axes transparent in Matplotlib?

Advertisements