geom_area()
geom_bar()
geom_line()
geom_point()
geom_polygon()
geom_histogram()
geom_rect()
geom_tile()
geom_raster()
geom_text()
sf
tbl_graph
&
geom_sf()
stat_...()
plot()
ggplot(mpg, aes(x = displ, y = hwy)) + geom_point()
It’s allowable to omit the x = and y = arguments of aes. In other words, aes(displ, hwy) would be valid for this plot.
x =
y =
aes
aes(displ, hwy)