这似乎是一个微不足道的R
问题,但我没有找到任何令人信服的解决方案。我想翻转 X 轴变为 Y 的情节,反之亦然。在 boxplot 中有一个horiz="T"
选项,但在plot()
.
这就是我的情节:
plot(rm, type="l", main="CpG - running window 100")
> str(rm)
num [1:43631] 0.667 0.673 0.679 0.685 0.691 ...
我想得到这个:
感谢您的反馈。
我认为问题是因为情节没有明确的索引。尝试以下操作:
set.seed(1)
a = rnorm(200) # like your `rm` -- bad name for an object, by the way
plot(a, type="l", main="rnorm(200)") # index automatically added
这与您所拥有的相似。它也相当于plot(1:length(a), a, ...)
where 1:length(a)
is yourx
和a
is your y
。
记住以上几点,我们可以像这样翻转您的图表:
# index specified, and X-Y swapped
plot(a, 1:length(a), type="l", main="rnorm(200)")