Hi, I want to create a data frame including a column containing some special characters, like "ø". when I print that data frame out, the content change to <U+00F8>, and when save the data frame to a txt file, the content keep in that style, but I need it in its original form, anybody can explain?
> x <- data.frame(part = c("målløs", "ny")) > x part 1 m<U+00E5>ll<U+00F8>s 2 ny x[1,1] [1] målløs Levels: m<U+00E5>ll<U+00F8>s ny Regards! -- Huidong Tian, Postdoc Swedish University of Agricultural Sciences [[alternative HTML version deleted]]
______________________________________________ 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.