@@ -166,9 +166,8 @@ def rebound_plot(self, fig, t, dist_sde_sel , dist_sde_rem, dist_re_mins, dist_r
166
166
if n_bin1 : w2 = 1.0 / n_bin1
167
167
else : w2 = 0.3
168
168
169
-
170
- if len (dist_sde_sel ) != 0 : n1 , bins , patches = a1 .hist (dist_sde_sel , n_bin1 , rwidth = w1 , fc = col )#, alpha=0.5)
171
- if len (dist_sde_rem ) != 0 : n2 , bins , patches = a1 .hist (dist_sde_rem , n_bin2 , rwidth = w2 , fc = brighten (col ))#, alpha=0.5)
169
+ if len (dist_sde_sel ) > 1 : n1 , bins , patches = a1 .hist (dist_sde_sel , n_bin1 , rwidth = w1 , fc = col )#, alpha=0.5)
170
+ if len (dist_sde_rem ) > 1 : n2 , bins , patches = a1 .hist (dist_sde_rem , n_bin2 , rwidth = w2 , fc = brighten (col ))#, alpha=0.5)
172
171
173
172
a1 .set_ylabel ('n. of flies' )
174
173
a1 .set_xlim ((0 , 100 ))
@@ -179,9 +178,12 @@ def rebound_plot(self, fig, t, dist_sde_sel , dist_sde_rem, dist_re_mins, dist_r
179
178
a5 = fig .add_axes ([0.70 , 0.55 , 0.20 , 0.35 ])
180
179
n_low_sde_thre = len (dist_sde_rem )
181
180
n_hig_sde_thre = len (dist_sde_sel )
182
-
183
- a5 .bar (1 , n_low_sde_thre , color = brighten (col ) , align = 'center' )
184
- a5 .bar (2 , n_hig_sde_thre , color = col , align = 'center' )
181
+
182
+ #if plot_legend:
183
+ b1 = a5 .bar (1 , n_low_sde_thre , color = brighten (col ) , align = 'center' )
184
+ b2 = a5 .bar (2 , n_hig_sde_thre , color = col , align = 'center' )
185
+ a5 .legend ( (b1 [0 ], b2 [0 ]), ('<SDE' , '>SDE' ) )
186
+
185
187
a5 .set_xticks ([])
186
188
a5 .set_xticklabels ([])
187
189
0 commit comments