标签: r
当我绘制数据时:
plot(c(1.2,4,7),col=2)
如何显示图表,使其仅在x轴上显示整个值?
答案 0 :(得分:1)
首先关闭plot语句中的x轴:
plot
plot(c(1.2, 4, 7), col=2, xaxt="n")
然后添加您选择的轴,例如:
axis(1, at=round(x, 0))
其中x是您想要刻度线的未标记值
x