gpt4 book ai didi

python - 如何在 Pandas 中显示列的全文

转载 作者:行者123 更新时间:2023-12-05 09:31:57 25 4
gpt4 key购买 nike

我有一个包含长文本列的数据框。

演示它的外观(注意文本应继续的省略号“...”):

id  text                       group 
123 My name is Benji and I ... 2

上面的文字实际上比那个短语要长。例如它可以是:

My name is Benji and I am living in Kansas.

实际的文本比这长得多。

当我尝试仅对文本列进行子集化时,它只显示带有点“...”的部分文本。

我需要确保显示全文以便稍后进行文本摘要。但是我不确定在选择文本列时如何显示全文。

我的 df['text'] 输出看起来像这样:

1    My name is Benji and I ... 
2 He went to the creek and ...

如何显示全文而不显示索引号?

最佳答案

您可以使用 pd.set_option使用 display.max_colwidth 显示自动换行和多行单元格:

display.max_colwidthint or None

The maximum width in characters of a column in the repr of a pandas data structure. When the column overflows, a “…” placeholder is embedded in the output. A ‘None’ value means unlimited. [default: 50]

所以在你的情况下:

pd.set_option('display.max_colwidth', None)

对于 older versions, like version 0.22 , 使用 -1 而不是 None

关于python - 如何在 Pandas 中显示列的全文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68490745/

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