我是R中的新人。我正在使用我最喜欢的字体之一“宪章BT”来制作我的情节。我在inkscape,LaTeX中使用thar字体,到处都是!!!几天前R中的所有东西都正常工作,但今天,当我试图保存任何情节时,字体就消失了。我尝试使用其他更常见的字体,比如Times New Roman,但问题不在于字体。
windowsFonts(A=windowsFont("Charter BT"))
par(pty="s", cex.axis=1, las=1, cex.lab=1, family = "A")
a1=c(22.02, 23.83, 26.67, 25.38, 25.49, 23.50, 25.90, 24.89, 25)
a2=c(21.49, 22.67, 24.62, 24.18, 22.78, 22.56, 24.46, 23.79, 25)
a3=c(20.33, 21.67, 24.67, 22.45, 22.29, 21.95, 20.49, 21.81, 25)
a4=c(20.33, 21.67, 24.67, 22.45, 22.29, 21.95, 20.49, 21.81, 25)
boxplot(
quantile(a1,type=6),
quantile(a2,type=6),
quantile(a3,type=6),
quantile(a4,type=6),
names=c("a1","a2","a3", "a4"),
ylab="Valor", ylim=c(20,28), col=rainbow(4))
legend("top", inset = -0.2, legend=c("a1","a2","a3", "a4"),
fill=rainbow(4), horiz=TRUE, cex=0.8, xpd=TRUE)
我进入R
但是当我以pdf格式保存时
我该如何解决这个问题? 有什么建议,帮忙??
由于