Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
抱歉,我找不到这个:当我在 R 中绘制任何图时,我有一个圆形图形区域矩形。它的左边是 X 轴,底线是 Y 轴,这是我想要的。但是在图形区域的右侧和顶部总是有线条,这些我不想要。如何压制那两条线?我只想要两条线 - 轴,而不是矩形。谢谢(我的意思是那个矩形包括轴)
参见 ?par,选项 bty
par(bty="l")
编辑:一个例子:
plot(1:4) par(bty="l") plot(1:4)
你要frame.plot = FALSE
frame.plot = FALSE
plot(1,1, frame.plot=F)