使用 stat_bin ggplot 的颜色直方图条
Posted
技术标签:
【中文标题】使用 stat_bin ggplot 的颜色直方图条【英文标题】:Color histogram bars using stat_bin ggplot 【发布时间】:2021-08-28 05:52:40 【问题描述】:我想更改直方图条的填充和颜色,但是当前的方法不起作用, 我正在使用以下填充和颜色:
ggplot(dfAllCounts, aes(x=months)) +
stat_bin(binwidth=6, geom="text", aes(label=after_stat(count)), vjust=-1, fill="#d2aa47", color = '#163B8B')
但是,实际的情节没有正确显示:
【问题讨论】:
【参考方案1】:完成! 修复了这个:
br <- seq(0, 178, 10)
ggplot(dfAllCounts, aes(x=months)) +
stat_bin(binwidth=6, fill="#d2aa47", color = '#163B8B', size = .8, alpha = 0.3) +
stat_bin(binwidth=6, geom="text", aes(label=..count..), vjust=-1) +
ylim(c(0, 175)) +
scale_x_continuous(breaks = br)```
【讨论】:
以上是关于使用 stat_bin ggplot 的颜色直方图条的主要内容,如果未能解决你的问题,请参考以下文章
计算 ggplot stat_summary2d 和 stat_bin2d 的表面积
R语言使用ggplot2包的快速可视化函数qplot绘制分组直方图(分组颜色设置)实战
R语言使用ggplot2包使用geom_density()函数绘制分组密度图(添加直方图分组颜色配置)实战(density plot)