Python 中的 Matplotlib.pyplot.text()函数
原文:https://www.geeksforgeeks.org/matplotlib-pyplot-text-function-in-python/
该函数用于将文本添加到数据坐标中 x,y 位置的轴上。
Syntax: matplotlib.pyplot.text(x, y, s, fontdict=None, **kwargs)
示例#1: 绘图页上的文本
python 3
import matplotlib.pyplot
matplotlib.pyplot.text(0.5, 0.5, "Hello World!")
matplotlib.pyplot.savefig("out.png")