matplotlib 坐标轴标签字体大小
时间: 2023-09-01 18:06:46 浏览: 200
要设置Matplotlib坐标轴标签的字体大小,可以使用`tick_params`函数来实现。通过指定`axis`参数为'x'或者'both',可以分别设置横轴或者同时设置横轴和纵轴的刻度标签字体大小。例如,如果我们想设置横轴刻度标签的字体大小为14,可以使用以下代码:
```python
import matplotlib.pyplot as plt
# 生成数据
x = \[1, 2, 3, 4, 5\]
y = \[10, 8, 6, 4, 2\]
# 绘制图表
fig, ax = plt.subplots()
ax.plot(x, y)
# 设置横轴刻度标签字体大小
ax.tick_params(axis='x', labelsize=14)
plt.show()
```
如果我们想同时设置纵轴刻度标签的字体大小,只需将`axis`参数设置为'both',如下所示:
```python
import matplotlib.pyplot as plt
# 生成数据
x = \[1, 2, 3, 4, 5\]
y = \[10, 8, 6, 4, 2\]
# 绘制图表
fig, ax = plt.subplots()
ax.plot(x, y)
# 设置横轴和纵轴刻度标签字体大小
ax.tick_params(axis='both', labelsize=14)
plt.show()
```
这样就可以根据需要设置Matplotlib坐标轴标签的字体大小了。\[1\]\[2\]
#### 引用[.reference_title]
- *1* *2* [自定义Matplotlib中轴刻度标签字体大小](https://blog.csdn.net/CodeWG/article/details/130393166)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文