So I am trying to create a scatterplot with a regression line in ggplot2. This code returns a scatterplot but no regression line. I am not sure why as there are no error or warning messages. Any suggestions would be greatly appreciated.
##Call Packages##
library(ggplot2)
library(tidyverse)
options(stringsAsFactors = FALSE)
##Set Directories##
setwd("/Users/davidowoods/Desktop/RainManSR/Data/GPP")
IN_dir="/Users/davidowoods/Desktop/RainManSR/Data/GPP/RainMan_GPPAveragesbyTreatement_Woods.csv"
OUT_dir= "/Users/davidowoods/Desktop/RainManSR/Data/GPP/Figures"
##Import Data##
GPPAverages <- read.csv(IN_dir, header = TRUE)
##Plot##
DATE <- GPPAverages$Date #make data into object
S1AVERAGE <- GPPAverages$S1Average #make data into object
#(these seem redundant but it fixed an issue)
S1 <- ggplot(data = GPPAverages, aes(x = DATE, y = S1AVERAGE)) +
geom_point(color='blue') + #plot data points
geom_smooth(stat = 'smooth', #plot regression line
method = lm, formula = y~x, aes(DATE, S1AVERAGE))+
ggtitle('Average GPP for Treatment One') + #add title
xlab('Date') + #add x label
ylab('GPP') #add y label
print(S1) #print graph