File tree 5 files changed +22
-22
lines changed
5 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ def _ipython_display_(self):
350
350
351
351
def __getitem__ (self , key ):
352
352
"""
353
- hack to allow calls like
353
+ Hack to allow calls like
354
354
interactive_plot(...beta=(0,1), controls = controls["tau"])
355
355
also allows [None] to grab None of the current params
356
356
to imply that we only want tau from the existing set of commands.
Original file line number Diff line number Diff line change 25
25
# functions that are methods
26
26
__all__ = [
27
27
"heatmap_slicer" ,
28
- "zoom_factory" ,
29
- "panhandler" ,
30
- "image_segmenter" ,
31
28
"hyperslicer" ,
29
+ "image_segmenter" ,
30
+ "panhandler" ,
31
+ "zoom_factory" ,
32
32
]
33
33
34
34
Original file line number Diff line number Diff line change 14
14
from matplotlib .pyplot import sca as mpl_sca
15
15
16
16
__all__ = [
17
- "sca" ,
18
- "decompose_bbox" ,
19
- "update_datalim_from_xy" ,
20
- "update_datalim_from_bbox" ,
21
- "notebook_backend" ,
22
17
"callable_else_value" ,
23
18
"callable_else_value_no_cast" ,
24
- "kwarg_to_ipywidget" ,
25
- "kwarg_to_mpl_widget" ,
26
- "extract_num_options" ,
27
19
"changeify" ,
28
- "create_slider_format_dict" ,
29
- "gogogo_figure" ,
20
+ "choose_fmt_str" ,
30
21
"create_mpl_controls_fig" ,
22
+ "create_slider_format_dict" ,
23
+ "decompose_bbox" ,
31
24
"eval_xy" ,
32
- "choose_fmt_str" ,
25
+ "extract_num_options" ,
26
+ "gogogo_figure" ,
27
+ "kwarg_to_ipywidget" ,
28
+ "kwarg_to_mpl_widget" ,
29
+ "notebook_backend" ,
30
+ "sca" ,
31
+ "update_datalim_from_bbox" ,
32
+ "update_datalim_from_xy" ,
33
33
]
34
34
35
35
Original file line number Diff line number Diff line change 35
35
)
36
36
37
37
__all__ = [
38
- "interactive_plot" ,
39
- "interactive_hist" ,
40
- "interactive_scatter" ,
41
- "interactive_imshow" ,
42
38
"interactive_axhline" ,
43
39
"interactive_axvline" ,
40
+ "interactive_hist" ,
41
+ "interactive_imshow" ,
42
+ "interactive_plot" ,
43
+ "interactive_scatter" ,
44
+ "interactive_text" ,
44
45
"interactive_title" ,
45
46
"interactive_xlabel" ,
46
47
"interactive_ylabel" ,
47
- "interactive_text" ,
48
48
]
49
49
50
50
Original file line number Diff line number Diff line change 13
13
14
14
__all__ = [
15
15
"figure" ,
16
- "nearest_idx" ,
17
- "ioff" ,
18
16
"indexer" ,
17
+ "ioff" ,
18
+ "nearest_idx" ,
19
19
]
20
20
21
21
You can’t perform that action at this time.
0 commit comments