matplotlib中显示中文
时间: 2023-10-16 21:07:26 浏览: 136
要在matplotlib中显示中文,你可以按照以下步骤进行操作:
1. 导入matplotlib库和字体管理模块:
```
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
```
2. 设置字体为中文字体:
```
font_path = 'path/to/your/chinese/font.ttf' # 替换为你的中文字体文件路径
font_prop = FontProperties(fname=font_path)
```
3. 使用中文字体进行绘图:
```
plt.plot([1, 2, 3, 4], [2, 4, 6, 8])
plt.xlabel('横坐标', fontproperties=font_prop)
plt.ylabel('纵坐标', fontproperties=font_prop)
plt.title('标题', fontproperties=font_prop)
plt.show()
```
这样就可以在matplotlib中显示中文了。请注意,你需要将`'path/to/your/chinese/font.ttf'`替换为你自己的中文字体文件的路径。在Windows系统中,你可以通过导入`matplotlib`库并运行`matplotlib.matplotlib_fname()`来查找matplotlib的配置文件位置,其中包含了字体文件的路径。 matplotlib官方文档:https://matplotlib.org/stable/users/customizing.html#the-matplotlibrc-file<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [matplotlib正常显示中文教程](https://blog.csdn.net/weixin_45832959/article/details/122717070)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* [Matplotlib中正确显示中文的四种方式](https://blog.csdn.net/lemonbit/article/details/121433603)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文