如何在R中的ggplot中手动更改y轴范围?

时间:2019-07-18 13:09:59

标签: r

我想创建一个y轴范围从0到15,从150到170的图。我不想看到y轴的范围从15到150,因为我的数据包含异常值。

我已经尝试过了,但是不起作用:

 x <- c(2,6,8,4,7,9,10)
 y <- c(6,4,8,9,10,12,156)
 dat <-data.frame(x,y)

library(ggplot2)
ggplot(dat, aes(x = x, y = y)) +
   geom_point(size=3, col="red") +
   scale_y_continuous(limits = c(0,15) & c(150,170))

0 个答案:

没有答案