I know there are heaps of other posts asking the same question but I didn't understand any of the answers because I am 100% new to all of this and don't even understand ggplot yet. I need to plot two graphs onto one without using ggplot, but I'm not even sure if that's possible. This is my first graph:
plot(AustraliaData$year4, AustraliaData$exp_mean, type = "l", col = "purple", xlab = "Year", ylab = "Australian Average", main = "Ambient Particulate Matter Pollution")
And this is my second graph:
plot(AfghanistanData$year4, AfghanistanData$exp_mean, type = "l", col = "purple", xlab = "Year", ylab = "Afghanistan Average", main = "Ambient Particulate Matter Pollution")
Firstly, do you think that using ggplot will make these graphs look nicer, and will it then be easier to graph them together? I want to make a comparison between the two countries.
If ggplot is easier, where can I find a good tutorial on how to do it? I have only been doing this stuff for a few weeks because my university course requires it as a prerequisite in STEM subjects.
Thanks!
Here is a linkto the [first bunch of data] [1]
a link to [the second bunch of data] [2]
and to [the first graph] [3]
and also [the second graph] [4]
[1]: https://i.stack.imgur.com/K22SX.png
[2]: https://i.stack.imgur.com/QyXxV.png
[3]: https://i.stack.imgur.com/xUN0a.png
[4]: https://i.stack.imgur.com/mgwkl.png