怎么让jupyter结果全部显示

图片[1]-怎么让jupyter结果全部显示-uusu优素-乐高,模型,3d打印,编程

显示所有列:

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

显示1000列:

pd.set_option(‘max_columns’,1000)

显示所有行:

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

显示1000行:

pd.set_option(‘max_row’,1000)

设置value的显示长度为100,默认为50:

pd.set_option('max_colwidth',100)

设置浮点数:

pd.set_option(‘display.float_format’,lambdax:‘%.5f’%x)
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容