9951 explained code solutions for 126 technologies


python-matplotlibHow to write text on plot


import matplotlib.pyplot as plt

plt.plot([2,1,3,6,2])
plt.text(1, 3.5, "hi from python")

plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

.plot(

plot specified data

.text(

adds custom text to chart

1, 3.5

vertical and horizontal coordinates for our text box

hi from python

sample text to show

.show()

render chart in a separate window