我想改变r中图的x轴。例如:
r<-c(1:10)
plot(r)
axis(1,at=10/(1:10),labels=NULL)
但我也看到x轴上的旧值。我想在x轴上只有新的值。我该怎么做?
答案 0 :(得分:3)
如果您希望绘图具有边框,则应在axes
函数和plot
参数中使用frame.plot
参数,例如:
r<-c(1:10)
plot(r, axes=FALSE, frame.plot=TRUE)
axis(1, at=10/(1:10), labels=NULL)
axis(2, at=axTicks(2), axTicks(2))