原生的jupyter theme看起来比较蛋疼,尤其是字体和字号。为了修改这个配置可以安装 jupyter theme。
项目链接: https://github.com/dunovank/jupyter-themes 如果不喜欢英文可以参考这个链接:https://www.jianshu.com/p/6de5f6cce06d
代码语言:javascript复制上面的样式对应的配置命令:
jt -f fira -fs 11 -cellw 90% -ofs 11 -dfs 11 -T -t solarizedl
除此之外matplotlib 默认不支持中文显示,主要是字体问题,可以通过下面的代码配置来让matplotlib 支持中文
代码语言:javascript复制from matplotlib import pyplot as plt
%matplotlib inline
font = {'family' : 'MicroSoft YaHei',
'weight' : 'bold',
'size' : 10}
plt.rc("font", **font)
实际效果,另外还可以使用altair ,altair 默认支持中文显示 https://altair-viz.github.io
☆文章版权声明☆
* 网站名称:obaby@mars
* 网址:https://h4ck.org.cn/
* 本文标题: 《jupyter notebook 调整字体 以及matplotlib显示中文》
* 本文链接:https://h4ck.org.cn/2019/11/jupyter-notebook-调整字体-以及matplotlib显示中文/
* 转载文章请标明文章来源,原文标题以及原文链接。请遵从 《署名-非商业性使用-相同方式共享 2.5 中国大陆 (CC BY-NC-SA 2.5 CN) 》许可协议。
分享文章:
相关文章:
- IDA Pro Plugin wizard for vs2013
- 上一篇文章的代码(开源Github)
- Porn Data Anaylize — AI换脸 分类数据浅析(github)
- hubot install. hubot 机器人安裝
- Porn Data Anaylize — 标签 模特信息分析(github)
- Windows 7 Eric4 PySide环境配置
- IDA_SYNC_PLUGIN (v2.0.0.1) for IDA 6.x
- Porn Data Anaylize — 上传者 分类信息分析(github)
- 批处理 激活virtualenv 并且运行Python 命令
- Win10 Tensorflow-gpu 不完全安装手册