我的目的是绘制一个金字塔图,如所附的图。
我找到了几个使用ggplot的示例,但是我仍在为数据(或要绘制的数据)采用示例而苦苦挣扎。
structure(list(serial = c(40051004, 16160610, 16090310), DMSex = structure(c(2,
2, 2), label = "Gender from household grid", labels = c(`No answer/refused` = -9,
`Don't know` = -8, `Interview not achieved` = -7, `Schedule not applicable` = -2,
`Item not applicable` = -1, Male = 1, Female = 2), class = "haven_labelled"),
dtotac = structure(c(-9, -9, -8), label = "DV: Total actual hours in all jobs and businesses", labels = c(`No answer/refused` = -9,
`Don't know` = -8, `Interview not achieved` = -7, `Item not applicable` = -1
), class = "haven_labelled")), row.names = c(NA, -3L), class = c("tbl_df",
"tbl", "data.frame"))
如何转换数据并绘制背对背图?还是不定义子集就如何定义Gender和dtotac变量?
我正在使用的代码
library(ggplot2)
library(plyr)
library(gridExtra)
SerialGenderWorkN <- data.frame(Type = sample(c('Male', 'Female', 'Female'),
11421, replace=TRUE),
dtotac = sample (0:60, 11421, replace=TRUE))
WrkFactor <- ordered(cut(SerialGenderWork$dtotac,
breaks = c(0, seq(20, 60, 10)),
include.lowest = TRUE))
SerialGenderWorkN$dtotac <- WrkFactor
ggplotWrk <- ggplot(data =SerialGenderWorkN, aes(x=dtotac))
ggplotWrk.female <- ggplotWrk +
geom_bar(data=subset(SerialGenderWorkN, Type == 'Female'),
aes( y = ..count../sum(..count..), fill = dtotac)) +
scale_y_continuous('', labels = scales::percent) +
theme(legend.position = 'none',
axis.title.y = element_blank(),
plot.title = element_text(size = 11.5),
plot.margin=unit(c(0.1,0.2,0.1,-.1),"cm"),
axis.ticks.y = element_blank(),
axis.text.y = theme_bw()$axis.text.y) +
ggtitle("Female") +
theme(plot.title = element_text(hjust = 0.5)) +
coord_flip()
ggplotWrk.male <- ggplotWrk +
geom_bar(data=subset(SerialGenderWorkN,Type == 'Male'),
aes( y = ..count../sum(..count..), fill = dtotac)) +
scale_y_continuous('', labels = scales::percent,
trans = 'reverse') +
theme(legend.position = 'none',
axis.text.y = element_blank(),
axis.ticks.y = element_blank(),
plot.title = element_text(size = 11.5),
plot.margin=unit(c(0.1,0.2,0.1,-.1),"cm")) +
ggtitle("Male") +
theme(plot.title = element_text(hjust = 0.5)) +
coord_flip() +
xlab("Work Hours")
## Plutting it together
grid.arrange(ggplotWrk.male, ggplotWrk.female,
widths=c(0.4, 0.4), ncol=2)
这是输出
如何在“男性”和“女性”地块之间移动“工作时间”以显示?
答案 0 :(得分:3)
我发现这个问题非常有趣,我认为没有完美的解决方案。我个人希望所有内容看起来都整齐并对齐,因此gridExtra::grid.arrange
的{{1}}(或top
代表轴标签)参数并不能真正吸引我的视线。
另一种解决方案是使用构面并使用包bottom
和gtable
编辑图。这也不是完美的,因为我发现没有解决方案可以单独调整构面的比例。唯一的选择是通过在构面上添加grid
来设置缩放比例。如果两边的最大百分比彼此接近,则效果很好。如果不是,也许不是。
首先,我编写了一个删除grob中的列的函数。我们将使用它将轴标签移动到中心。
scales = "free_x"
然后我们将创建数据和基本图。需要两个主题选项才能将轴文本设置在构面的中间。
library(tidyverse)
library(grid)
library(gtable)
delete_col <- function(x, pattern) {
t <- x$layout %>%
filter(str_detect(name, pattern)) %>%
pull(l)
x <- gtable_filter(x, pattern, invert = TRUE)
x$widths[t] <- unit(0, "cm")
x
}
现在,它变得更加复杂了。首先,我们将从ggplot对象创建一个grob对象。
test_data <- rnorm(500, 50, 15) %>%
crossing(sex = c("M", "F")) %>%
transmute(sex, value = cut(., c(min(.), 20, 40, 60, max(.)), include.lowest = TRUE))
test_data <- test_data %>%
count(sex, value) %>%
group_by(sex) %>%
mutate(p = n/sum(n)) %>%
ungroup() %>%
mutate(p = if_else(sex == "F", -p, p)) # negative values for the left-hand side.
p1 <- test_data %>%
ggplot(aes(value, p)) +
facet_wrap(~ sex, scales = "free_x") +
geom_col() +
coord_flip() +
theme(axis.text.y = element_text(hjust = 0.5, margin = margin(0, 0, 0, 0)),
axis.ticks.length = unit(0, "pt")) +
scale_y_continuous(labels = function(x) paste0(abs(x) * 100, "%")) +
labs(x = NULL)
然后,通过利用轴文本占用的现有空间并添加一些空格,来扩大构面之间的间隔。我通过使用p1_g <- ggplotGrob(p1)
查看了grob对象,以查看哪些列。
gtable_show_layout(p1_g)
接下来,我们将轴文本分离为它自己的对象,以供以后使用。
p1_g$widths[7] <- p1_g$widths[4] + unit(0.5, "cm")
最后,我们将它们全部加在一起。现在,通过查看放置所有内容的布局,我知道了。 p1g_axis <- gtable_filter(p1_g, "axis-l-1-1")
用于左侧范围,l
用于顶部范围。
t
答案 1 :(得分:2)
您可以使用top
参数,并使用vjust
将其降低。
grid.arrange(ggplotWrk.male, ggplotWrk.female,
widths=c(0.4, 0.4), ncol=2,
top = textGrob("Work Hours",gp=gpar(fontsize=11,font=1), vjust=2))