r-我在ggplot2中的geom_line()发生了什么



我不是R方面的专家,但我已经使用ggplot2很多次了,从来没有遇到过任何问题。不过,这一次我无法在图表中绘制线条,也不知道为什么(不过应该很简单)。

例如:

   def.percent    period
1    5.0657339 1984-1985
2    3.9164528 1985-1986
3    -1.756613 1986-1987
4    2.8184863 1987-1988
5    -2.606311 1988-1989

我必须编码:

ggplot(plot.tab, aes(x=period, y=def.percent)) + geom_line() + geom_point() + ggtitle("Deforestation rates within Properties")

但是当我运行它时,它只是画出没有线的点。它也给了我这样的信息:

geom_path: Each group consist of only one observation. Do you need to adjust the group aesthetic?

这并不是一个真正的错误,但我不知道如何绘制线条。。。有什么想法吗?

您的x轴(period)是一个因子而不是数字,因此它不会连接它们。您可以通过在美学中设置group = 1来解决这个问题,这告诉ggplot2将它们全部组合到一行中:

ggplot(plot.tab, aes(x = period, y = def.percent, group = 1)) +
    geom_line() +
    geom_point() +
    ggtitle("Deforestation rates within Properties")

相关内容

  • 没有找到相关文章

最新更新