I often have to make stacked barplots to compare variables, and because I do all my stats in R, I prefer to do all my graphics in R with ggplot2. I would like to learn how t
You don't need prop.tables or count etc to do the 100% stacked bars. You just need +geom_bar(position="stack")
prop.tables
+geom_bar(position="stack")