theme_minimal() Function – Change ggplot2 Theme in R (4 Examples)
On this page you’ll learn how to apply the theme_minimal function to modify the design and layout of a ggplot2 plot in the R programming language.
Setting up the Examples
data(iris) # Load example data frame head(iris) # Display head of iris data frame # Sepal.Length Sepal.Width Petal.Length Petal.Width Species # 1 5.1 3.5 1.4 0.2 setosa # 2 4.9 3.0 1.4 0.2 setosa # 3 4.7 3.2 1.3 0.2 setosa # 4 4.6 3.1 1.5 0.2 setosa # 5 5.0 3.6 1.4 0.2 setosa # 6 5.4 3.9 1.7 0.4 setosa |
data(iris) # Load example data frame head(iris) # Display head of iris data frame # Sepal.Length Sepal.Width Petal.Length Petal.Width Species # 1 5.1 3.5 1.4 0.2 setosa # 2 4.9 3.0 1.4 0.2 setosa # 3 4.7 3.2 1.3 0.2 setosa # 4 4.6 3.1 1.5 0.2 setosa # 5 5.0 3.6 1.4 0.2 setosa # 6 5.4 3.9 1.7 0.4 setosa
install.packages("ggplot2") # Install & load ggplot2 package library("ggplot2") |
install.packages("ggplot2") # Install & load ggplot2 package library("ggplot2")
Example 1: Create ggplot2 Density Plot Using theme_minimal() Function
ggplot(iris, # Apply theme_minimal Function aes(x = Sepal.Length, fill = Species)) + geom_density(alpha = 0.5) + theme_minimal() |
ggplot(iris, # Apply theme_minimal Function aes(x = Sepal.Length, fill = Species)) + geom_density(alpha = 0.5) + theme_minimal()
Example 2: Create ggplot2 Boxplot Using theme_minimal() Function
ggplot(iris, # Apply theme_minimal Function aes(x = Sepal.Length, fill = Species)) + geom_boxplot() + theme_minimal() |
ggplot(iris, # Apply theme_minimal Function aes(x = Sepal.Length, fill = Species)) + geom_boxplot() + theme_minimal()
Example 3: Create ggplot2 Scatterplot Using theme_minimal() Function
ggplot(iris, # Apply theme_minimal Function aes(x = Sepal.Length, y = Sepal.Width, col = Species)) + geom_point() + theme_minimal() |
ggplot(iris, # Apply theme_minimal Function aes(x = Sepal.Length, y = Sepal.Width, col = Species)) + geom_point() + theme_minimal()
Example 4: Create ggplot2 Barchart Using theme_minimal() Function
ggplot(aggregate(Sepal.Width ~ Species, iris, mean), # Apply theme_minimal Function aes(x = Species, y = Sepal.Width, fill = Species)) + geom_bar(stat = "identity") + theme_minimal() |
ggplot(aggregate(Sepal.Width ~ Species, iris, mean), # Apply theme_minimal Function aes(x = Species, y = Sepal.Width, fill = Species)) + geom_bar(stat = "identity") + theme_minimal()