- 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 已经自动接管了轴上间隔点的任务。Matplotlib 的默认刻度定位器和格式化程序被设计为在许多常见情况下通常足够。可以明确提及刻度的位置和标签以满足特定要求。
xticks ()和yticks()函数采用列表对象作为参数。列表中的元素表示相应操作上将显示刻度的位置。
ax.set_xticks([2,4,6,8,10])
此方法将用刻度标记给定位置的数据点。
同样,刻度线对应的标签可以分别通过set_xlabels()和set_ylabels()函数设置。
ax.set_xlabels([‘two’, ‘four’,’six’, ‘eight’, ‘ten’])
这将在 x 轴标记下方显示文本标签。
以下示例演示了刻度线和标签的使用。
import matplotlib.pyplot as plt import numpy as np import math x = np.arange(0, math.pi*2, 0.05) fig = plt.figure() ax = fig.add_axes([0.1, 0.1, 0.8, 0.8]) # main axes y = np.sin(x) ax.plot(x, y) ax.set_xlabel(‘angle’) ax.set_title('sine') ax.set_xticks([0,2,4,6]) ax.set_xticklabels(['zero','two','four','six']) ax.set_yticks([-1,0,1]) plt.show()