matplotlib的设置字体
时间: 2023-11-14 15:07:15 浏览: 150
要设置matplotlib的字体,可以使用以下代码:
```python
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'Times New Roman'
```
其中,`'Times New Roman'`可以替换为其他字体名称。
相关问题
matplotlib设置字体
可以通过以下代码设置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'`等。
注意,你需要确保你的系统中有所需的字体资源,否则可能会出现兼容性问题。
阅读全文