当前位置:主页 > 软件编程 > Python代码 >

python可视化text()函数使用详解

时间:2022-09-22 10:40:35 | 栏目:Python代码 | 点击:

这篇文章主要介绍了python可视化text()函数使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

函数功能:添加图形内容细节的无指向型注释文本

调用签名:plt.text(x, y, string, weight="bold", color="b")

x: 注释文本内容所在位置的横坐标

y:注释文本内容所在位置的纵坐标

string:注释文本内容

weight:注释文本内容的粗细风格

color:注释文本内容的字体颜色

代码实现:

import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0.05, 10, 1000)
y = np.sin(x)
plt.plot(x, y, ls="-.", lw=2, c="c", label="plot figure")
plt.legend()
plt.text(3.10, 0.09, "y=sin(x)", weight="bold", color="b")
plt.show()

结果

您可能感兴趣的文章:

相关文章