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

{ggplot2} 集計済みデータのヴァイオリンプロット

$
0
0

データがこのようにすでに集計された状態で与えられたときに、複数カテゴリ間で分布を比較したい。

  value A B
111322223331

ヴァイオリンプロットが使えることがわかった。

library(cowplot)library(tidyr)
data <-data.frame(value =1:3,
                   A =1:3,
                   B =3:1)
data2 <-data %>% gather(category,count,-value)
ggplot(data2, aes(x =category, y = value, violinwidth=count/max(count)))+ 
  stat_identity(geom="violin")

f:id:abrahamcow:20170508213215p:plain

geom_violin を使っても描画されるんだけど、なんか警告がでる。


Viewing all articles
Browse latest Browse all 123

Trending Articles