Which coordinate system does a plot use?
Value
A character string that corresponds to the suffix of a ggplot2
coord_
function, e.g. "cartesian"
.
See also
Other functions for checking coordinate systems:
uses_coordinate_system()
Examples
require(ggplot2)
p <- ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_point(mapping = aes(color = class)) +
geom_smooth() +
coord_polar()
get_coordinate_system(p)
#> [1] "polar"