python dataframe 输出结果整行显示的方法
在使用dataframe时遇到datafram在列太多的情况下总是自动换行显示的情况,导致数据阅读困难,效果如下:
#-*-coding:utf-8-*- importnumpyasnp importpandasaspd df=pd.DataFrame(np.random.randn(1,20)) printdf
显示效果:
0123456\ 0-1.193428-0.870381-0.970323-1.0622751.227282-3.016298-0.587623 78910111213\ 0-0.608017-0.0063820.275454-0.0735371.217392-0.12844-1.228424 141516171819 0-1.1534520.1913720.5825370.503437-2.263716-0.529881 heighthasbeendeprecated.
解决方法:
在代码中设置显示的长宽等,如下代码示例:
#-*-coding:utf-8-*- importnumpyasnp importpandasaspd pd.set_option('display.height',1000) pd.set_option('display.max_rows',500) pd.set_option('display.max_columns',500) pd.set_option('display.width',1000) df=pd.DataFrame(np.random.randn(1,20)) printdf
以上这篇pythondataframe输出结果整行显示的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。