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)即可。
本文标题:使用pandas做数据统计时的一些笔记
本文链接:https://www.haomeiwen.com/subject/ctuluftx.html
网友评论