哪个.Max功能

时间:2017-08-08 15:28:14

标签: r graph axis which yaxis

N <- 300
N.2 <- 800
N.3 <- 600

change.y <- c(N, N.2, N.3)
use.y <- which.max(change.y)
graph.ylim <- use.y + 100

输出是[2],这在技术上是正确的,但我希望输出说800,而不是2.然后,我想在这里插入use.y作为y-lim:

  coord_cartesian(xlim = c(0:300), ylim = c(150:900)) + 
  ...

有谁知道怎么做?当我插入ylim = c(150:graph.ylim)时,我的图表消失了。

1 个答案:

答案 0 :(得分:0)

> change.y
[1] 300 800 600
> use.y <- max(change.y)
> use.y
[1] 800