一张图表中有多个水平条形图

时间:2019-07-16 09:15:12

标签: r ggplot2

我想有两个包含多个水平条形图的图表,每个图表显示两个变量之一的平均值:恐惧和期望。条形图应按假人分组。

我创建了单个条形图,其中每个假人都将恐惧和期望的平均值分组,但是我不知道如何正确地将它们组合起来。

RUN echo \
   'deb http://mirror.cse.iitk.ac.in/debian/ stretch main\n \
    deb http://security.debian.org/debian-security stretch/updates main\n \
    deb http://mirror.cse.iitk.ac.in/debian/ stretch-updates main\n' \
    > /etc/apt/sources.list

我想基本上让它看起来像这样: https://ibb.co/3fz0GQ4

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

要查看显示的图,您需要重塑一些数据:

interleaveVertices([3,3,2], [data.positions, data.normals, data.uv]);

然后,您可以轻松进入情节:

library(tidyverse)

x2 <- x%>%
  gather(fear, expectation, key = "group", value = "value")%>%
  gather(sex, migration, handicap, east, key = "dummies", value = "dum_value")%>%
  group_by(group, dummies, dum_value)%>%
  summarize(prop = mean(value))