我有这个ggplot:
ggplot(dt.m, aes(x=pct.on.OAC.cont,y=Number.of.Practices, fill=Age.Group)) +
geom_bar(stat="identity",position=position_dodge()) +
geom_smooth(aes(x=pct.on.OAC.cont,y=Number.of.Practices, colour=Age.Group), se=F)
如何增加geom_smooth绘制的线条的粗细?
答案 0 :(得分:15)
size
参数是否符合您的要求:
+ geom_smooth(aes(x=pct.on.OAC.cont, y=Number.of.Practices, colour=Age.Group),
se=F, size=10)
或者,您可以将size
更改为lwd
,但使用size
是标准的。