python可视化---text()函数
时间:2019-02-28 18:18:00
收藏:0
阅读:10014
函数功能:添加图形内容细节的无指向型注释文本
调用签名: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()
评论(0)