Quantcast
Channel: グラフ - 廿TT
Viewing all articles
Browse latest Browse all 123

[ggplot2]ヒストグラムを箱ひげ図風に並べるプロット(3)

$
0
0

追記:パッケージ化したのでこちらを参照してください→ggplot2でヒストグラムを箱ひげ図風に並べてプロットするパッケージggbrickを書いた - 廿TT


進捗です。

こんな感じです。

source("https://gist.githubusercontent.com/abikoushi/c7220524d44663e2694a967584207eb3/raw/76de298dac5d1353804a6213e68dbe61af599619/geom_grid.R")

ggplot(data = iris)+
  geom_grid(aes(y = Sepal.Length, x=Species), binwidth =0.1)

f:id:abrahamcow:20190325130727p:plain

ggplot(data = mpg,aes(y = cty, x=factor(year), fill=factor(cyl)))+
  geom_grid(binwidth =1)

f:id:abrahamcow:20190325130755p:plain

ggplot(data = diamonds, aes(x = color, y=carat, colour=cut))+
  geom_grid(binwidth=0.2)+
  coord_flip()

f:id:abrahamcow:20190325130821p:plain

とりあえずやりたいことはできそう。

たぶんまだ不具合とかあると思うので、落ち着いたらパッケージにしてギットハブにあげようと思います。


Viewing all articles
Browse latest Browse all 123

Trending Articles