Frage

I would like to mix two scatterplots in just one, with different colours to each of them for comparasion.

codes used to obtains the two scatterplots:

 plot(allsize, allfreq)

 plot(allsize2, allfreq2)

Cheers!

War es hilfreich?

Lösung

plot(allsize, allfreq, col = "blue")
plot(allsize2, allfreq2, col = "red", add = TRUE)
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top