gpt4 book ai didi

pandas - DataFrame 单元格换行符

转载 作者:行者123 更新时间:2023-12-02 20:15:59 34 4
gpt4 key购买 nike

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

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

我仍然明白:
enter image description here

最佳答案

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

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

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

enter image description here

关于pandas - DataFrame 单元格换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52383719/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com