我已经阅读了文档,我认为我的代码应该正确,但是输出中的各点之间仍然没有界限。怎么了?

x'轴是离散的,y'轴是连续的。

我的密码

 point.sqrmPrice  <- ggplot(overview.df, aes(x = areaSize, y = sqrmPrice)) +
      geom_line() +
      geom_point() +
      scale_y_continuous(breaks = c(seq(min(overview.df$sqrmPrice), max(overview.df$sqrmPrice), by = 10000) )) +
      theme_bw()

r - 尽管有&#43; geom_line(),但图表中无线-LMLPHP

最佳答案

您没有得到一行,因为areaSize是一个因素。转换为数字

overview.df$areaSize <- as.numeric(as.character(overview.df$areaSize))

然后绘制情节。

关于r - 尽管有+ geom_line(),但图表中无线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31818264/

10-12 04:49