Hi, I have a question about special character: when I create a data frame including some special characters, like 'ø', it displayed as '<U+00F8>'. I understand that it's one encoding code for 'ø'. but I want to display the letter as 'ø' on my screen. And more, when I save the data frame to a local position, it was also save as the encoding code instead of the special characters, anybody give some practical tips, I have little knowledge about encoding stuff. My operate system is windows 7 Simple Chinese, I use R 2.15.3 64-bit.
> x <- data.frame(part = c("målløs", "ny")) > head(x) part 1 m<U+00E5>ll<U+00F8>s 2 ny > x$part [1] målløs ny Levels: m<U+00E5>ll<U+00F8>s ny Thanks! -- Huidong Tian, Postdoc Swedish University of Agricultural Sciences Department of Aquatic Resources Institute of Marine Research Turistgatan 5, 45330 Lysekil, Sweden Phone: +47 40624112 Email: tienhuit...@gmail.com ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.