绘图过程反复出现
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()
运行上述代码后就出图了。
网友评论