欧元符号在PDF输出中显示为...

ggplot() + theme_bw() + geom_line() + scale_y_continuous(formatter = "euro")

最佳答案

启动PDF图形时使用ISOLatin9.enc编码

pdf(encoding = "ISOLatin9.enc")


http://stat.ethz.ch/R-manual/R-patched/library/graphics/html/text.html处,欧元符号可以选择以欧元为字符的ISO-8895-15(拉丁文9)

关于r - 在ggplot2中绘制欧元符号€?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6706226/

10-12 20:12