A helper function used by ggpubr functions to execute any geom_* functions in ggplot2. Useful only when you want to call a geom_* function without worrying about the arguments to put in aes(). Basic users of ggpubr don't need this function.
Examples
if (FALSE) { # \dontrun{
ggplot() +
geom_exec(geom_point,
data = mtcars,
x = "mpg", y = "wt", size = "cyl", color = "cyl"
)
} # }