View source: R/2_ggproto_visualize.r
proto_density2d | R Documentation |
Adds geom_density_2d()
of the projected data.
proto_density2d(
aes_args = list(),
identity_args = list(bins = 4),
row_index = NULL
)
aes_args |
A list of arguments to call inside of aes().
aesthetic mapping of the primary geom. For example,
|
identity_args |
A list of static, identity arguments passed into
the primary geom. For instance,
|
row_index |
A numeric or logical index of rows to subset to. Defaults to NULL, all observations. |
Other ggtour proto functions:
append_fixed_y()
,
facet_wrap_tour()
,
ggtour()
,
proto_basis()
,
proto_default()
,
proto_density()
,
proto_hex()
,
proto_highlight()
,
proto_hline0()
,
proto_origin()
,
proto_point()
,
proto_text()
library(spinifex)
dat <- scale_sd(penguins_na.rm[, 1:4])
clas <- penguins_na.rm$species
gt_path <- save_history(dat, grand_tour(), max = 3)
## geom_density_2d args can be passed in identity_args (bins, binwidth, breaks)
ggt <- ggtour(gt_path, dat, angle = .3) +
proto_density2d(aes_args = list(color = clas, fill = clas),
identity_args = list(binwidth = .3)) +
proto_point(aes_args = list(color = clas, shape = clas),
identity_args = list(alpha = .2)) +
proto_basis()
animate_plotly(ggt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.