@@ -31,6 +31,8 @@ def __init__(self, parent):
31
31
self .name = 'Sleep Trend'
32
32
self .compatible = 'all'
33
33
34
+ self .AddOption ('show_legend' , 'boolean' , 1 , ['Show legend' , 'Do not show legend' ], 'Do you want to draw a legend in the Day / Night graph?' )
35
+
34
36
35
37
def Refresh (self ):
36
38
'''
@@ -137,24 +139,36 @@ def Refresh(self):
137
139
single_day_std = average (value_std )
138
140
single_day_rd_avg = average (day_sleep )
139
141
single_day_rn_avg = average (night_sleep )
142
+
143
+ plot_legend = self .GetOption ('show_legend' )
140
144
141
- self .canvas .redraw (subplot_trend , title , value_avg , value_std , single_day_avg , single_day_std , single_day_rd_avg , single_day_rn_avg , pos , color )
145
+ self .canvas .redraw (subplot_trend , title , value_avg , value_std , single_day_avg , single_day_std , single_day_rd_avg , single_day_rn_avg , pos , color , plot_legend )
142
146
self .WriteComment (cSEL .Comment or '' )
143
147
144
148
145
- def subplot_trend (fig , title , value_avg , value_std , single_day_avg , single_day_std , single_day_rd_avg , single_day_rn_avg , pos , col ):
149
+ def subplot_trend (fig , title , value_avg , value_std , single_day_avg , single_day_std , single_day_rd_avg , single_day_rn_avg , pos , col , plot_legend ):
146
150
147
151
## for n, point in zip(range(len(value_avg)), value_avg):
148
152
## if point == NaN: value_avg[n] = -1
149
153
154
+ if GUI ['choice' ] == 'AI' :
155
+ ylabel = 'Activity Index'
156
+ a2title = 'Activity'
157
+
158
+ else :
159
+ ylabel = 'Minutes'
160
+ a2title = 'Sleep'
161
+
162
+
150
163
151
164
#UPPER PANEL
152
165
a1 = fig .add_subplot (211 )
153
166
#a1.xlim(0,len(tot_sleep)+1)
154
167
a1 .plot (value_avg , color = col , marker = 'o' , ls = ':' )
155
168
if GUI ['ErrorBar' ]: a1 .errorbar (range (0 ,len (value_avg )), value_avg , value_std , ecolor = col , fmt = None )
156
169
if single_day_avg > 3 : a1 .set_ylim (0 ,1440 )
157
- a1 .set_ylabel ('Sleep (m/d)' )
170
+
171
+ a1 .set_ylabel (ylabel )
158
172
159
173
a1 .set_xlim (- 1 ,len (value_avg ))
160
174
step = (len (value_avg )> 50 * 5 ) or 1
@@ -165,7 +179,7 @@ def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_s
165
179
a1 .set_title (title )
166
180
167
181
#LOWER RIGHT
168
- a2 = fig .add_subplot (224 , title = 'Total Sleep' )
182
+ a2 = fig .add_subplot (224 , title = a2title )
169
183
pos = pos + 1
170
184
width = float (pos ) / (pos * 2 )
171
185
@@ -174,15 +188,16 @@ def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_s
174
188
else :
175
189
a2 .bar (pos , single_day_avg , width , color = col , align = 'center' )
176
190
177
- a2 .set_ylabel ('Sleep (m/d)' )
191
+
192
+ a2 .set_ylabel (ylabel )
178
193
a2 .set_xticks (range (1 ,pos + 2 ))
179
194
a2 .set_xticklabels (['' ]+ range (1 ,pos ))
180
195
a2 .set_xlim (1.5 ,pos + 0.5 )
181
196
if single_day_avg > 3 : a2 .set_ylim (0 ,1440 )
182
197
183
198
184
199
#LOWER LEFT
185
- a3 = fig .add_subplot (223 , title = 'Total Sleep (day/ night)' )
200
+ a3 = fig .add_subplot (223 , title = 'Total Sleep (day - night)' )
186
201
187
202
col_brighter = brighten (col )
188
203
@@ -195,5 +210,8 @@ def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_s
195
210
a3 .set_xticklabels (['' ]+ range (1 ,pos ))
196
211
a3 .set_xlim (1.5 ,pos + 0.5 )
197
212
a3 .set_ylim (0 ,1440 )
198
- ## a3.legend( (p1[0], p2[0]), ('Day', 'Night') )
199
- ##a3.set_ylabel('Sleep (m/d)')
213
+
214
+ if plot_legend :
215
+ a3 .legend ( (p1 [0 ], p2 [0 ]), ('Day' , 'Night' ) )
216
+
217
+ a3 .set_ylabel ('Minutes' )
0 commit comments