I have a problem with a file that I have generated in R using "write.csv".
When I try to import it in Excel, I have some "weird characters". And finally I can't open it.
Here my code for the write.csv:
write.csv(all_sdoub,file="all_new.csv",fileEncoding = "UTF-8")
I have tried with fileEncoding ASCII, or without file encoding, I always have the same problem. I tried to send the file to a colleague, she has the same problem.
I work on a R session on a linux server. Any idea of what is happening?
edit: I have tried to had this line:
options(encoding = "UTF-8")
But it doesn't change anything to the problem.