Description Usage Arguments Examples
A geom that writes points but is called punto
1 |
... |
all the geom_point arguments |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # without the function
library(ggplot2)
ggplot(data = cars) +
aes(x = speed, y = dist) +
geom_point()
# the function
a_geom_punto
a_geom_punto
# using the function
ggplot(data = cars) +
aes(x = speed, y = dist) +
a_geom_punto()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.