etc5523-2020 / exercise2C

For students to submit their reproducible example in the issue
0 stars 0 forks source link

Plotting More Dimensions #15

Open alangewerc opened 4 years ago

alangewerc commented 4 years ago

Hi, I am working to with the iris dataset. I am trying to make my to add a new dimension to my plot so I can visualise all the columns: "Sepal.Length" "Sepal.Width" "Petal.Length" "Petal.Width" "Species" .

This is the best I was able to do so far:

library('ggplot2')
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) + geom_point(aes(shape = Species, colour = Species))

Created on 2020-08-13 by the reprex package (v0.3.0)

Any ideas? Thank you.