gpt4 book ai didi

r - 尽管+ geom_line() 图表中没有线条

转载 作者:行者123 更新时间:2023-12-01 21:44:02 25 4
gpt4 key购买 nike

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

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()

enter image description here

最佳答案

此处的根本问题与 this 重复。堆栈帖子。

这是一个可重现的示例,显示了 @SN248 在代码中添加组的含义

ggplot(iris, aes(x = factor(Sepal.Length), y = Sepal.Width)) + 
geom_line(aes(group=1)) + geom_point() + theme_bw()

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com