为什么scale_y_continuous在这里不起作用?没有给出错误信息

时间:2019-05-02 08:27:51

标签: r ggplot2

在我的ggplot上(见下文),我期望scale_y_continuous(breaks =(seq(0,90,10)))将y设置在0到90之间,并且每隔10间隔一次。相反,我没有得到y轴或刻度标记。

谷歌搜索发现这并不能完全解决我的问题:

scale_y_continuous not working

使用ylim()可以更改比例,但不允许我将间隔更改为每10个。

这是我的数据的一部分:

structure(list(dval = c(73.2, 76.7, 79.2, 74.9, 74.8, 76.8, 74.7, 
74, 77.2, 74.6, 74.2, 72.7), date = structure(c(17646, 17655, 
17675, 17681, 17701, 17729, 17743, 17751, 17757, 17778, 17793, 
17800), class = "Date")), row.names = c(43215L, 43224L, 43244L, 
43250L, 43270L, 43298L, 43312L, 43320L, 43326L, 43347L, 43362L, 
43369L), class = "data.frame")

这是我用来绘制的代码:

ggplot(test, aes(date, dval)) +
    #scale_y_continuous() should be mking Y between 0 and 90 and spaced every 10, but isnt...
    #ylim() works but doesnt set default spacing of 10
    scale_y_continuous(breaks=(seq(0, 90, 10))) +
    #ylim(0, 80) +
    geom_point()+
    geom_smooth(method=lm)

2 个答案:

答案 0 :(得分:1)

您的dval值仅介于72和79.x之间,因此您的休息时间超出了使用的数据范围。

scale_y_continuous(breaks=(seq(72,79,1))) 

有效。

答案 1 :(得分:0)

@markus的评论对我来说很合理。将limits参数添加到scale_y_continuous中,得到了我想要的输出:

ggplot(test, aes(date, dval)) +
  scale_y_continuous(breaks=(seq(0, 90, 10)), limits = c(0, 90)) +
  geom_point()+
  geom_smooth(method=lm)