gpt4 book ai didi

python - 让 pandas 打印完整的字符串

转载 作者:行者123 更新时间:2023-11-30 22:41:29 33 4
gpt4 key购买 nike

我有一个包含两列的 pandas 数据框 - 一列用于 id,另一列用于相应的标题。我正在对一些项目 ID 的数据帧进行子集化并显示生成的数据帧。这样做时,项目 ID 可以正常显示,但相应的标题会被截断并以 ... 结尾。几个字符后,如何让 pandas 在标题栏中显示全文?

最佳答案

您可以使用display.max_colwidth:

df = pd.DataFrame(np.array([[1,'aaa'],
[2, 'long string long string long string long string long string']]), columns=['id','title'])
print (df)
id title
0 1 aaa
1 2 long string long string long string long strin...

#temporaly display long text
with pd.option_context('display.max_colwidth', 100):
print (df)
id title
0 1 aaa
1 2 long string long string long string long string long string

Documentation

关于python - 让 pandas 打印完整的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42532865/

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