gpt4 book ai didi

r - 使用 ggplot stat_smooth 绘制多项式回归线

转载 作者:行者123 更新时间:2023-12-01 13:41:13 28 4
gpt4 key购买 nike

我正在尝试使用 ggplot:stat_smooth 创建一个带有二次多项式回归线的散点图。
以下是代码:

df.car_spec_data <- read.csv(url("http://www.sharpsightlabs.com/
wp- content/uploads/2015/01/auto-snout_car-specifications_COMBINED.txt"))

df.car_spec_data$year <- as.character(df.car_spec_data$year)

df.car_spec_data %>% group_by(year) %>%
summarise(maxspeed=max(top_speed_mph,
na.rm=T)) %>% ggplot(aes(x=year, y=maxspeed,
group=1))+geom_point(color='red', alpha=0.3,
size=3)+stat_smooth(method='lm', y~poly(x,2))

我收到以下错误消息:
Error: Mapping must be created by `aes()` or `aes_()`

非常感谢。

最佳答案

这有效(对于 mtcars 数据集):

df.car_spec_data <- mtcars
df.car_spec_data %>% group_by(cyl) %>%
summarise(maxmpg=max(mpg, na.rm=T)) %>%
ggplot(aes(x=cyl, y=maxmpg, group=1)) +
geom_point(color='red', alpha=0.3,size=3)+
stat_smooth(method='lm', formula = y~poly(x,2))

enter image description here

关于r - 使用 ggplot stat_smooth 绘制多项式回归线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40003508/

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