使用png()命令在轴标题中使用变音符保存ggplot时出错

时间:2019-07-03 13:37:53

标签: r ggplot2 diacritics

我可以在RStudio中正确查看以下图,但是在保存图时,我得到了:

Error in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y,  : 
  Metric information not available for this family/device


myplot <-  ggplot(iris) +
           geom_point(aes(x = Sepal.Length, y = Sepal.Width)) +
           ylab(bquote('ääää ['~cm^2*']'))

png(filename = "...myplot.png",
    type = "cairo",
    units = "in",
    width = 6,
    height = 9,
    res = 300)

myplot

dev.off()

它以前曾在同一台计算机,同一版本的R和RStudio上运行,所以我不知道可能是什么问题。有什么想法吗?

0 个答案:

没有答案