在R中更改尺寸轴图

时间:2015-12-11 16:16:19

标签: r plot

您好如何在R

中更改尺寸轴图
{{1}}

结果是 enter image description here

我希望轴是序列1:36,而不是(0,5,10,20,25,30,35)但是(1,2,3,4,5,6,7,...... 36) )

2 个答案:

答案 0 :(得分:1)

你应该axis。但它被优化为不重叠先前绘制的标签重叠,因此我在这里使用cex参数(取决于您的窗口大小)来显示所有标签。

plot(1:36, rnorm(36), axes = FALSE)
axis(1, 1:36, 1:36,cex.axis=0.5)

enter image description here

答案 1 :(得分:0)

使用xaxt = "n"抑制x轴,然后将其添加回您自己的axis

plot(runif(36), type="l",col="blue", xaxt = "n", cex.axis=0.7)
axis(1, at=1:36, labels=1:36,cex.axis=0.7)

enter image description here