如何编写python代码让使用matplotlib库时可以输出中文
时间: 2024-02-25 16:58:54 浏览: 81
matplotlib显示中文
要在matplotlib中输出中文,你需要做以下几个步骤:
1. 导入`matplotlib`库和`font_manager`库:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
```
2. 下载并安装一个中文字体,例如`SimHei`或`Microsoft YaHei`。
3. 使用`FontProperties`指定中文字体:
```python
font = FontProperties(fname='path/to/font', size=14)
```
其中,`fname`是字体文件的路径,`size`是字体大小。
4. 在绘图时使用指定的中文字体:
```python
plt.title('中文标题', fontproperties=font)
plt.xlabel('中文X轴', fontproperties=font)
plt.ylabel('中文Y轴', fontproperties=font)
```
下面是一个完整的示例代码:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties(fname='/path/to/font', size=14)
plt.plot([1, 2, 3], [4, 5, 6])
plt.title('中文标题', fontproperties=font)
plt.xlabel('中文X轴', fontproperties=font)
plt.ylabel('中文Y轴', fontproperties=font)
plt.show()
```
其中,`/path/to/font`需要替换成你下载的中文字体文件的路径。
阅读全文