ggplot(data.frame(x=rnorm(1000,10,1)))+opts(aspect.ratio=0.7)+geom_histogram(aes(x=x),binwidth=0.2,fill="white",color="black")+theme_bw()
in which each edge of each bin is inked. In my field it's much more common to remove the vertical lines separating adjacent bins - as in the plot below. Is it possible to to do this in ggplot2? I poked around in the documentation and scrolled though galleries of R plots, but I honestly couldn't find any way to do this.
- Dave