Một cái gì đó khác bạn có thể thử nếu bạn gặp vấn đề mã hóa thành 'utf-8' và muốn đi theo từng ô bạn có thể thử như sau.
Con trăn 2
(Trong đó "df" là đối tượng DataFrame của bạn.)
for column in df.columns:
for idx in df[column].index:
x = df.get_value(idx,column)
try:
x = unicode(x.encode('utf-8','ignore'),errors ='ignore') if type(x) == unicode else unicode(str(x),errors='ignore')
df.set_value(idx,column,x)
except Exception:
print 'encoding error: {0} {1}'.format(idx,column)
df.set_value(idx,column,'')
continue
Vậy hãy thử đi:
df.to_csv(file_name)
Bạn có thể kiểm tra mã hóa của các cột bằng cách:
for column in df.columns:
print '{0} {1}'.format(str(type(df[column][0])),str(column))
Cảnh báo: lỗi = 'bỏ qua' sẽ chỉ bỏ qua ký tự, ví dụ:
IN: unicode('Regenexx\xae',errors='ignore')
OUT: u'Regenexx'
Con trăn 3
for column in df.columns:
for idx in df[column].index:
x = df.get_value(idx,column)
try:
x = x if type(x) == str else str(x).encode('utf-8','ignore').decode('utf-8','ignore')
df.set_value(idx,column,x)
except Exception:
print('encoding error: {0} {1}'.format(idx,column))
df.set_value(idx,column,'')
continue
index=False
để giảm chỉ số.