I have the following grouped barplot for 4 different groups created with ggplot:
what I would like is to plot one group with a wider bar and put the other three groups as thin bars in front of the wider bar.
Something like that:

(sorry for the not matching colours)
Any ideas how to create this using ggplot?
The code for the original plot is:
cols4 <- c("#565656", "#0065c4", "#f03b20", "#73c400")
rhoc_plot <- ggplot(Table_for_Plot, aes(x = marker,
y = rho_c,
fill = cohort))+
geom_bar(stat = "identity",
width = 0.6,
position = position_dodge(0.6))+
theme_classic()+
theme(axis.text.x = element_text(angle = 45, hjust = 1),
axis.title.x = element_blank(),
axis.ticks.x = element_blank())+
scale_y_continuous(expand = c(0,0.0001))+
ylab("rho c")+
scale_fill_manual(values = cols4)
Thank you in advance!

