plt.plot坐标轴名字大小和字体
时间: 2023-10-13 22:10:46
浏览: 95
可以通过以下[代码]([http]([http](https://geek.csdn.net/educolumn/68f28ca3131d47699e5902c5d3d74d51?spm=1055.2569.3001.10083)s://geek.csdn.net/educolumn/68f28ca3131d47699e5902c5d3d74d51?spm=1055.2569.3001.10083)s://geek.csdn.net/educolumn/1572ef9b473b4e00f6b2bf6d428b7c27?spm=1055.2569.3001.10083)设置 `plt.plot` 中的坐标轴名字[大小](https://geek.csdn.net/educolumn/7261b874aa6b3f947468605f42946d95?spm=1055.2569.3001.10083)和字体:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
# 绘制图形
plt.plot(x, y)
# 设置x坐标轴名字大小和字体
plt.xlabel('x-axis', fontsize=14, fontweight='bold')
# 设置y坐标轴名字大小和字体
plt.ylabel('y-axis', fontsize=14, fontweight='bold')
# [显示](https://geek.csdn.net/educolumn/103ca72607c717122e068b9f06a24df6?spm=1055.2569.3001.10083)图形
plt.show()
其中,`fontsize` 参数用于设置字体大小,`fontweight` 参数用于设置字体粗细。
相关问题
plt.plot坐标轴名字大小和字体设置微软雅黑
可以使用`font`参数来设置字体和大小,例如:
```python
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'Microsoft YaHei' # 设置字体为微软雅黑
plt.rcParams['font.size'] = 12 # 设置字体大小为12
x = [1, 2, 3, 4, 5]
y = [2, 4, 3, 5, 1]
plt.plot(x, y)
plt.xlabel('X轴', fontweight='bold') # 设置X轴标签,并加粗字体
plt.ylabel('Y轴', fontweight='bold') # 设置Y轴标签,并加粗字体
```
plt.plot设置图表坐标轴字体大小
在使用matplotlib库的plt.plot函数绘制图表时,可以通过以下方式设置坐标轴的字体大小:
1. 使用plt.xticks和plt.yticks函数设置坐标轴刻度的字体大小:
```python
import matplotlib.pyplot as plt
# 设置x轴和y轴刻度的字体大小为12
plt.xticks(fontsize=12)
plt.yticks(fontsize=12)
```