python dataframe 输出结果整行显示的方法
2018-10-15 17:36
阅读:616
在使用dataframe时遇到datafram在列太多的情况下总是自动换行显示的情况,导致数据阅读困难,效果如下:
# -*- coding: utf-8 -*- import numpy as np import pandas as pd df = pd.DataFrame(np.random.randn(1, 20)) print df显示效果:
0 1 2 3 4 5 6 \ 0 -1.193428 -0.870381 -0.970323 -1.062275 1.227282 -3.016298 -0.587623 7 8 9 10 11 12 13 \ 0 -0.608017 -0.006382 0.275454 -0.073537 1.217392 -0.12844 -1.228424 14 15 16 17 18 19 0 -1.153452 0.191372 0.582537 0.503437 -2.263716 -0.529881 height has been deprecated.解决方法:
在代码中设置显示的长宽等,如下代码示例:
# -*- coding: utf-8 -*- import numpy as np import pandas as pd 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)) print df以上这篇python dataframe 输出结果整行显示的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python dataframe 输出结果整行显示的方法
文章链接:http://soscw.com/essay/18820.html
文章标题:python dataframe 输出结果整行显示的方法
文章链接:http://soscw.com/essay/18820.html
评论
亲,登录后才可以留言!