I have highly imbalanced raw data, which looks like:
df
Index Branch
1 10000
2 200
...
1000 1
...
10000 1
And if I run:
import seaborn as sns
sns.distplot(df['Branch'], bins=1000)
The outcome looks like this:
Is there any chance to fix the maximum of the y-value in the visualization to 0.06? And to adjust the x-value to 1000 or something.