<()函数:添加图形内容细节的⽆指向型注释
# -*- encoding: utf-8 -*-
# @File  : text.py
# @Author: Mr. Luo
# @Date: 2021/11/6 14:20
'''
添加图形内容细节的⽆指向型注释⽂本
'''
import matplotlib.pyplot as plt
import numpy as np
'''
x:注释⽂本内容所在位置的横坐标
y:注释⽂本内容所在位置的纵坐标
string:注释⽂本内容
weight:注释⽂本内容的粗细风格
color:注释⽂本内容的字体颜⾊
'''
text函数什么意思x = np.linspace(0.2, 10, 1000)
y = np.cos(x)
plt.plot(x, y, ls="-.", c='c', label="figure")
plt.legend(loc="lower left")
plt.title("y = cos(x)")
# plt.legend(loc="lower right")
<(5.2, 0.07, "the function is y = cos(x)", weight="bold", color="r")
plt.show()
运⾏效果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。