标签: r plot
有人能告诉我为什么这个简单的可重复示例会在X轴上产生缺失值吗?
at应该将1到20的刻度标记放在右边吗?
at
test <- iris[,3] test <- test[1:20] plot(test, type = "o", pch = 19) axis(1, at=c(1:20), labels= c(1:20))
答案 0 :(得分:1)
使用dev.new()
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))