R图上缺少X轴值

时间:2018-03-14 07:35:44

标签: r plot

有人能告诉我为什么这个简单的可重复示例会在X轴上产生缺失值吗?

at应该将1到20的刻度标记放在右边吗?

test <- iris[,3]
test <- test[1:20]
plot(test, type = "o", pch = 19)
axis(1, at=c(1:20), labels= c(1:20))

enter image description here

1 个答案:

答案 0 :(得分:1)

使用dev.new()

dev.new(width=10, height=10)
test <- iris[,3]
test <- test[1:20]
plot(test, type = "o", pch = 19)
axis(1, at=c(1:20), labels= c(1:20))  

enter image description here