📜  Python中的 Matplotlib.pyplot.figtext()(1)

📅  最后修改于: 2023-12-03 15:34:23.466000             🧑  作者: Mango

Python中的 Matplotlib.pyplot.figtext()

Matplotlib.pyplot.figtext() 函数用于向图形插入文本块。该函数可以在指定位置插入短文本,并可以进行格式化。

函数定义
plt.figtext(x, y, s, fontdict=None, **kwargs)
参数说明
  • x, y : 插入文本块的位置坐标
  • s : 要插入的文本内容
  • fontdict : 用于格式化的字体字典
  • kwargs : 其他的文本参数
返回值
  • 无返回值
示例
import matplotlib.pyplot as plt

fig, ax = plt.subplots()

# 在图形(0.2, 0.5)的位置插入文本
plt.figtext(x=0.2, y=0.5, s='This is a figure text', fontsize=14)

plt.show()
运行结果

figure text

应用场景

常常用于图形中添加标题、注释、水印等文本信息。

总结

Matplotlib.pyplot.figtext() 是一个用于向图形中插入文本块的函数,通过传入要插入文本的位置坐标和文本内容,可以在图形中添加自定义的文本信息。