You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: