pandas读取csv文件的问题
1、 读取的csv分隔符不是,的问题
https://blog.csdn.net/u011675334/article/details/102648426
2、DtypeWarning: Columns (6) have mixed types.Specify dtype option on import or set low_memory=False.
https://blog.csdn.net/htuhxf/article/details/83340261
3、info和describe
https://blog.csdn.net/qq_40305043/article/details/104862499
4、统计缺失值数量,查看哪列有缺失值
https://blog.csdn.net/crj0926/article/details/100805102
5、error_bad_lines=False
因为读取的是csv文件,分隔默认采用的是逗号,分析可知,读取的数据中某个格内包含两个字段,即值内可能包含两个逗号。
https://blog.csdn.net/qq_41185868/article/details/108810532
这个没有用到,不过也记录一下吧