当我在R中运行此命令时,我可以生成绘图,但我需要以这样的方式绘制它,以便我可以看到此绘图中的每个元素。这些数据有数千个元素。那么有没有办法以高分辨率pdf保存这个图,所以我可以放大并看到图中的每个元素没有任何阻碍?
par(mfrow=c(1,1),font=2,font.lab=2,font.axis=2,mgp=c(3.1,1,0),mar=c(5,5,4,2)+0.1)
bp<-plot(as.numeric(vec[include,eig1]),as.numeric(vec[include,eig2]),pch=pch.array, cex=1.35,lwd=1.0,col = color.array[include], xlim=range.eig1,ylim=range.eig2,main="",xlab=eig1, ylab=eig2,cex.lab=2.0,cex.axis=2.0)
legend(range.eig1[1],range.eig2[2],classes,col=color.set,pch=pch.set,cex=0.85,bty="n",xjust=0.3)
text(as.numeric(vec[include,eig1]),as.numeric(vec[include,eig2]),labels=as.character(rownames(vec)[include]),col="Black", cex=0.34)