情节与R个性化

时间:2016-06-04 10:47:33

标签: r plot

我尝试用下面的命令用R做一个图,但我得到了0到20之间的线。我怎样才能确定第一个值32.2对应10(abcissa),第二个值32.2对应20(横坐标)?

Deuxgrammes <- c(32.2, 32.2, 32.2, 32.2, 32.2, 32.2, 32.2, 32.2, 32.2)
plot(Deuxgrammes, type="o", col="blue", xlim =c(0,100), ylim=c(26,33))

1 个答案:

答案 0 :(得分:1)

我认为,至少有一种简单的方法,你也可以将x值定义为

""employee

然后只是绘制它们。

x = seq( from = 10, by = 10, length.out = length( Deuxgrammes ) )

除此之外,如果轴不同,您可以更改标签。