R绘制边距&点缀的y轴

时间:2013-02-28 03:57:37

标签: r

无论如何用绘图函数的虚线代替你的y轴吗?

另外,如何增加整个绘图区域的边距?可以在布局中指定吗?

如果你看下面我的窗口边缘接近平均温度。

1 个答案:

答案 0 :(得分:3)

关于第一个问题,您可以使用axis,例如:

> plot(1:10,  axes=FALSE)      ### to not plot the default ones
> axis(1,lty='dashed',lwd=3)
> axis(2,lty=3,lwd=2)

第二部分不清楚。您无法在布局命令中指定边距。

enter image description here

编辑设置图的外边距。

默认情况下,页面上没有外边距。外边距可以     使用 oma 图形状态设置指定。这包含四个值     顺序中的四个边距(底部,左侧,顶部,右侧)和值都是单位线。

例如:

     old.oma <- par(oma=c(5,5,0,1))  #bottom 5 lines,left 5lines,right 1line

enter image description here