geom_point: Geom: point.

Description Usage Arguments Examples

Description

Geom: point.

Usage

1
  geom_point(aesthetics = list(), na.rm = FALSE)

Arguments

na.rm

If TRUE silently remove missing values, otherwise warn that they are being removed.

Examples

1
2
3
4
5
6
df <- data.frame(x = seq(0,1, 0.1), y = seq(0, 1, 0.1))
geom_plot(geom_point(), df)
geom_plot(geom_point(list(colour = "red")), df)
geom_plot(geom_point(list(size = 3, shape = 15)), df)

geom_plot(geom_point(list(x = 1:10, y = 10:1)))

hadley/layers documentation built on May 17, 2019, 10:42 a.m.