Here is my coding:
library(ggplot2)
Graph2 <- read.csv("~/ggplot2 project/Graph2.csv", sep="")
ggplot(Graph2, aes(x=Year, y=Total, fill=Season)) + geom_area()
This is my result:
But I am trying to get it to look more like:
Any idea where I went wrong here?