如何在ggplot中更改直方图边界线厚度geom_histogram()

时间:2017-03-15 01:22:07

标签: r ggplot2

我有以下代码:

library(ggplot2)
data(mtcars)
ggplot(mtcars, aes(x=mpg)) + geom_histogram(bins=15, colour='red')

产生这个:

enter image description here

如上所述,如何更改直方图的封闭线的粗细?

2 个答案:

答案 0 :(得分:10)

只需使用geom_histogram(bins=15, colour='red',size=2) 参数

Double.format

答案 1 :(得分:5)

足够简单:)

ggplot(mtcars, aes(x=mpg)) + geom_histogram(bins=15, colour='red',size=3)