NaN column不能转换为int

比如id有NaN,然后read_csv中设置了dtype = {'id':'uint8'},就会报错。先读取在用astype转换成int,也会报错。一个替代方案是只能转换为float,也可以转换成object,df[column].astype('object')

留言

熱門文章