15.1 C
London
Friday, July 5, 2024
HomeTidyverse in Rggplot2 in RHow to Adjust Line Thickness in ggplot2

How to Adjust Line Thickness in ggplot2

Related stories

Learn About Opening an Automobile Repair Shop in India

Starting a car repair shop is quite a good...

Unlocking the Power: Embracing the Benefits of Tax-Free Investing

  Unlocking the Power: Embracing the Benefits of Tax-Free Investing For...

Income Splitting in Canada for 2023

  Income Splitting in Canada for 2023 The federal government’s expanded...

Can I Deduct Home Office Expenses on my Tax Return 2023?

Can I Deduct Home Office Expenses on my Tax...

Canadian Tax – Personal Tax Deadline 2022

  Canadian Tax – Personal Tax Deadline 2022 Resources and Tools...

You can use the size argument to adjust the thickness of a line in ggplot2:

ggplot(df, aes(x = x, y = y)) +
  geom_line(size = 1.5)

The size is equal to 1 by default, but you can specify any decimal value you’d like to adjust the thickness.

This tutorial provides an example of how to adjust line thickness in practice.

Example: Adjust Line Thickness in ggplot2

The following code shows how to create a simple line plot using ggplot2:

#load ggplot2 visualization package
library(ggplot2)

#create data
df frame(x=c(1, 2, 3, 4, 5, 6, 7),
                 y=c(6, 8, 12, 14, 11, 10, 15))

#create line plot
ggplot(df, aes(x = x, y = y)) +
  geom_line()

By default, the line thickness is equal to 1 but we can increase it by using the size argument:

library(ggplot2)

#create line plot
ggplot(df, aes(x = x, y = y)) +
  geom_line(size = 2)

Adjust line thickness in ggplot2

The following code displays various line plots using different sizes for the line thickness:

library(ggplot2)
library(gridExtra)

#create data
df frame(x=c(1, 2, 3, 4, 5, 6, 7),
                 y=c(6, 8, 12, 14, 11, 10, 15))

#create four line plots
plot1 aes(x=x,y=y)) + geom_line() + ggtitle("Size = 1 (Default)")
plot2 aes(x=x,y=y)) + geom_line(size=1.5) + ggtitle("Size = 1.5")
plot3 aes(x=x,y=y)) + geom_line(size=2) + ggtitle("Size = 2")
plot4 aes(x=x,y=y)) + geom_line(size=3) + ggtitle("Size = 3")

#display all line plots stacked on top of each other
grid.arrange(plot1, plot2, plot3, plot4, ncol=1)

Change line width in ggplot2

The larger the value given to the size argument, the thicker the line will be in the plot.

Find more R tutorials here.

Subscribe

- Never miss a story with notifications

- Gain full access to our premium content

- Browse free from up to 5 devices at once

Latest stories