如何用日语创建ggplot2标题?

时间:2014-11-07 04:36:50

标签: r localization ggplot2

我正准备用日语进行演示,并希望我的图像的标题和图例名称是日文。我可以让文本在RStudio中渲染得很好,但是当渲染图像时,日文字符只显示为方框。

x=-10:10
y=x*x
df=data.frame(x,y)
ggplot(df, aes(x,y)) + geom_line() + ggtitle("テスト")

enter image description here

谢谢。

1 个答案:

答案 0 :(得分:3)

你似乎做了这样的事情。我使用的是Mac,我最初没有看到您在ggplot图表中指定的字母。但是下面的代码是打印字母。

theme_set(theme_gray(base_size=12, base_family="HiraKakuProN-W3"))

ggplot(df, aes(x,y)) + 
geom_line() +
ggtitle("テスト") 

enter image description here