19

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

4

1 回答 1

29

size你想做的事:

+ geom_smooth(aes(x=pct.on.OAC.cont, y=Number.of.Practices, colour=Age.Group), 
               se=F, size=10)

或者,您可以更改sizelwd,但它是使用的标准size

于 2012-10-05T13:03:53.770 回答