我有以下代码:
library(ggplot2)
data(mtcars)
ggplot(mtcars, aes(x=mpg)) + geom_histogram(bins=15, colour='red')
产生这个:
如上所述,如何更改直方图的封闭线的粗细?
答案 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)