其他
在jupyter中显示pdf内容
使用IPython的display可以将pdf内容渲染到jupyter内,代码如下
pdf文件
本地pdf文件,可以在jupyter内显示
from IPython.display import IFrame
IFrame('管理者短视主义影响企业长期投资吗_基于文本分析和机器学习_胡楠.pdf', width=800, height=450)
pdf链接
from IPython.display import IFrame
IFrame('https://arxiv.org/pdf/1406.2661.pdf', width=800, height=450)
精选文章
LIWC vs Python | 文本分析之词典统计法略讲(含代码)