如何调整y轴而不会弄乱r中的x轴以获得多个直方图?

时间:2011-08-16 17:43:31

标签: r plot histogram data-visualization density-plot

嗨我想在r中的同一个图上放置7个不同Y轴刻度的直方图。如果我不缩放图像,X轴看起来很好,如果我缩放它,它会拧紧所有东西。这是我在做的事情: Link to my code

我认为问题在于我只是在调用par(new = T),也许有更好的方法可以将所有直方图放在相同的x刻度上。
如何调整y轴以使所有直方图都在相同的比例上,同时还要确保x轴上的比例相同?感谢

Histograms of pixel intensity data without scaling

Histograms of pixel intensity data without scaling

1 个答案:

答案 0 :(得分:4)

您应该能够使用xlim = c(n, p)强制使用相同的x比例,其中np是您选择的最小值和最大值。

摘自?xlim

Usage:

 plot.window(xlim, ylim, log = "", asp = NA, ...)

Arguments:

xlim, ylim: numeric vectors of length 2, giving the x and y coordinates
      ranges.