Home »
Python »
Python Data Visualization
Bigodot Symbol in Python Plotting
Here, we are going to learn about the bigodot symbol in python plotting and its implementation.
Submitted by Anuj Singh, on August 31, 2020
Bigodot 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'$\bigodot$')
Illustrations:
Python code for bigodot symbol in plotting
import numpy as np
import matplotlib.pyplot as plt
# Bigodot
# In text
plt.figure()
plt.plot([0,1],[0,1], 'o', color= 'purple')
plt.title('Adding Text: Bigodot')
plt.text(0.45, 0.45, r'$\bigodot$', fontsize=25, )
plt.show()
Output:
Output is as Figure