此函数用于将文本添加到数据坐标中x,y位置的轴上。
用法: matplotlib.pyplot.text(x, y, s, fontdict=None, **kwargs)
参数 | 描述 |
x,y:float | 放置文本的位置。默认情况下,这是在数据坐标中。可以使用变换参数来更改坐标系。 |
s:str | 文本。 |
fontdict:dict默认无 | 用于覆盖默认文本属性的字典。如果fontdict为None,则默认值由rcParams确定。 |
**夸克 | 文字属性。 |
范例1:图纸上的文字
Python3
import matplotlib.pyplot
matplotlib.pyplot.text(0.5, 0.5, "Hello World!")
matplotlib.pyplot.savefig("out.png")
输出:
范例2:向绘图添加文字
Python3
import matplotlib.pyplot as plt
w = 4
h = 3
d = 70
plt.figure(figsize=(w, h), dpi=d)
x = [1, 2, 4]
x_pos = 0.5
y_pos = 3
plt.text(x_pos, y_pos, "text on plot")
plt.plot(x)
plt.savefig("out.png")
输出:
相关用法
- Python Wand function()用法及代码示例
- Python Sorted()用法及代码示例
- Python Numbers choice()用法及代码示例
- Python Tkinter askopenfile()用法及代码示例
- Python ord()用法及代码示例
- Python round()用法及代码示例
- Python id()用法及代码示例
- Python vars()用法及代码示例
注:本文由纯净天空筛选整理自deepaksingh20899大神的英文原创作品 Matplotlib.pyplot.text() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。