I am trying to map float pd.Series with high SD:
>>>pd.Series(foo).describe()
count 3.351198e+07
mean -2.337614e+02
std 4.788547e+04
min -9.999999e+06
25% 0.000000e+00
50% 0.000000e+00
75% 0.000000e+00
max 7.499913e+07
>>>pd.Series(foo).std()
47885.47066964969
It is highly centered around 0 but has big tails and outliers on both sides. So far I tried sns.distplot() with log scale but it only works on absolute values and I am interested in seeing difference on both sides. How can I visualize in more detail both tails ?
my code so far:
bins = [0, 10, 100, 1000, 10000, 100000, 100000, 100000000]
bins = [-i for i in bins[:1:-1] ] + bins
g = sns.distplot(foo.values,bins=bins,kde=False)
g.set_xscale('log')