我的数据中有两个连续变量(A和B)。我想用R中的回归线制作一个散点图。我认为这很容易。但是如何在X轴上为A和在y轴上为B制作不同的比例(间隔)?例如,X轴上的A:2,4,6,8,10,间隔为2.如何将其更改为:1,2,3,4,5,6,7,8,9,10其中间隔为1. y轴相似。
非常感谢!
答案 0 :(得分:1)
Robert Kabacoff's site有很好的指示。简而言之,您可以使用以下代码:
z = c(1:10)
plot (A,B) #add whatever specifications you need
axis (1, at=z, labels=z) #1 indicates the lower horizontal axis; 1=bottom, 2=left, 3=top, 4=right