Hi!
How do I add an exponential regression line in the same image as the scatter plot.
To summerize I want these two images to be in one.
ggplot(data=lampor, mapping=aes(x=styrka, y=tid))+geom_point()+
theme_minimal()
ggplot(data=lampor, mapping=aes(x=styrka, y=my))+geom_line()+
theme_minimal()
Sorry about the messy code and lingo, first time using R.
Thanks