У меня есть CSV-файл, который содержит много странных символов. Пример как показано ниже:
df = data.frame(comments = c('Korea¬Ãs Ministry of Food and Drug Safety is proposing an amendment seeking to amend the Standards and Specification','it is important to highlight:\n• Many maximum limits for drug',
'The European Parliament has published a decision, which aims to establish a special Committee to examine the EU¬Ãs authorization procedure'))
write.csv(df, './example.csv', row.names = FALSE)
Кто-нибудь знает, как я могу убрать эти странные символы в R (или python). Я понятия не имею, почему это происходит и как их очистить. Большое спасибо.