1、matplotlib.pyplot.text()用法
matplotlib.pyplot.text(x, y, s, fontdict=None, withdash=False, **kwargs)
举例:
import matplotlib.pyplot as plt
plt.text(a , b+40, b, horizontalalignment='center', verticalalignment='bottom', fontsize=10, rotation=90)
参数详解
- x, y : scalars 防止text的位置
- s : str 内容text
- fontdict : dictionary, optional, default: None 一个定义s格式的dict
- withdash : boolean, optional, default: False。如果True则创建一个
TextWithDash
实例。 - 以下为其他常用参数1:
fontsize
设置字体大小,默认12,可选参数 [‘xx-small’, ‘x-small’, ‘small’, ‘medium’, ‘large