14.5 Basic boxplot lables

  • now use + xlab() and + ylab()
qplot(y = Sepal.Length,
      x = Species,    
        data = iris,
      geom = "boxplot",
      color = Species) +
  xlab("Iris Species") +  
  ylab ("Sepal Length (mm)")