ggplot2 で始めるデータ可視化入門
Rick Scavetta
Founder, Scavetta Academy
| プロット種別 | 可能なGeom |
|---|---|
| 散布図 | points, jitter, abline, smooth, count |
| 棒グラフ | histogram, bar, col, errorbar |
| 折れ線グラフ | line, path |
ggplot(iris, aes(x = Sepal.Width)) +
geom_histogram()
`stat_bin()` using `bins = 30`.
Pick better value with `binwidth`.

ggplot(iris, aes(x = Sepal.Width)) +
geom_histogram()
# 既定のビン幅:
diff(range(iris$Sepal.Width))/30
[1] 0.08

ggplot(iris, aes(x = Sepal.Width)) +
geom_histogram(binwidth = 0.1)
データに合う意味のあるビン幅を設定。
棒の間に空白なし。

ggplot(iris, aes(x = Sepal.Width)) +
geom_histogram(binwidth = 0.1,
center = 0.05)
データに合う意味のあるビン幅を設定。
棒の間に空白なし。
X軸ラベルは棒の間に配置。

ggplot(iris, aes(x = Sepal.Width,
fill = Species)) +
geom_histogram(binwidth = .1,
center = 0.05)

ggplot(iris, aes(x = Sepal.Width,
fill = Species)) +
geom_histogram(binwidth = .1,
center = 0.05,
position = "stack")

ggplot(iris, aes(x = Sepal.Width,
fill = Species)) +
geom_histogram(binwidth = .1,
center = 0.05,
position = "dodge")

ggplot(iris, aes(x = Sepal.Width,
fill = Species)) +
geom_histogram(binwidth = .1,
center = 0.05,
position = "fill")

ggplot2 で始めるデータ可視化入門