I am trying to add lines to a very simple plot but it does not work. Why does this happen. I want to unite the points via those lines.
month<-c("Jan","Feb")
EA<-c(52.986,52.086)
df<-data.frame(month,EA)
ggplot(data=df,aes(x=month, y=EA)) + geom_point()+geom_line()