When there are UTF-8 characters in the data frame, it won't be displayed properly.
For example, the following is correct:
> "\U6731"
[1] "朱"
But when I put that in a data frame and have it printed, here it is:
> data.frame(x="\U6731")
x
1 <U+6731>
Hence I believe this has nothing to do with encoding issues.
Is there any direct way to print 朱
instead of <U+6731>
.
I have to use Windows in company so using Linux might not be feasible for me.