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 中正确设置坐标原点? 我想要我的图表中坐标的原点,在 哪里x=1而y=-1不是共同点 x=0,y=0请参阅附件。
x=1
y=-1
x=0
y=0
首先,您应该注意,默认情况下,R 将轴放在绘图的一侧,不一定在 [0;0] 处相交。
您可以做的是绘制没有轴的图形,然后使用该axis函数将它们添加到所需的位置
axis
x <- -5:5 y <- x plot(x,y, t="l", xaxt="n", yaxt="n") axis(1, pos=-1) axis(2, pos=1, las=1)
有关?axis更多信息,请参阅 (您可能会发现at和labels参数axis特别有用)。
?axis
at
labels