美文网首页R
2021-05-25_R 绘图中字体问题

2021-05-25_R 绘图中字体问题

作者: 森尼啊 | 来源:发表于2021-05-25 11:40 被阅读0次

    绘图过程反复出现
    Error in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : polygon edge not found
    说是R中没有arial字体,想要R可以用电脑中的字体,谷歌说 extrafont 可以整,整半天不明白。找了另一种方法。

    电脑系统:macOS Big Sur
    R version : 3.6.3

    # https://stackoverflow.com/questions/55933524/r-can-not-find-fonts-to-be-used-in-plotting
    install.packages("showtext")
    library(showtext)
    #下载arial字体  https://www.freefontspro.com/cn/14454/arial.ttf
    font_add('Arial', '/Users/Downloads/Arial.ttf')#使用自己的路径
    showtext_auto()
    

    运行上述代码后就出图了。

    相关文章

      网友评论

        本文标题:2021-05-25_R 绘图中字体问题

        本文链接:https://www.haomeiwen.com/subject/bzvqsltx.html