Is your feature request related to a problem? Please describe.
I think y-axis of distribution plots needs to be scaled similarly for data from the same column.


Describe the solution you'd like
We could set the upper y limit of the plot to some constant times the maximum value in the target column.
plt.ylim(0, df[target_attr].max() * 1.2)
Is your feature request related to a problem? Please describe.
I think y-axis of distribution plots needs to be scaled similarly for data from the same column.
Describe the solution you'd like
We could set the upper y limit of the plot to some constant times the maximum value in the target column.