# NOT RUN {
d <- ggplot(diamonds, aes(carat, price))
d + geom_hex()
# }
# NOT RUN {
# You can control the size of the bins by specifying the number of
# bins in each direction:
d + geom_hex(bins = 10)
d + geom_hex(bins = 30)
# Or by specifying the width of the bins
d + geom_hex(binwidth = c(1, 1000))
d + geom_hex(binwidth = c(.1, 500))
# }
Run the code above in your browser using DataLab