Making barplot with offset baselines using ggplot2

346 Views Asked by At

If I'm using the default R graphics package, then I can make plots with staggered baselines.

Here is an example using the CPTtools package (which is available on github)

library(devtools)
install_github("ralmond/CPTtools")
library(CPTtools)

margins <- data.frame (
     Trouble=c(Novice=.19,Semester1=.24,Semester2=.28,Semseter3=.20,Semester4=.09),
     NDK=c(Novice=.01,Semester1=.09,Semester2=.35,Semseter3=.41,Semester4=.14),
     Model=c(Novice=.19,Semester1=.28,Semester2=.31,Semseter3=.18,Semester4=.04)
    )
margins <- as.matrix(margins)
baseline <- apply(margins[1:2,],2,sum)
     
stackedBarplot(margins,offset=-baseline,
                 main="Marginal Distributions for NetPASS skills",
                 sub="Baseline at 2nd Semester level.",
                 col=hsv(223/360,.2,0.10*(5:1)+.5))

This produces the output:

stacked barplot

The key is the offset argument which is passed to the barplot function.

For various reasons, I'm trying to rewrite the graphics of CPTtools using ggplot. I can't figure out how to adjust the position of the stacked bar. The closest I've come is

library(tidyverse)
margins <- data.frame (
      Trouble=c(Novice=.19,Semester1=.24,Semester2=.28,Semseter3=.20,Semester4=.09),
      NDK=c(Novice=.01,Semester1=.09,Semester2=.35,Semseter3=.41,Semester4=.14),
      Model=c(Novice=.19,Semester1=.28,Semester2=.31,Semseter3=.18,Semester4=.04)
)
tibble::rownames_to_column(margins,var="Level") %>%
  tidyr::pivot_longer(-Level,
                      names_to="Attribute", values_to="probability") ->
  marg
marg %>% filter(Level=="Novice" | Level=="Semester1") %>%
  group_by(Attribute) %>% summarize(baseline=sum(probability)) ->
  bases

ggplot(marg,aes(Attribute,probability,fill=Level)) +
  geom_col(position=position_stack() +
  scale_fill_brewer(palette="Blues")
0

There are 0 best solutions below