R语言中给图形添加图例


 

1、

opar <- par(no.readonly = T) par(mfrow=c(2,2)) plot(1:10) legend("topleft",inset = 0.04,c(paste0("lab", 1:4)),pch = c(15:18), col = c("red","blue","magenta","cyan")) plot(1:10) legend("bottomright",inset = 0.04,c(paste0("lab", 1:4)),pch = c(15:18), col = c("red","blue","magenta","cyan"),ncol = 2,title = "legend",text.font = 2, box.lwd = 3) plot(1:10) legend("topleft",inset = 0.04,c(paste0("lab", 1:4)),pch = c(15:18), col = c("red","blue","magenta","cyan"),horiz = T,cex=1.3) plot(1:10) locator(1) ## 此处鼠标在图形中确定图例的位置 legend(2.65653,7.3,inset = 0.04,c(paste0("lab", 1:4)),pch = c(15:18), col = c("red","blue","magenta","cyan"),box.col = "red", box.lwd = 3,text.font = 2) par(opar)

 

 

2、鼠标确定图例位置

plot(1:10) legend(locator(1),LETTERS[1:4],pch = 15:18, inset = 0.05,cex = 2,text.font = 2, col = c("red","blue","green","purple"),ncol = 2, box.lwd = 3)

 

 

参考:https://www.jianshu.com/p/004f00142d00

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM