R中的隐藏图例

时间:2018-08-03 16:23:03

标签: r plot

我对情节的外部图例有疑问: 这是代码:

x1<-read.csv("C:\\Users\\...\\x1.csv",sep=";")

plot(b~obs,data=x1,xlab="Observations",ylab="values", xlim=c(1,13), ylim=c(1,13),pch=1,cex=1)

points(x1$a,pch=20,cex=1)

对于传说,我已经尝试过:

legend( x=15,y=10, xpd=TRUE, xjust=0, yjust=.5,
    legend=c("w/o FU", "w FU"),
    pch=c(1,20),cex=1)

这:

legend( x="topleft",inset=c(1,0), xpd=TRUE,bty="n", 
    legend=c("w/o FU", "w FU"),
    pch=c(1,20),cex=1)

这就是我得到的: enter image description here

图例被隐藏了,我无法查看也无法缩放,也无法扩展窗口。

我该如何解决

谢谢!

1 个答案:

答案 0 :(得分:0)

plot(mpg~disp, data=mtcars)
legend(par("usr")[2], par("usr")[4], legend=c("Abc","Xyz"),pch=c(1,20), inset=c(0,0), xpd=TRUE)

bad margins

par(mar=c(5,4,4,4)+0.1) # default is c(5,4,4,2)+0.1
plot(mpg~disp, data=mtcars)
legend(par("usr")[2], par("usr")[4], legend=c("Abc","Xyz"),pch=c(1,20), inset=c(0,0), xpd=TRUE)

shifted margin