Home »
Python »
Python Data Visualization
Bigotimes Symbol in Python Plotting
Here, we are going to learn how to add bigotimes symbol in Python plotting?
Submitted by Anuj Singh, on September 01, 2020
Bigotimes is a different symbol used in set theory and python have provided us to use it while plotting. Following example shows its implementation.
plt.text(0.45, 0.45, r'$\bigotimes$')
Illustrations:
Python code for bigotimes symbol in plotting
import numpy as np
import matplotlib.pyplot as plt
#Bigotimes
#In text
plt.figure()
plt.plot([0,1],[0,1], 'o', color= 'purple')
plt.title('Adding Text: Bigoptimes')
plt.text(0.45, 0.45, r'$\bigotimes$', fontsize=25, )
plt.show()
Output:
Output is as Figure