I am using Pandas histogram.
I would like to set the y-axis range of the plot.
Here is the context:
import matplotlib.pyplot as plt %matplotlib
You can simply add option sharey=True to make all subplots share the same yaxis limit, similiary using sharex=True for xaxis
sharey=True
sharex=True
data['ranking'].hist(by=data[column], sharey=True)