π¦Boxplot by R base graph
Boxplot


Create a basic boxplot

Change labels and colors of the boxplot:

Source:
Last updated
# view the data
data(iris)
# Create a basic boxplot
boxplot(iris$Sepal.Length~iris$Species)boxplot(iris$Sepal.Length~iris$Species, xlab = "Species", ylab = "Sepal Length",
main = "Sepal Length of Different Species", col = "darkorchid3")