使用pandas做数据统计时的一些笔记
2018-07-02 本文已影响2人
taking_off
1、读取csv格式数据时,在ide下显示会有省略号。原因:pandas默认的显示数据行数有限制;解决方法:pd.set_option('display.max_columns', 100)即可。
2、数据列数较多时,默认会折行显示,对阅读带来一定的困难。原因:pandas默认的显示宽度有限制;解决方法:·
pd.set_option('display.width', 500)即可。
1、读取csv格式数据时,在ide下显示会有省略号。原因:pandas默认的显示数据行数有限制;解决方法:pd.set_option('display.max_columns', 100)即可。
2、数据列数较多时,默认会折行显示,对阅读带来一定的困难。原因:pandas默认的显示宽度有限制;解决方法:·
pd.set_option('display.width', 500)即可。