14.3 Boxplot with qplot

14.3.1 Basic boxplot with qplot

  • note use of arguement “geom = …”
qplot(y = Sepal.Length,
      x = Species,    
        data = iris,
      geom = "boxplot")