我想在R中的直方图中更改x轴上的值。
计算机当前将其设置为
0, 20, 40, 60, 80, 100.
我希望x轴按照以下方式增加10:
0,10,20,30,40,50,60,70,80,90,100.
我知道要摆脱当前的轴,我必须这样做
(hist(x), .... xaxt = 'n')
然后
axis(side = 1) .....
但是如何让它显示我需要它显示的数字?
感谢。
答案 0 :(得分:18)
答案就在?axis
...
dat <- sample(100, 1000, replace=TRUE)
hist(dat, xaxt='n')
axis(side=1, at=seq(0,100, 10), labels=seq(0,1000,100))