×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

Python | Pyplot Labelling (Matplotlib Labels and Title)

Python | Pyplot Labelling: In this tutorial, we are going to learn types of labels in a Pyplot API with the examples. By Anuj Singh Last updated : August 18, 2023

There are the following types of labels,

1) X-axis labelling

plt.xlabel('Number Line')
# Default labelling
Python | Pyplot Labelling (1)
plt.xlabel('Number Line', color='green')
#Font colour Changed
Python | Pyplot Labelling (2)
plt.xlabel('Number Line', color='Green', fontsize=15)
#Font size Change
Python | Pyplot Labelling (3)
plt.xlabel('Number Line', color='Green', fontsize=15, bbox=dict(facecolor='yellow', alpha=0.5))
#Background Box Addition with opaque ratio
Python | Pyplot Labelling (4)

2) Y-axis labelling

plt.ylabel('Function')
#Default Labelling
Python | Pyplot Labelling (5)
plt.xlabel('Function', color='green')
#Colour Change
Python | Pyplot Labelling (6)
plt.xlabel('Function', color='Green', fontsize=15)
#Font Size Modification
Python | Pyplot Labelling (7)
plt.xlabel('Function', color='Green', fontsize=15, bbox=dict(facecolor='yellow', alpha=0.5))
#Background Box Addition with opaque ratio
Python | Pyplot Labelling (8)

Pythion program to demonstrate example of pyplot labelling

import numpy as np
import matplotlib.pyplot as plt

x = np.arange(500)
y1 = np.arange(500)
for i in range(500):
    y1[i] = 2*x[i] + np.random.randint(0,56)

#x-axis labelling
#default 
plt.figure()
plt.plot(x,y1)
plt.xlabel('Number Line')

#Colour
plt.figure()
plt.plot(x,y1)
plt.xlabel('Number Line', color='green')

#size 
plt.figure()
plt.plot(x,y1)
plt.xlabel('Number Line', color='Green', fontsize=15)

#Background Box
plt.figure()
plt.plot(x,y1)
plt.xlabel('Number Line', color='Green', fontsize=15, bbox=dict(facecolor='yellow', alpha=0.5))

#y-axis labelling
#default 
plt.figure()
plt.plot(x,y1)
plt.ylabel('Function')

#Colour
plt.figure()
plt.plot(x,y1)
plt.ylabel('Function', color='g')

#size 
plt.figure()
plt.plot(x,y1)
plt.ylabel('Function', color='Green', fontsize=15)

#Background Box
plt.figure()
plt.plot(x,y1)
plt.ylabel('Function', color='Green', fontsize=15, bbox=dict(facecolor='yellow', alpha=0.5))

Output:

Output is as figure
Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.