[ggplot2]ヒストグラムを箱ひげ図風に並べるプロット - 廿TTをちょっと修正しました。
こんな感じです。
source("https://gist.githubusercontent.com/abikoushi/d7e443774155de3934b754cf1a66625a/raw/74d451393ec9e1a6537122d2c39d5ee2d7559965/geom_grid.R") ggplot(data = iris)+ geom_grid(aes(y = Sepal.Length, x=Species), bins=20) ggplot(data = mpg,aes(y = cty, x=factor(year), fill=factor(cyl)))+ geom_grid(binwidth=1)
あとは四角が大きいとき隣の四角とかぶってしまうのをなんとかしたい。
引き続きアドバイスを期待しております。