I have the following chart
test <- data.frame(person=c("A", "B", "C", "D", "E"), value1=c(100,150,120,80,150), value2=c(25,30,45,30,30) , value3=c(100,120,150,150,200))
I want to build a grouped barcher (horizontal) for each person, where one strip shows the value1, and the other - the stack of value2 and value3. Is there any way I can do this using ggplot2? Can I use faces to plot these separate graphs one below the other?
Sudhi source share