14

パッケージでグリッドを作成しましcowplotた(ADからのプロットにラベルを付けるため)。プロットは package で作成されますggplot2:

pfour<-ggplot(four, aes(x=Concentration, y=Percentage, fill=Phenotype)) + 
 geom_bar(stat='identity',color='black') +
 scale_fill_grey(start = .4, end = .9) + 
 theme_bw()+ylab("Distribution") + 
 xlab("Contentration [mg/ml]") + 
 ggtitle("96 hpf") +
 theme(legend.title = element_text(colour="black", size=10, face="bold")) +
 theme(legend.background = element_rect(fill="white",
                                        size=0.5, linetype="solid", 
                                        colour ="black")) +
 scale_x_discrete(limits=c('uninjected','control','0.002', '0.02', '0.2'),
                  labels=c('uninjected\n(n=251)',
                           'control\n(n=248)', 
                           '0.002\n(n=205)', 
                           '0.02\n(n=222)', 
                           '0.2\n(n=203)'))

データは次のようになります (パーセンテージはわずかに異なりますが、原則は同じである 4 つの異なるテーブル)。

Concentration,Percentage,Phenotype
uninjected,0.996015936,0
uninjected,0,1
uninjected,0.003984064,2
uninjected,0,3
uninjected,0,4
control,0.995967742,0
control,0.004032258,1
control,0,2
control,0,3
control,0,4
0.002,0.985365854,0
0.002,0.004878049,1
0.002,0.004878049,2
0.002,0,3
0.002,0.004878049,4
0.02,0.981981982,0
0.02,0.004504505,1
0.02,0.004504505,2
0.02,0.004504505,3
0.02,0.004504505,4
0.2,0.985221675,0
0.2,0.004926108,1
0.2,0,2

次のようになります。

プロット

そのためのコードは次のとおりです。

plot_grid(ponezoom, ptwozoom,pthreezoom,pfourzoom, align='h', labels=c('A', 'B','C','D'))

今、4回すべてのプロットスペースを盗むため、4つのプロットすべてに対して1つの共有凡例を取得できるかどうか疑問に思っていました. 助けていただければ幸いです。

4

2 に答える 2

16

これを行う方法を示すビネットがあります。

アプローチは、凡例を非表示にしてプロットを作成することtheme(legend.position="none")です。次に、これらのオブジェクトの 1 つから凡例グロブを抽出します。

grobs <- ggplotGrob(pfour)$grobs
legend <- grobs[[which(sapply(grobs, function(x) x$name) == "guide-box")]]

次に、凡例を別の「プロット」としてプロットします。凡例を右側に表示するには、次のようにします。

# build grid without legends
pgrid <- plot_grid(pone, ptwo, pthree, pfour, ncol = 2)
# add legend
p <- plot_grid(pgrid, legend, ncol = 2, rel_widths = c(1, .1))
于 2016-05-20T11:33:33.263 に答える