- 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 set label for an already plotted line in Matplotlib?
To set label for an already plotted line in Matplotlib, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Plot the line with an input list.
- Set the label of the created line.
- Place a legend on the plot at the "upper right" location.
- To display the figure, use show() method.
Example
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True line, = plt.plot([2, -1, 4, -1, 2]) line.set_label("line") plt.legend(loc="upper right") plt.show()
Output
- Related Articles
- How to pick a new color for each plotted line within a figure in matplotlib?
- How to label a line in Matplotlib (Python)?
- How to plot an emoji as a label for a bar in Matplotlib?
- Top label for Matplotlib colorbars
- How to draw an average line for a scatter plot in MatPlotLib?
- How to improve the label placement for Matplotlib scatter chart?
- How to set a line color to orange, and specify line markers in Matplotlib?
- How to label a patch in matplotlib?
- Python Pandas - Set index name for an already created Index object
- How to change the datetime tick label frequency for Matplotlib plots?
- How to set a title above each marker which represents a same label in Matplotlib?
- How to access axis label object in Matplotlib?
- How to display all label values in Matplotlib?
- How to set the xticklabels for date in matplotlib?
- How to get the color of the most recent plotted line in Python?

Advertisements