プロットされたaがcorrplot
あり、それを.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()