Dear R-experts,

Here below my R code, as my X-axis is "year", I must be missing one or more 
steps! I am trying to get the regression line with the 95% confidence bands 
around the regression line. Any help would be appreciated.

Best,
S.


#############################################
library(ggplot2)
 
df=data.frame(year=factor(c("2012","2015","2018","2022")), score=c(495,493, 
495, 474))
 
ggplot(df, aes(x=year, y=score)) + geom_point( ) + geom_smooth(method="lm", 
formula = score ~ factor(year), data = df) + labs(title="Standard linear 
regression for France", y="PISA score in mathematics") + ylim(470, 500)
#############################################

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to