更改stat_binhex中的计数范围

时间:2013-05-23 15:37:45

标签: r ggplot2 data-visualization

我想扩展stat_binhex中的计数范围。网站上列出的玩具示例http://docs.ggplot2.org/0.9.3.1/stat_binhex.html在图例字段中有一个计数范围,我想扩展它。换句话说,我想让计数范围更精细。

1 个答案:

答案 0 :(得分:3)

至于垃圾箱填充用于更改颜色,您可以使用scale_fill_continuous()在您需要的位置设置breaks=

ggplot(diamonds, aes(carat, price)) + stat_binhex() + 
         scale_fill_continuous(breaks=seq(0,6000,500))

enter image description here