我有一个绘制的 acorrplot
并且我希望它具有 .eps 文件格式。问题是在 .eps 文件中,圆圈内的数字消失了。有什么参数可以让他们回来吗?
library(corrplot)
test <- structure(c(100, 41.6411042944785, 69.6478873239437, 99.35956084172,
100, 99.9295774647887, 90.4849039341263, 54.409509202454, 100
), .Dim = c(3L, 3L), .Dimnames = list(c("x1", "x2", "x3"), c("x1",
"x2", "x3")))
没有 .eps 格式:(表现良好)
corrplot(round(test),tl.cex=1.5,title="test", method="circle",is.corr=FALSE,type="full",
cl.lim=c(0,100),cl.cex=2,addgrid.col="blue",addshade="positive",col=col1, addCoef.col = rgb(0,0,0, alpha =0.6), mar=c(0,0,1,0), diag= FALSE)
.eps 格式:
postscript("test.eps", height=8, width=8, paper="special", family="Helvetica", fonts="Helvetica", horizontal=FALSE, onefile=FALSE)
corrplot(round(test),tl.cex=1.5,title="test", method="circle",is.corr=FALSE,type="full",
cl.lim=c(0,100),cl.cex=2,addgrid.col="blue",addshade="positive",col=col1, addCoef.col = rgb(0,0,0, alpha =0.6), mar=c(0,0,1,0), diag= FALSE)
dev.off()