DataFrame单元格换行符

时间:2018-09-18 09:46:50

标签: pandas jupyter-notebook jupyter

问题很简单。
如何防止 jupyter笔记本中打印的数据框的单元格出现换行(不在终端中)。

我在这里没有看到任何答案,例如使用pd.get_option('display.width')pd.get_option('display.max_colwidth')等,对我没有帮助。

我仍然知道:
enter image description here

1 个答案:

答案 0 :(得分:3)

之所以会发生这种情况,是因为没有空间可以渲染单元格的内容,因此html文本换行解决方案开始了。 您可以通过将white-space单元属性设置为nowrap来禁用它:

df.style.applymap(lambda x:'white-space:nowrap')

df.style.set_properties(**{'white-space': 'nowrap'})

enter image description here