SyntaxFix
Write A Post
Hire A Developer
Questions
Line width in ggplot2 can be changed with argument size= in geom_line().
ggplot2
size=
geom_line()
#sample data df<-data.frame(x=rnorm(100),y=rnorm(100)) ggplot(df,aes(x=x,y=y))+geom_line(size=2)