Adds a zero mark showing the location of the origin for the central data area.
A list of static, identity arguments passed into
the primary geom. For instance,
geom_point(size = 2, alpha = .7)
becomes
identity_args = list(size = 2, alpha = .7)
.
Also passes more foundational arguments such as stat and position, though
these have been tested less.
How long the origin mark should extended relative to the observations. Defaults to .05, 5% of the projection space.
Other ggtour proto functions:
append_fixed_y()
,
facet_wrap_tour()
,
ggtour()
,
proto_basis()
,
proto_default()
,
proto_density2d()
,
proto_density()
,
proto_hex()
,
proto_highlight()
,
proto_hline0()
,
proto_point()
,
proto_text()
library(spinifex)
dat <- scale_sd(penguins_na.rm[, 1:4])
clas <- penguins_na.rm$species
## 2D case:
gt_path <- save_history(dat, grand_tour(), max_bases = 5)
ggt <- ggtour(gt_path, dat, angle = .1) +
proto_point(list(color = clas, shape = clas)) +
proto_origin() ## `+` in center
# \donttest{
animate_plotly(ggt)
# }
## 1D case:
gt_path1d <- save_history(dat, grand_tour(d = 1), max_bases = 5)
ggt <- ggtour(gt_path1d, dat) +
proto_density(list(fill = clas, color = clas)) +
proto_origin1d() ## Adds line at 0.
# \donttest{
animate_plotly(ggt)
# }