Potential geometries according to the data
potential_geoms(data, mapping, auto = FALSE)
| data | A |
|---|---|
| mapping | List of aesthetic mappings to use with data. |
| auto | Return only one geometry. |
A character vector
library(ggplot2) # One continuous variable potential_geoms( data = iris, mapping = aes(x = Sepal.Length) )#> [1] "histogram" "boxplot" "violin" "density"# Automatic pick a geom potential_geoms( data = iris, mapping = aes(x = Sepal.Length), auto = TRUE )#> [1] "histogram"#> [1] "bar"# Two continuous variables potential_geoms( data = iris, mapping = aes(x = Sepal.Length, y = Sepal.Width) )#> [1] "point" "line" "step" "area" "tile"