stat_cone {gggda} | R Documentation |
Conical hull
Description
Restrict planar data to the points that lie on its conical hull.
Usage
stat_cone(
mapping = NULL,
data = NULL,
geom = "path",
position = "identity",
origin = FALSE,
show.legend = NA,
inherit.aes = TRUE,
...
)
Arguments
mapping |
Set of aesthetic mappings created by |
data |
The data to be displayed in this layer. There are three options: If A A |
geom |
The geometric object to use to display the data for this layer.
When using a
|
position |
A position adjustment to use on the data for this layer. This
can be used in various ways, including to prevent overplotting and
improving the display. The
|
origin |
Logical; whether to include the origin with the transformed
data. Defaults to |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
... |
Additional arguments passed to |
Value
Multidimensional position aesthetics
This statistical transformation is compatible with the convenience function
aes_coord()
.
Some transformations (e.g. stat_center()
) commute with projection to the
lower (1 or 2)-dimensional biplot space. If they detect aesthetics of the
form ..coord[0-9]+
, then ..coord1
and ..coord2
are converted to x
and
y
while any remaining are ignored.
Other transformations (e.g. stat_spantree()
) yield different results in a
lower-dimensional biplot when they are computed before versus after
projection. If the stat layer detects these aesthetics, then the
transformation is performed before projection, and the results in the first
two dimensions are returned as x
and y
.
A small number of transformations (stat_rule()
) are incompatible with
these aesthetics but will accept aes_coord()
without warning.
See Also
Other stat layers:
stat_bagplot()
,
stat_center()
,
stat_chull()
,
stat_depth()
,
stat_rule()
,
stat_scale()
,
stat_spantree()
Examples
mtcars$name <- rownames(mtcars)
ggplot(mtcars, aes(wt, mpg, label = name)) +
geom_text(size = 3) +
stat_cone()
ggplot(mtcars, aes(hp, mpg, label = name)) +
geom_text(size = 3) +
stat_cone(origin = TRUE, linetype = "dotted")