I need to plot a time series graph but the data that I'm using is proving to be quite challenging.
Ideally, I'd like a graph that looks something like this: 
But mine looks like this:
I have tried a series of different things but none of them have worked.
The dataset can be found here and I'll attach a picture of what the dataset itself looks like:
some code I have tried includes
ggplot( aes(x=date, y=northEast)) + geom_area(fill="#69b3a2", alpha=0.5) + geom_line(color="#69b3a2") + ylab("test") + theme_ipsum() ggplot(covidData2) + geom_line( mapping = aes(x = weekBeginning, y=northEast, group=northEast) ) Any help would be greatly appreciated!


structure(list(weekBeginning = c(NA, "Period", "01/09/2020 - 07/09/2020",continues with datesnorthEast = c("North East", "Number of cases", "953", "1052", "2344", "3532", "5215", "5562",continues with numbers and It continues with different regions