I am trying to produce a graph similar to the one below: graph with two x axis labels, facet wrap and different colours
The format of my data is as follows:Data format
The code that I have been using is:
data$x1 <- as.factor(data$x1)
data$x2 <- as.factor(data$x2)
data$Fill <- as.factor(data$Fill)
ggplot(data, aes(x=x1, y=y, fill=x2))+
geom_col(position=position_dodge())+
theme( legend.position = "right")+
facet_wrap(~Sex, nrow=1, strip.position = "top")+
theme(strip.placement = "outside")
scale_x_discrete(breaks = c(11, 12, 22),labels = c("11", "12", "22"))+
ylab("y")
This produces the following plot:Plot from above code
However, I am unable to add x2 as a second variable on the x axis nor am I able to then use Fill as the fill= option. Does anyone have a solution?
Kind regards
I have googled the issue and played around with the code but without success.
Instead of using
position_dodge
one approach would be to create a new column by pasting yourx1
andx2
columns together separated by a line break and mapping this new column onx
. This way you will automatically get your two rows of axis labels. Tricky first part is to put the labels in the right order for which I usearrange
to order the dataset first and second useforcats::fct_inorder
to convert to a factor and setting the right order. A drawback of this approach is that the space between each bar is the same and groups of bars are no longer separated.And as you already facetted by
Sex
there is no easy fix for that. One approach would be to usefacet_grid
or as I do below, to useggh4x::facet_nested_wrap
to facet by bothSex
andx1
then get rid of the strips forx1
. Drawback of this approach is that it leaves some blank space.Using some fake example data: