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)时,我的图表消失了。
答案 0 :(得分:0)
> change.y
[1] 300 800 600
> use.y <- max(change.y)
> use.y
[1] 800