I'm trying to create a scatter plot with second degree polynomial regression line using ggplot:stat_smooth. Here are the codes:
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))
I got the following error message:
Error: Mapping must be created by `aes()` or `aes_()`
Thanks a lot.

formula = y ~ poly(x, 2). Right now you are trying to pass your formula to themappingargument, the first argument ofstat_smooth, and so the error follows. - aosmith