I am using ggline()
function from ggpubr
to create a line plot with mean and SD.
I would like to increase the thickness of my shapes. in ggplot
it's usually done through geom_point(stroke=)
but it doesn't work with ggline
!
Does anyone has an idea how to do it?
ggline(iris, x = "Species", y = "Sepal.Length", add = "mean_se",
color = "Species",shape = 7,size = 1,point.size=3,palette = c("black", "blue","red"),width=10,geom_point(stroke=1)
)
I would like to have the squares thicker: