Bob Muenchen
unread,Mar 2, 2012, 3:50:59 PM3/2/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ded...@googlegroups.com
Hi All,
I'm trying to create a bar chart like this:
a <- factor( c(1,1,1,2,2,2,2) )
b <- factor( c(1,1,2,2,2,2,1) )
df <- data.frame(a,b)
ggplot(df, aes(a, fill = b) ) +
geom_bar(position = "fill")
using Plot Builder. I can get the position to be stack or dodge, but not fill. Is it located in a different setting?
Thanks,
Bob