Skip to content

Commit 59cfee7

Browse files
committed
MNT: add time to work on estimates
1 parent 15769d7 commit 59cfee7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

01-callable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __call__(self, event):
4040
cid = fig.canvas.mpl_connect('key_press_event', ec)
4141

4242

43-
# EXERCISE
43+
# EXERCISE (10 minutes)
4444
# - Try connecting the same object to other events
4545
# - add helper method to manage event buffer
4646
# - print out message of key press events

02-event_filter.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ def on_key(self, event):
5555
ln, = ax.plot([], [], '-o')
5656
line_maker = LineMaker(ln)
5757
plt.show()
58-
# EXERCISE
59-
# - modify to remove the closest point when key == 'shift'
6058

59+
# EXERCISE (15 minutes)
60+
61+
# - modify to remove the closest point when key == 'shift'
6162
# - change the line width for [1-9]
6263
# - clear the line when event.key == 'escape'

05-temperature/04-custom_plotting.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def plot_aggregated_errorbar(ax, gb, label, picker=None, **kwargs):
2727

2828
arts = plot_aggregated_errorbar(ax, bwi_monthly, 'bwi')
2929

30-
# EXERCISE
30+
# EXERCISE (10 minutes)
31+
3132
# - make the shaded area configurable
3233
# - make center line configurable

0 commit comments

Comments
 (0)