Skip to content

Commit 08cdb5a

Browse files
committed
Fix and closes #9 and #12
1 parent 37c9b88 commit 08cdb5a

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

panels/6_sleepdeprivation.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,8 @@ def rebound_plot(self, fig, t, dist_sde_sel , dist_sde_rem, dist_re_mins, dist_r
166166
if n_bin1: w2 = 1.0/n_bin1
167167
else: w2 = 0.3
168168

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)
172171

173172
a1.set_ylabel('n. of flies')
174173
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
179178
a5 = fig.add_axes([0.70, 0.55, 0.20, 0.35])
180179
n_low_sde_thre = len(dist_sde_rem)
181180
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+
185187
a5.set_xticks([])
186188
a5.set_xticklabels([])
187189

panels/default_panels.py

+7-9
Original file line numberDiff line numberDiff line change
@@ -1148,19 +1148,17 @@ def __init__(self, panel_name, variable, variable_name, description):
11481148
self.name = variable_name
11491149
self.description = description
11501150

1151-
def exportToFile(self, outputPath, fileType='binary'):
1151+
def exportToFile(self, outfile, fileType='binary'):
11521152
'''
11531153
export to variable as np export object
11541154
if it is not a numpy array, it will be first converted to one
11551155
'''
1156-
i = ['binary', 'text'].index(fileType)
1157-
separator = ['','\t'][i]
1158-
try:
1159-
var = array(self.variable)
1160-
var.tofile(outputPath, separator)
1161-
return True
1162-
except:
1163-
return False
1156+
if 'binary' in fileType:
1157+
np.save(outfile, self.variable)
1158+
else:
1159+
np.savetxt(outfile, self.variable, delimiter=',') # X is an array
1160+
1161+
return True
11641162

11651163

11661164
class pySoloPanel(wx.Panel):

0 commit comments

Comments
 (0)