As mentioned, one should really be using a kernel density plot instead of a histogram, except when there are already classes in the data.<p>In R, one can simply do:<p><pre><code> library("ggplot2")
library("datasets")
ggplot(faithful, aes(x=eruptions)) + geom_density() + geom_rug()
</code></pre>
which gives a chart like this (<a href="http://jean-francois.im/temp/eruptions-kde.png" rel="nofollow">http://jean-francois.im/temp/eruptions-kde.png</a>). Contrast with:<p><pre><code> ggplot(faithful, aes(x=eruptions)) + geom_histogram(binwidth=1)
</code></pre>
which gives a chart like this (<a href="http://jean-francois.im/temp/eruptions-histogram.png" rel="nofollow">http://jean-francois.im/temp/eruptions-histogram.png</a>).<p>Edit: Other plots mentioned in this discussion:<p><pre><code> ggplot(faithful, aes(x = eruptions)) + stat_ecdf(geom = "step")
</code></pre>
Cumulative distribution, as suggested by leot (<a href="http://jean-francois.im/temp/eruptions-ecdf.png" rel="nofollow">http://jean-francois.im/temp/eruptions-ecdf.png</a>)<p><pre><code> qqnorm (faithful$eruptions)
</code></pre>
Q-Q plot, as suggested by christopheraden (<a href="http://jean-francois.im/temp/eruptions-qq.png" rel="nofollow">http://jean-francois.im/temp/eruptions-qq.png</a>)
Yes, probability density estimation might be fun, but the simplest thing to do when comparing distributions, if you're worried about binning issues, is to plot their empirical cumulative distribution functions.
This is what you should be doing:<p><pre><code> plot(density(Annie), col="red")
lines(density(Brian), col="blue")
lines(density(Chris), col="green")
lines(density(Zoe), col="cyan")
</code></pre>
This is the plot you get: <a href="http://i.imgur.com/sY2awX7.png" rel="nofollow">http://i.imgur.com/sY2awX7.png</a>
Interesting paradox. I haven't seen that many statisticians using just a histogram when determining whether a certain distribution fits data reasonably. Kernel Density Estimators are a much better choice (for continuous data, like the data in the post), but they are also affected by your choice of bandwidth. When it comes down to it, like going to the doctor, sometimes the best choice is to get a second (or third!) opinion. For what it's worth, drawing a QQ Plot (something I've seen in every statistical consultation I've ever done) reveals the dependent structure of the data immediately and obviously in the form of a perfect linear relationship between any two variables.