geom_bin2d(mapping = NULL, data = NULL, stat = "bin2d",
position = "identity", na.rm = FALSE, show.legend = NA,
inherit.aes = TRUE, ...)stat_bin_2d(mapping = NULL, data = NULL, geom = "tile",
position = "identity", bins = 30, binwidth = NULL, drop = TRUE,
na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, ...)
FALSE
(the default), removes missing values with
a warning. If TRUE
silently removes missing values.NA
, the default, includes if any aesthetics are mapped.
FALSE
never includes, and TRUE
always includes.FALSE
, overrides the default aesthetics,
rather than combining with them. This is most useful for helper functions
that define both data and aesthetics and shouldn't inherit behaviour from
the default plot specification, e.g.
layer
. There are
three types of arguments you can use here:
color = "red"
orsize = 3
.geom_bin2d
and stat_bin2d
.bins
if both set.TRUE
removes all cells with 0 counts.# You can control the size of the bins by specifying the number of # bins in each direction: d + geom_bin2d(bins = 10) d + geom_bin2d(bins = 30)
# Or by specifying the width of the bins d + geom_bin2d(binwidth = c(0.1, 0.1))
stat_binhex
for hexagonal binning