stat_chull {ggpubr} | R Documentation |
Plot convex hull of a set of points
Description
Plot convex hull of a set of points.
Usage
stat_chull(
mapping = NULL,
data = NULL,
geom = "path",
position = "identity",
na.rm = 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, either as a
|
position |
Position adjustment, either as a string naming the adjustment
(e.g. |
na.rm |
If |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
... |
Other arguments passed on to |
See Also
Examples
# Load data
data("mtcars")
df <- mtcars
df$cyl <- as.factor(df$cyl)
# scatter plot with convex hull
ggscatter(df, x = "wt", y = "mpg", color = "cyl")+
stat_chull(aes(color = cyl))
ggscatter(df, x = "wt", y = "mpg", color = "cyl")+
stat_chull(aes(color = cyl, fill = cyl), alpha = 0.1, geom = "polygon")