如何更改R中的轴分辨率绘图

时间:2014-02-20 20:20:26

标签: r parameters plot

我想知道是否有一个参数可以修改轴的间距或分辨率,从而在R中绘制图。

我有很多0到800之间的点,我希望间隙(图形点之间的空间)可见,我使用pch =“_”但仍然无法轻易看到间隙。

谢谢

1 个答案:

答案 0 :(得分:2)

按照@IShouldBuyABoat提供的提示,尝试cex参数:

x=seq(0,2,by=0.1)
y=rep.int(1,21)

par(mfrow=c(1,3))

plot(x,y,xlim=c(0,2),cex=0.1) #what you want
plot(x,y,xlim=c(0,2)) #without using cex argument (default value)
plot(x,y,xlim=c(0,2),cex=4) #exaggerating the effect you have

enter image description here