Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用下面的代码在 R 中绘制了一列
plot(datanew$cap)
但我真正需要的是x轴上的点应该在y轴上,而y轴上的点应该是x轴。如果有人对我如何做到这一点有任何想法,我将不胜感激。
通过绘图
基本上是一样的
plot(seq(length(datanew$cap)), datanew$cap)
您可以通过交换参数(或明确指定 x 和 y 坐标)来利用这一点:
plot(x=datanew$cap, y=seq(length(datanew$cap)))