plt.plot坐标轴名字大小
时间: 2023-10-13 08:10:46 浏览: 87
可以使用以下代码来更改坐标轴名字的大小:
```python
import matplotlib.pyplot as plt
# 创建示例数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制图形并设置坐标轴名字大小
plt.plot(x, y)
plt.xlabel('X轴', fontsize=16) # 设置X轴名字大小为16
plt.ylabel('Y轴', fontsize=16) # 设置Y轴名字大小为16
# 显示图形
plt.show()
```
在上面的代码中,通过`fontsize`参数来设置坐标轴名字的大小,该参数的单位为像素。可以根据需要自行调整大小。
相关问题
plt.plot坐标轴名字大小和字体
可以通过以下代码设置 `plt.plot` 中的坐标轴名字大小和字体:
```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')
# 显示图形
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.show()
```
输出结果:
![image.png](attachment:image.png)
`fontweight`参数可以设置字体加粗,其可选值为`normal`、`bold`、`heavy`、`light`、`ultrabold`和`ultralight`。
阅读全文