Ggplot方面像图

时间:2016-05-26 22:33:42

标签: r ggplot2

您可以下载我的数据集here

我试图制作一个像这个方面的图形而不是两个图形,我想把它画成一个。

enter image description here

但我也希望它看起来像小平面。我的意思是当我在一个图中绘制它时,它看起来像这样。 enter image description here

我不希望这两个并排。我希望他们在一个酒吧。像这个! :-) enter image description here

我的代码:

bb <- ggplot(biveri3, aes(x = bio8, fill = as.factor(varyok)))
bb + geom_histogram(data = biveri3, position = "dodge")

1 个答案:

答案 0 :(得分:0)

感谢lukeA,我做了我想做的事。

bb + geom_histogram(data = biveri3,alpha = .5,position =&#34; identity&#34;)?