增加geom_smooth的线条粗细

时间:2012-10-05 12:52:10

标签: r ggplot2

我有这个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绘制的线条的粗细?

1 个答案:

答案 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是标准的。