- Matplotlib 教程
- Matplotlib - 主页
- Matplotlib - 简介
- Matplotlib - 环境设置
- Matplotlib - Anaconda 分布
- Matplotlib - Jupyter 笔记本
- Matplotlib - Pyplot API
- Matplotlib - 简单绘图
- Matplotlib - PyLab 模块
- 面向对象的接口
- Matplotlib - 图形类
- Matplotlib - 轴类
- Matplotlib - 多图
- Matplotlib - Subplots() 函数
- Matplotlib - Subplot2grid() 函数
- Matplotlib - 网格
- Matplotlib - 格式化轴
- Matplotlib - 设置限制
- 设置刻度和刻度标签
- Matplotlib - 双轴
- Matplotlib - 条形图
- Matplotlib - 直方图
- Matplotlib - 饼图
- Matplotlib - 散点图
- Matplotlib - 等值线图
- Matplotlib - 箭袋图
- Matplotlib - 箱线图
- Matplotlib - 小提琴图
- 三维绘图
- Matplotlib - 3D 等高线图
- Matplotlib - 3D 线框图
- Matplotlib - 3D 曲面图
- Matplotlib - 处理文本
- 数学表达式
- Matplotlib - 处理图像
- Matplotlib - 变换
- Matplotlib 有用资源
- Matplotlib - 快速指南
- Matplotlib - 有用的资源
- Matplotlib - 讨论
Matplotlib - 处理文本
Matplotlib 具有广泛的文本支持,包括对数学表达式的支持、对光栅和矢量输出的TrueType支持、具有任意旋转的换行符分隔文本以及 unicode 支持。Matplotlib 包含自己的 matplotlib.font_manager,它实现了跨平台、符合 W3C 的字体查找算法。
用户对文本属性(字体大小、字体粗细、文本位置和颜色等)有很大的控制权。Matplotlib 实现了大量的 TeX 数学符号和命令。
以下命令列表用于在 Pyplot 界面中创建文本 -
文本 | 在轴的任意位置添加文本。 |
注释 | 在轴的任意位置添加带有可选箭头的注释。 |
标签 | 将标签添加到 Axes 的 x 轴。 |
标签 | 将标签添加到 Axes 的 y 轴。 |
标题 | 向轴添加标题。 |
图文 | 在图形的任意位置添加文本。 |
副标题 | 为图添加标题。 |
所有这些函数都会创建并返回一个matplotlib.text.Text()实例。
以下脚本演示了上述一些功能的使用 -
import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_axes([0,0,1,1]) ax.set_title('axes title') ax.set_xlabel('xlabel') ax.set_ylabel('ylabel') ax.text(3, 8, 'boxed italics text in data coords', style='italic', bbox = {'facecolor': 'red'}) ax.text(2, 6, r'an equation: $E = mc^2$', fontsize = 15) ax.text(4, 0.05, 'colored text in axes coords', verticalalignment = 'bottom', color = 'green', fontsize = 15) ax.plot([2], [1], 'o') ax.annotate('annotate', xy = (2, 1), xytext = (3, 4), arrowprops = dict(facecolor = 'black', shrink = 0.05)) ax.axis([0, 10, 0, 10]) plt.show()
上面的代码行将生成以下输出 -