调整hexbin图例中断

时间:2014-12-30 13:09:14

标签: r plot r-grid

在这个hexbin图的示例中,右侧的图例有10个级别/类/中断。有谁知道如何改变关卡数量?假设我想将其更改为5或其他。

  library(hexbin)
  x=rnorm(1000, mean = 50, sd = 1)
  y=rnorm(1000, mean = 30, sd = 0.5)
  df <- data.frame(x,y)
  #plot(df)

  hb <- hexbin(x=df$x, df$y)
  #hb <- hexbin(x=df$x, df$y,xbins=30)
  #plot(hb)
  gplot.hexbin(hb)

hexbin

1 个答案:

答案 0 :(得分:1)

喜欢这个吗?

gplot.hexbin(hb,colorcut=5)

这里使用ggplot大致相同。

library(ggplot2)
ggplot(df, aes(x,y))+
  geom_hex(aes(fill=cut(..value..,breaks=pretty(..value..,n=5))),bins=15)+
  scale_fill_manual("Count",values=grey((5:0)/6))