次のRコードを使用して、1つのプロットに複数のプロットを生成しました。私は全体図のため1にx軸ラベル、y軸ラベル、およびSpecies
伝説をマージすることができますどのように複数のプロットのx軸と凡例のマージ
library(ggplot2)
Adata=nt.df[(nt.df$Species=='Human' | nt.df$Species=='Arabidopsis')& nt.df$Nucleotide=='A',]
Cdata=nt.df[(nt.df$Species=='Human' | nt.df$Species=='Arabidopsis')& nt.df$Nucleotide=='C',]
Gdata=nt.df[(nt.df$Species=='Human' | nt.df$Species=='Arabidopsis')& nt.df$Nucleotide=='G',]
Udata=nt.df[(nt.df$Species=='Human' | nt.df$Species=='Arabidopsis')& nt.df$Nucleotide=='U',]
# Grouped
Aplot <- ggplot(data, aes(fill=Species, y=Percent, x=Position)) +
geom_bar(position="dodge", stat="identity")
Cplot <- ggplot(data, aes(fill=Species, y=Percent, x=Position)) +
geom_bar(position="dodge", stat="identity")
Gplot <- ggplot(data, aes(fill=Species, y=Percent, x=Position)) +
geom_bar(position="dodge", stat="identity")
Uplot <- ggplot(data, aes(fill=Species, y=Percent, x=Position)) +
geom_bar(position="dodge", stat="identity")
grid.arrange(Aplot,Cplot,Gplot,Uplot,ncol=1)
?
さらに、図形全体または各図形のラベルに位置目盛り記号を付けるのは理にかなっていますか?
この[R Bloggers Post](https://www.r-bloggers.com/another-rule-of-three-this- 1つの統計情報/)には、あなたが望むものの例があります。それは投稿のポイントではありませんが、あなたはこれを得る方法を見るためにコードに従うことができるはずです。 – G5W
データを単一のデータフレームにマージし、軸チックをマージする 'facet_wrap()'を使用することを検討してください。 – liborm