Binary Supset Symbol in Python Plotting

Here, we are going to learn how to add binary supset symbol in Python plotting?
Submitted by Anuj Singh, on September 15, 2020

Binary Supset a different symbol used in set theory and other mathematical expressions. Python has provided us to use it while plotting.

Following example shows its implementation.

plt.text(0.25, 0.25, r'$\Supset$', fontsize=175)

Illustrations:

Binary supset symbol 1

Binary supset symbol 2

Python code for Binary Supset symbol in plotting

import numpy as np
import matplotlib.pyplot as plt

# Binary Supset
# In text
plt.figure()
plt.plot([0,1],[0,1], 'o', color=  'purple')
plt.title('Adding Text: Binary Supset')
plt.text(0.25, 0.25, r'$\Supset$', fontsize=175, )
plt.show()

plt.figure()
plt.plot([0,1],[0,1], 'o', color=  'purple')
plt.title('Adding Text: Binary Supset')
plt.text(0.25, 0.25, r'$\Supset$', fontsize=175, )
plt.axis(False)
plt.show()

Output:

Output is as Figure



Comments and Discussions!

Load comments ↻






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