14.2 Tweaking plots: changing the point size

Run the code below, Can you see what changed?

#dopt w/color changes
qplot(y = Sepal.Length,
      x = Species,    
        data = iris,
      color = Species,
      size = 3) +
  xlab("Iris Species") +  
  ylab ("Sepal Length (mm)")