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

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

$
0
0

[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)

f:id:abrahamcow:20190325061320p:plain

f:id:abrahamcow:20190325061332p:plain

あとは四角が大きいとき隣の四角とかぶってしまうのをなんとかしたい。

引き続きアドバイスを期待しております。


Viewing all articles
Browse latest Browse all 123

Trending Articles