×

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 | Adding rho in Plot Label

Adding rho in Plot Label: Here, we are going to learn how to add rho in Python plot label?
Submitted by Anuj Singh, on July 23, 2020

⍴ (rho) is very often used greek mathematical letters. They are mostly used in physics, chemistry, fluid dynamics, and other mathematical expressions when there is topic related change (for example energy change, fluid density) and therefore, they have registered importance in languages. 

Therefore, matplotlib has defined a command for usage.

In this article, we are going to add ⍴ using a command in matplotlib.

Adding ⍴ (rho)

plt.text(3, 0.4, r'$\rho=100$')
#Adding ⍴ as text
Python | Adding rho in Plot Label (1)
plt.title(‘rho 'r'$\rho=100$')
#Adding ⍴ in title of the figure
Python | Adding rho in Plot Label (2)
plt.xlabel('rho ('r'$\rho=100)$')
#Adding ⍴ in x axis label of the figure
Python | Adding rho in Plot Label (3)
plt.ylabel('rho ('r'$\rho=100)$')
#Adding ⍴ in y axis label of the figure
Python | Adding rho in Plot Label (4)

Python code for adding rho in plot label

import numpy as np
import matplotlib.pyplot as plt

x = np.arange(10)
y = np.sin(x)*np.exp(x/5)

#  rho
#In text
plt.figure()
plt.plot(x,y, color=  'purple')
plt.title('rho')
plt.text(4, 5, r'$\rho=100$')
  
plt.show()

#In title
plt.figure()
plt.plot(x,y, color=  'purple')
plt.title('  rho 'r'$\rho=100$')
  
plt.show()

#In x-axis label
plt.figure()
plt.plot(x,y, color=  'purple')
plt.xlabel('  rho ('r'$\rho=100)$')
  
plt.show()

#In y-axis label
plt.figure()
plt.plot(x,y, color=  'purple')
plt.ylabel('  rho ('r'$\rho=100)$')
  
plt.show()

Output:

Output is as figure
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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