I'm using the "by" option to create facet plots with Pandas like the following:
import pandas as pd
pd.Series(randn(1000)).hist(by=randint(0, 4, 1000), figsize=(6, 4))

Which is great. However I want both the x and y axis to be the same across all plots. Is there a built in way to do this? In ggplot I would use the scales="fixed" option but I don't see something like that built into the Pandas plotting.
Obviously my fallback is to write a few short lines that does this for me, but if there's an automagic way to do this, I'd like to use it.
