How do I expand the output display to see more columns of a pandas DataFrame?

后端 未结 19 1641
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 00:37

Is there a way to widen the display of output in either interactive or script-execution mode?

Specifically, I am using the describe() function on a pand

19条回答
  •  悲&欢浪女
    2020-11-22 00:53

    If you want to set options temporarily to display one large DataFrame, you can use option_context:

    with pd.option_context('display.max_rows', None, 'display.max_columns', None):
        print (df)
    

    Option values are restored automatically when you exit the with block.

提交回复
热议问题