matplotlib设置字体
时间: 2023-09-06 19:14:18 浏览: 126
可以通过以下代码设置matplotlib的字体:
```python
import matplotlib.pyplot as plt
import matplotlib.font_manager as fm
# 设置字体
myfont = fm.FontProperties(fname='C:/Windows/Fonts/simhei.ttf')
# 创建图形
fig, ax = plt.subplots()
# 绘制图形
ax.plot([1, 2, 3, 4], [1, 4, 2, 3])
# 设置标题和横纵坐标标签的字体
ax.set_title('标题', fontproperties=myfont)
ax.set_xlabel('横坐标', fontproperties=myfont)
ax.set_ylabel('纵坐标', fontproperties=myfont)
# 显示图形
plt.show()
```
其中,`fname`参数指定字体文件的路径,可以根据自己的需要进行修改。在设置标题和标签时,需要使用`fontproperties`参数来指定字体。
相关问题
matplotlib设置字体加粗
要在matplotlib中设置字体加粗,你可以使用`fontweight`参数。下面是一个例子:
```python
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
# 设置标题字体加粗
plt.title('Bold Title', fontweight='bold')
# 设置坐标轴标签字体加粗
plt.xlabel('X-axis', fontweight='bold')
plt.ylabel('Y-axis', fontweight='bold')
plt.show()
```
在上面的例子中,我们通过设置`fontweight`参数为`'bold'`来将标题和坐标轴标签的字体加粗。你也可以使用其他权重值,例如`'normal'`、`'light'`、`'heavy'`等。
注意,你需要确保你的系统中有所需的字体资源,否则可能会出现兼容性问题。
matplotlib设置字体大小
可以使用以下代码设置matplotlib坐标轴的字体大小:
```python
import matplotlib.pyplot as plt
# 设置坐标轴字体大小
plt.rcParams['font.size'] = 12
# 绘制图形
plt.plot([1, 2, 3], [4, 5, 6])
plt.xlabel('X轴', fontsize=14)
plt.ylabel('Y轴', fontsize=14)
plt.show()
```
其中,`plt.rcParams['font.size']`可以设置全局的字体大小,也可以在`xlabel`和`ylabel`中单独设置字体大小。
阅读全文