I\'d like to add spaces between bars in ggplot2. This page offers one solution: http://www.streamreader.org/stats/questions/6204/how-to-increase-the-space-between-the-bars-i
Is this what you want?
hist + geom_bar(width=0.4, position = position_dodge(width=0.5))
width
geom_bar
position_dodge
Probably you can easily understand their behavior after you play with them for a while.