ggplot2 資料視覺化入門
Rick Scavetta
Founder, Scavetta Academy
ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width)) +
geom_point(color = "red")
| Type | Property |
|---|---|
| Color | "red" |
在 geom_*() 中設定屬性。
將 color 屬性設為 "red"。

ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width)) +
geom_point(size = 10)
| Type | Property |
|---|---|
| Size | 4 |

ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width)) +
geom_point(shape = 4)
| Type | Property |
|---|---|
| Shape | 4 |

ggplot2 資料視覺化入門