gpt4 book ai didi

python - 如何在单行上打印 DataFrame

转载 作者:太空狗 更新时间:2023-10-29 21:33:40 25 4
gpt4 key购买 nike

与:

import pandas as pd
df = pd.read_csv('pima-data.csv')
print df.head(2)

打印自动跨多行格式化:

   num_preg  glucose_conc  diastolic_bp  thickness  insulin   bmi  diab_pred  \
0 6 148 72 35 0 33.6 0.627
1 1 85 66 29 0 26.6 0.351

age skin diabetes
0 50 1.3790 True
1 31 1.1426 False

我想知道是否有办法避免多行格式。我宁愿像这样将它打印在一行中:

   num_preg  glucose_conc  diastolic_bp  thickness  insulin       bmi      diab_pred     age       skin      diabetes  
0 6 148 72 35 0 33.6 0.627 50 1.3790 True
1 1 85 66 29 0 26.6 0.351 31 1.1426 False

最佳答案

你需要设置:

pd.set_option('expand_frame_repr', False)

option_context 上下文管理器已通过顶级 API 公开,允许您使用给定的选项值执行代码。当您退出 with block 时,选项值会自动恢复:

#temporaly set expand_frame_repr
with pd.option_context('expand_frame_repr', False):
print (df)

Pandas documentation .

关于python - 如何在单行上打印 DataFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39482722/

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