在facet_wrap图上叠加比例总体趋势,显示R中的数据子集?

时间:2015-11-03 15:30:44

标签: r ggplot2 graphing facet-wrap

我从游戏中获得了一组玩家数据,并在为整个游戏创建图表之后将其分解为64个服务器中的每一个的某些数据。

我使用facet_wrap按服务器进行细分,而我真正希望能够做的是显示总人口的趋势,即整个游戏社区,同一组小平面包裹的直方图 有没有办法按比例放置,因为有些服务器只有1%的人口,这个facet_wrap中每个图表的总体人口中的趋势线我已经设置为服务器? / p>

作为我要叠加的图表示例,是一张包含我数据中第一组图表的相册;我想找到一种方法,基本上用facet_wrapped图表覆盖该图形,同时保持facet包裹图表的比例不变。

我使用的代码是:

print(
  ggplot(playerData, aes_string(x=i)) + geom_histogram(binwidth=5, origin=0.5) + 
    geom_histogram(binwidth = 1, color="white", fill="white", origin=0.5) + 
    scale_x_continuous(breaks=levelBreaks, name=pcName)
  ) #full

print(ggplot(playerData, aes_string(x=i)) + geom_histogram(binwidth=5, origin=0.5) + 
        geom_histogram(binwidth = 1, color="white", fill="white", origin=0.5) + 
        scale_x_continuous(breaks=levelBreaks, name=pcName) + facet_wrap(~realm)
      ) #faceted

enter image description here

0 个答案:

没有答案