Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to export a data.frame to a csv with utf-8 encoding. I have tried generating the file with write.csv with no success and the help(write.csv) did not mention any specific advice on creating that specific output. Here is my current export line.

write.csv(prod_out, file="product_output.csv",append=FALSE,eol="\r")

Any advice you can offer is appreciated.

share|improve this question

1 Answer

up vote 4 down vote accepted

Try opening a UTF8 connection:

con<-file('filename',encoding="utf8")
write.csv(...,file=con,...)
share|improve this answer
Yes, thank you for the advice. works perfectly. – analyticsPierce Sep 26 '10 at 5:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.