-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.txt
4794 lines (4790 loc) · 721 KB
/
profile.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
loading
cdf -> C:\Users\ishma\Dropbox (SteinLab)\spectra\(ID 186nm) 2016-07-26-tip15\mass spec\spec.cd
aux -> C:\Users\ishma\Dropbox (SteinLab)\spectra\(ID 186nm) 2016-07-26-tip15\ivpt\ivpt.tsv
66929041 function calls (65383954 primitive calls) in 97.440 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
222055 9.180 0.000 12.046 0.000 msplot.py:42(__add__)
1 7.313 7.313 9.884 9.884 msplot.py:65(load)
119986 6.538 0.000 6.538 0.000 {method 'set_text' of 'matplotlib.ft2font.FT2Font' objects}
13590 3.530 0.000 3.800 0.000 {method 'draw_path' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
2207848 2.870 0.000 2.870 0.000 {built-in method numpy.core.multiarray.array}
1 2.747 2.747 2.750 2.750 {built-in method show}
222055 2.704 0.000 2.704 0.000 {method 'copy' of 'collections.defaultdict' objects}
1237637 2.560 0.000 2.560 0.000 {method 'reduce' of 'numpy.ufunc' objects}
49630 2.375 0.000 2.444 0.000 {method 'draw_text_image' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
67798 2.041 0.000 13.426 0.000 text.py:329(_get_layout)
437950 1.918 0.000 4.517 0.000 stats.py:1594(_compute_qth_percentile)
1 1.647 1.647 3.083 3.083 {built-in method exec_}
125028 1.589 0.000 24.468 0.000 text.py:739(draw)
7328884 1.553 0.000 1.553 0.000 netcdf.py:947(__getitem__)
461 1.334 0.003 3.004 0.007 _peak_finding.py:236(_identify_ridge_lines)
422608 1.171 0.000 1.668 0.000 weakref.py:102(__init__)
1860013 1.093 0.000 1.093 0.000 __init__.py:934(__getitem__)
425865 0.986 0.000 1.522 0.000 font_manager.py:720(__hash__)
23024 0.929 0.000 12.993 0.001 {built-in method builtins.sum}
438411 0.908 0.000 0.908 0.000 {method 'sort' of 'numpy.ndarray' objects}
228984 0.897 0.000 0.897 0.000 {built-in method numpy.core.multiarray.dot}
3651022 0.875 0.000 0.875 0.000 {built-in method math.floor}
6 0.858 0.143 0.858 0.143 {method 'call' of '_tkinter.tkapp' objects}
49630 0.780 0.000 0.780 0.000 {method 'draw_glyphs_to_bitmap' of 'matplotlib.ft2font.FT2Font' objects}
445 0.753 0.002 0.753 0.002 {method 'buffer_rgba' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
482837/81697 0.741 0.000 2.432 0.000 transforms.py:139(_invalidate_internal)
708542 0.700 0.000 1.362 0.000 weakref.py:242(values)
20838 0.679 0.000 0.817 0.000 {method 'draw_markers' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
23556 0.646 0.000 8.079 0.000 lines.py:769(draw)
1081939/654208 0.620 0.000 1.250 0.000 artist.py:268(stale)
49630 0.610 0.000 9.634 0.000 backend_agg.py:183(draw_text)
461 0.603 0.001 7.789 0.017 _peak_finding.py:356(_filter_ridge_lines)
437950 0.556 0.000 6.918 0.000 stats.py:1514(scoreatpercentile)
422604 0.541 0.000 2.209 0.000 transforms.py:87(__init__)
904 0.467 0.001 0.467 0.001 {method 'clear' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
149914/90427 0.467 0.000 2.346 0.000 transforms.py:2392(get_affine)
119986 0.454 0.000 3.677 0.000 backend_agg.py:269(_get_agg_font)
24131 0.426 0.000 1.318 0.000 lines.py:670(recache)
95 0.400 0.004 0.400 0.004 {method 'acquire' of '_thread.lock' objects}
192978/906 0.397 0.000 51.405 0.057 artist.py:61(draw_wrapper)
313476 0.385 0.000 0.385 0.000 {built-in method numpy.core.multiarray.zeros}
104712 0.382 0.000 0.382 0.000 {method 'round' of 'numpy.generic' objects}
422608 0.363 0.000 0.447 0.000 weakref.py:288(update)
1816499/1816497 0.351 0.000 0.380 0.000 {built-in method builtins.isinstance}
82246 0.329 0.000 1.023 0.000 backend_bases.py:786(__init__)
746759/440867 0.326 0.000 1.269 0.000 {built-in method builtins.hash}
76566 0.320 0.000 0.537 0.000 fromnumeric.py:42(_wrapit)
1013831 0.312 0.000 0.369 0.000 {built-in method builtins.getattr}
437950 0.311 0.000 1.664 0.000 fromnumeric.py:709(sort)
250007 0.305 0.000 2.312 0.000 transforms.py:1808(__init__)
446119 0.298 0.000 0.298 0.000 {method 'flatten' of 'numpy.ndarray' objects}
445 0.292 0.001 0.292 0.001 {method 'write' of '_io.BufferedWriter' objects}
304469 0.290 0.000 1.845 0.000 transforms.py:1662(__init__)
34451 0.286 0.000 0.297 0.000 cbook.py:1302(__setitem__)
70356 0.280 0.000 5.905 0.000 backend_agg.py:215(get_text_width_height_descent)
38260 0.275 0.000 1.114 0.000 transforms.py:1910(rotate)
62600 0.275 0.000 0.726 0.000 path.py:212(_update_values)
2587790/2587467 0.266 0.000 0.266 0.000 {built-in method builtins.len}
52545 0.252 0.000 0.488 0.000 path.py:172(_fast_from_codes_and_verts)
169153 0.250 0.000 0.250 0.000 {built-in method matplotlib._path.affine_transform}
694257 0.244 0.000 0.244 0.000 {built-in method builtins.max}
864874 0.244 0.000 1.569 0.000 numeric.py:463(asarray)
50531 0.242 0.000 0.343 0.000 twodim_base.py:139(eye)
413005 0.237 0.000 1.463 0.000 fromnumeric.py:55(_wrapfunc)
231491 0.237 0.000 0.237 0.000 msplot.py:33(__init__)
119989 0.231 0.000 0.487 0.000 font_manager.py:998(<listcomp>)
68433 0.226 0.000 0.969 0.000 transforms.py:781(__init__)
307479 0.221 0.000 0.318 0.000 _weakrefset.py:26(__exit__)
445 0.219 0.000 27.407 0.062 backend_agg.py:525(print_raw)
81367 0.218 0.000 2.977 0.000 transforms.py:1315(transform)
267090 0.211 0.000 1.550 0.000 {method 'get' of 'dict' objects}
119986 0.210 0.000 2.610 0.000 font_manager.py:1228(findfont)
82269 0.209 0.000 0.223 0.000 text.py:64(get_rotation)
8449 0.205 0.000 2.288 0.000 lines.py:297(__init__)
67798 0.197 0.000 1.208 0.000 text.py:901(get_prop_tup)
116739 0.190 0.000 0.190 0.000 {method 'copy' of 'numpy.ndarray' objects}
76907 0.190 0.000 3.327 0.000 transforms.py:1411(transform_point)
177263 0.189 0.000 0.189 0.000 {method 'match' of '_sre.SRE_Pattern' objects}
103569/100799 0.189 0.000 0.434 0.000 units.py:125(get_converter)
119986 0.186 0.000 0.265 0.000 backend_agg.py:54(get_hinting_flag)
19980 0.185 0.000 0.428 0.000 transforms.py:694(translated)
309232 0.184 0.000 0.226 0.000 six.py:577(itervalues)
124286 0.184 0.000 0.184 0.000 {method 'reshape' of 'numpy.ndarray' objects}
438832 0.182 0.000 1.131 0.000 {method 'sum' of 'numpy.ndarray' objects}
62600 0.182 0.000 1.041 0.000 path.py:103(__init__)
177772 0.181 0.000 0.659 0.000 colors.py:107(_is_nth_color)
20008 0.181 0.000 6.159 0.000 text.py:932(get_window_extent)
119989 0.180 0.000 0.691 0.000 font_manager.py:996(make_rcparams_key)
159775 0.180 0.000 0.490 0.000 transforms.py:1763(transform_affine)
437982 0.180 0.000 0.249 0.000 numeric.py:2135(isscalar)
87806 0.175 0.000 0.623 0.000 text.py:887(get_unitless_position)
10872 0.175 0.000 3.358 0.000 patches.py:523(draw)
177325 0.174 0.000 0.836 0.000 colors.py:128(to_rgba)
307479 0.160 0.000 0.204 0.000 _weakrefset.py:20(__enter__)
119986 0.159 0.000 0.159 0.000 {method 'clear' of 'matplotlib.ft2font.FT2Font' objects}
3632 0.159 0.000 6.410 0.002 axis.py:961(_update_ticks)
2726 0.157 0.000 3.857 0.001 ticker.py:1733(_raw_ticks)
4149 0.155 0.000 0.155 0.000 {built-in method numpy.core.multiarray.correlate}
221709 0.154 0.000 0.154 0.000 {method 'argmin' of 'numpy.ndarray' objects}
279098/184830 0.151 0.000 0.186 0.000 transforms.py:2353(_get_is_affine)
5993 0.150 0.000 0.164 0.000 wavelets.py:264(ricker)
547415 0.149 0.000 0.149 0.000 {built-in method builtins.min}
119986 0.148 0.000 2.356 0.000 font_manager.py:1000(get)
212020 0.137 0.000 0.767 0.000 artist.py:74(_stale_axes_callback)
501429 0.137 0.000 0.137 0.000 {built-in method builtins.iter}
1141376 0.136 0.000 0.136 0.000 artist.py:734(get_animated)
5472 0.136 0.000 0.687 0.000 transforms.py:723(union)
119986 0.134 0.000 2.744 0.000 font_manager.py:1443(findfont)
192978 0.133 0.000 0.188 0.000 artist.py:52(after)
177214 0.132 0.000 0.161 0.000 re.py:286(_compile)
85535 0.131 0.000 0.228 0.000 cbook.py:2199(is_math_text)
176764 0.129 0.000 0.450 0.000 re.py:169(match)
81697 0.127 0.000 2.558 0.000 transforms.py:128(invalidate)
50531 0.127 0.000 0.556 0.000 numeric.py:2365(identity)
33970 0.125 0.000 1.309 0.000 markers.py:199(_recache)
554713 0.123 0.000 0.307 0.000 numeric.py:534(asanyarray)
87290 0.123 0.000 0.259 0.000 weakref.py:165(__setitem__)
119986 0.123 0.000 0.123 0.000 {method 'set_size' of 'matplotlib.ft2font.FT2Font' objects}
81367 0.122 0.000 2.327 0.000 transforms.py:2368(transform_affine)
159240 0.121 0.000 0.565 0.000 artist.py:192(convert_xunits)
17029 0.115 0.000 0.169 0.000 artist.py:95(__init__)
192978 0.115 0.000 0.176 0.000 artist.py:45(before)
85535 0.112 0.000 0.379 0.000 text.py:1215(is_math_text)
212684 0.111 0.000 0.221 0.000 __init__.py:313(report)
927143 0.111 0.000 0.111 0.000 artist.py:236(axes)
153593 0.111 0.000 0.111 0.000 {built-in method numpy.core.multiarray.empty_like}
212686 0.110 0.000 0.110 0.000 __init__.py:347(ge)
100785 0.109 0.000 0.543 0.000 axis.py:1465(convert_units)
307479 0.109 0.000 0.109 0.000 _weakrefset.py:16(__init__)
136670 0.108 0.000 0.193 0.000 cbook.py:678(iterable)
154055 0.108 0.000 0.108 0.000 {built-in method numpy.core.multiarray.copyto}
19932 0.105 0.000 11.000 0.001 axis.py:249(draw)
184840/155589 0.105 0.000 1.295 0.000 transforms.py:2322(_invalidate_internal)
164492 0.102 0.000 0.307 0.000 backend_bases.py:1012(set_foreground)
59236 0.102 0.000 0.374 0.000 transforms.py:163(set_children)
2718/906 0.102 0.000 50.470 0.056 image.py:120(_draw_list_compositing_images)
194667 0.101 0.000 0.137 0.000 cbook.py:687(is_string_like)
109274 0.098 0.000 0.616 0.000 fromnumeric.py:2723(around)
171070 0.098 0.000 0.098 0.000 {method 'count' of 'str' objects}
438832 0.097 0.000 0.949 0.000 _methods.py:31(_sum)
389712 0.096 0.000 0.096 0.000 transforms.py:1853(get_matrix)
10905/10904 0.093 0.000 0.400 0.000 transforms.py:1091(get_points)
30812 0.091 0.000 0.519 0.000 transforms.py:1448(transform_path_non_affine)
221709 0.086 0.000 0.331 0.000 fromnumeric.py:966(argmin)
215711 0.086 0.000 0.473 0.000 figure.py:54(_stale_figure_callback)
153593 0.086 0.000 0.460 0.000 numeric.py:87(zeros_like)
47843 0.086 0.000 0.327 0.000 contextlib.py:85(__exit__)
58588 0.084 0.000 0.084 0.000 {built-in method numpy.core.multiarray.empty}
83168 0.083 0.000 0.221 0.000 transforms.py:2372(transform_non_affine)
24510 0.082 0.000 0.082 0.000 ticker.py:751(pprint_val)
156540 0.081 0.000 0.358 0.000 artist.py:201(convert_yunits)
23556 0.081 0.000 0.618 0.000 transforms.py:2702(_revalidate)
42852 0.081 0.000 0.926 0.000 transforms.py:838(from_extents)
33108 0.081 0.000 0.800 0.000 transforms.py:1972(scale)
2375 0.080 0.000 0.080 0.000 {built-in method nt.stat}
82246 0.080 0.000 0.105 0.000 artist.py:775(_set_gc_clip)
156143 0.079 0.000 0.557 0.000 transforms.py:1683(transform)
217944 0.078 0.000 0.170 0.000 __init__.py:1437(is_interactive)
545852 0.078 0.000 0.078 0.000 font_manager.py:793(get_file)
76566 0.078 0.000 0.078 0.000 {method 'argsort' of 'numpy.ndarray' objects}
3624 0.077 0.000 28.289 0.008 axis.py:1128(draw)
104249 0.076 0.000 0.099 0.000 artist.py:353(get_transform)
69136 0.075 0.000 0.221 0.000 fromnumeric.py:2275(amin)
94/58 0.074 0.001 0.137 0.002 {built-in method _imp.create_dynamic}
217940 0.074 0.000 0.244 0.000 pyplot.py:565(_auto_draw_if_interactive)
86131 0.074 0.000 0.117 0.000 weakref.py:109(remove)
425875 0.073 0.000 0.073 0.000 font_manager.py:739(get_family)
461 0.073 0.000 12.879 0.028 msplot.py:209(updateSpecPlot)
47843 0.072 0.000 0.098 0.000 contextlib.py:59(__init__)
82246 0.072 0.000 1.095 0.000 backend_bases.py:724(new_gc)
179413 0.070 0.000 0.070 0.000 {built-in method builtins.hasattr}
119040 0.068 0.000 0.852 0.000 font_manager.py:730(__eq__)
3809 0.068 0.000 0.627 0.000 patches.py:704(_update_patch_transform)
385956 0.067 0.000 0.067 0.000 artist.py:785(get_rasterized)
13662 0.067 0.000 0.206 0.000 axis.py:455(update_position)
44604 0.066 0.000 0.473 0.000 transforms.py:1735(frozen)
548583 0.066 0.000 0.066 0.000 font_manager.py:790(get_size_in_points)
82246 0.065 0.000 0.106 0.000 backend_bases.py:940(set_alpha)
87290 0.064 0.000 0.064 0.000 weakref.py:339(__init__)
28142 0.064 0.000 4.546 0.000 axis.py:908(iter_ticks)
660837 0.064 0.000 0.064 0.000 {method 'append' of 'list' objects}
41676 0.063 0.000 0.113 0.000 lines.py:926(_get_markerfacecolor)
95951 0.063 0.000 0.277 0.000 text.py:1204(set_text)
69136 0.063 0.000 0.183 0.000 fromnumeric.py:2174(amax)
166936 0.062 0.000 0.100 0.000 core.py:6192(isMaskedArray)
41676 0.061 0.000 0.263 0.000 lines.py:1335(_get_rgba_face)
27797 0.061 0.000 0.351 0.000 transforms.py:2290(__init__)
307402 0.060 0.000 0.060 0.000 weakref.py:125(_commit_removals)
109274 0.060 0.000 0.675 0.000 fromnumeric.py:2792(round_)
425875 0.058 0.000 0.058 0.000 font_manager.py:767(get_weight)
2815/2799 0.058 0.000 3.531 0.001 axis.py:67(__init__)
2726 0.058 0.000 0.150 0.000 ticker.py:716(_set_format)
57120/55788 0.058 0.000 0.560 0.000 <frozen importlib._bootstrap>:989(_handle_fromlist)
68916 0.058 0.000 0.405 0.000 {method 'all' of 'numpy.ndarray' objects}
522 0.058 0.000 0.058 0.000 {built-in method marshal.loads}
2252 0.057 0.000 0.096 0.000 linalg.py:449(inv)
70724 0.056 0.000 0.314 0.000 transforms.py:2176(get_affine)
71628 0.055 0.000 0.334 0.000 {method 'min' of 'numpy.ndarray' objects}
16985 0.054 0.000 0.804 0.000 markers.py:248(set_marker)
97563 0.053 0.000 0.305 0.000 {built-in method builtins.next}
158932 0.052 0.000 0.052 0.000 {built-in method __new__ of type object at 0x000000006DAE43F0}
82269 0.051 0.000 0.274 0.000 text.py:294(get_rotation)
425875 0.051 0.000 0.051 0.000 font_manager.py:752(get_style)
127589 0.051 0.000 0.051 0.000 transforms.py:1642(_get_is_affine)
47843 0.050 0.000 0.148 0.000 contextlib.py:157(helper)
113839 0.050 0.000 0.050 0.000 {method 'replace' of 'str' objects}
76566 0.050 0.000 0.057 0.000 _peak_finding.py:409(filt_func)
276043 0.049 0.000 0.049 0.000 {built-in method builtins.id}
425875 0.049 0.000 0.049 0.000 font_manager.py:760(get_variant)
385956 0.049 0.000 0.049 0.000 artist.py:802(get_agg_filter)
247285 0.048 0.000 0.048 0.000 text.py:917(get_text)
3632 0.048 0.000 6.213 0.002 axis.py:1067(_get_tick_bboxes)
7248 0.048 0.000 0.066 0.000 spines.py:193(_adjust_location)
140764 0.048 0.000 0.424 0.000 _methods.py:28(_amin)
38260 0.047 0.000 1.161 0.000 transforms.py:1927(rotate_deg)
425875 0.047 0.000 0.047 0.000 font_manager.py:776(get_stretch)
24198 0.047 0.000 0.091 0.000 shape_base.py:63(atleast_2d)
14689 0.046 0.000 0.865 0.000 patches.py:216(get_transform)
5810 0.046 0.000 0.260 0.000 font_manager.py:674(__init__)
21733 0.045 0.000 0.403 0.000 lines.py:730(_transform_path)
309343 0.045 0.000 0.045 0.000 {method 'add' of 'set' objects}
41676 0.044 0.000 0.086 0.000 backend_agg.py:287(points_to_pixels)
21733 0.043 0.000 0.313 0.000 transforms.py:2685(__init__)
273971 0.043 0.000 0.043 0.000 {method 'pop' of 'dict' objects}
87290 0.043 0.000 0.072 0.000 weakref.py:334(__new__)
86131 0.043 0.000 0.043 0.000 {built-in method _weakref._remove_dead_weakref}
1 0.043 0.043 0.043 0.043 {built-in method _tkinter.create}
38292 0.042 0.000 0.872 0.000 transforms.py:828(from_bounds)
1812 0.042 0.000 50.440 0.028 _base.py:2346(draw)
145326 0.041 0.000 0.288 0.000 _methods.py:25(_amax)
9133 0.041 0.000 0.122 0.000 axis.py:590(update_position)
95636 0.040 0.000 0.050 0.000 text.py:47(_wrap_text)
76566 0.040 0.000 0.696 0.000 fromnumeric.py:826(argsort)
52423 0.040 0.000 0.088 0.000 artist.py:326(pchanged)
76190 0.039 0.000 0.206 0.000 {method 'max' of 'numpy.ndarray' objects}
225770 0.039 0.000 0.039 0.000 artist.py:730(get_visible)
16 0.039 0.002 0.039 0.002 {fromImage}
76567/74783 0.038 0.000 0.156 0.000 transforms.py:2567(get_matrix)
13590 0.038 0.000 3.853 0.000 backend_agg.py:143(draw_path)
50744 0.038 0.000 0.117 0.000 transforms.py:2145(transform_non_affine)
23556 0.038 0.000 0.049 0.000 markers.py:211(__bool__)
49630 0.038 0.000 0.038 0.000 {built-in method math.sin}
2726 0.037 0.000 0.083 0.000 ticker.py:648(_compute_offset)
14452 0.037 0.000 0.126 0.000 artist.py:851(update)
16 0.037 0.002 0.037 0.002 {method 'tostring_bgra' of 'matplotlib.backends._backend_agg.RendererAgg' objects}
307479 0.036 0.000 0.036 0.000 {method 'remove' of 'set' objects}
3688 0.036 0.000 0.036 0.000 {built-in method numpy.fft.fftpack_lite.rfftf}
135165 0.036 0.000 0.036 0.000 text.py:1267(get_usetex)
5746 0.035 0.000 0.167 0.000 text.py:189(__init__)
39912 0.035 0.000 0.102 0.000 transforms.py:2130(_get_is_affine)
5532 0.035 0.000 0.180 0.000 fftpack.py:47(_raw_fft)
67026 0.034 0.000 0.226 0.000 text.py:1159(set_x)
3214 0.034 0.000 0.038 0.000 transforms.py:2747(nonsingular)
1844 0.033 0.000 0.344 0.000 signaltools.py:282(fftconvolve)
53539 0.033 0.000 0.051 0.000 six.py:580(iteritems)
44654 0.033 0.000 0.184 0.000 transforms.py:2249(get_matrix)
183074 0.033 0.000 0.033 0.000 path.py:221(vertices)
765/1 0.033 0.000 97.510 97.510 {built-in method builtins.exec}
10626 0.033 0.000 0.033 0.000 {built-in method numpy.core.multiarray.arange}
27236 0.032 0.000 0.071 0.000 ticker.py:537(fix_minus)
70356 0.032 0.000 0.032 0.000 {method 'get_width_height' of 'matplotlib.ft2font.FT2Font' objects}
307416 0.032 0.000 0.032 0.000 {method 'values' of 'dict' objects}
8165 0.031 0.000 0.165 0.000 transforms.py:402(_get_bounds)
8134 0.030 0.000 0.030 0.000 {built-in method numpy.core.multiarray.concatenate}
2726 0.030 0.000 0.030 0.000 {method 'ptp' of 'numpy.ndarray' objects}
1816 0.030 0.000 2.414 0.001 axis.py:2017(get_tick_space)
461 0.030 0.000 1.215 0.003 wavelets.py:311(cwt)
6272 0.030 0.000 0.148 0.000 transforms.py:1678(__eq__)
14538/7269 0.030 0.000 0.379 0.000 transforms.py:2400(inverted)
117780 0.030 0.000 0.045 0.000 image.py:130(<genexpr>)
157314 0.029 0.000 0.029 0.000 {method 'strip' of 'str' objects}
8450 0.029 0.000 0.087 0.000 lines.py:1086(set_linestyle)
3632 0.029 0.000 0.296 0.000 ticker.py:635(set_locs)
922 0.028 0.000 0.037 0.000 _base.py:2400(<listcomp>)
68916 0.028 0.000 0.347 0.000 _methods.py:40(_all)
5748 0.028 0.000 0.030 0.000 font_manager.py:848(set_weight)
7304 0.028 0.000 0.065 0.000 numeric.py:2667(seterr)
3632 0.028 0.000 0.194 0.000 axis.py:915(<listcomp>)
5993 0.027 0.000 1.008 0.000 signaltools.py:688(convolve)
1816 0.027 0.000 0.499 0.000 axis.py:1815(_update_label_position)
39924 0.027 0.000 0.049 0.000 transforms.py:2659(get_matrix)
3632 0.027 0.000 0.119 0.000 path.py:528(get_extents)
1387 0.026 0.000 0.026 0.000 {method 'take' of 'numpy.ndarray' objects}
11276/11196 0.026 0.000 0.052 0.000 spines.py:404(get_spine_transform)
1761/1703 0.026 0.000 0.070 0.000 {built-in method builtins.__build_class__}
906 0.025 0.000 51.397 0.057 figure.py:1091(draw)
47843 0.025 0.000 0.088 0.000 contextlib.py:79(__enter__)
76370 0.025 0.000 0.025 0.000 transforms.py:1018(get_points)
62497 0.025 0.000 0.211 0.000 text.py:1168(set_y)
45008 0.024 0.000 0.024 0.000 {method 'split' of 'str' objects}
3632 0.024 0.000 0.595 0.000 axis.py:1764(_get_pixel_distance_along_axis)
24510 0.024 0.000 0.166 0.000 ticker.py:546(__call__)
522 0.024 0.000 0.042 0.000 <frozen importlib._bootstrap_external>:830(get_data)
55308 0.024 0.000 0.036 0.000 transforms.py:1666(__array__)
2726 0.023 0.000 0.029 0.000 ticker.py:1608(scale_range)
16898 0.023 0.000 0.040 0.000 lines.py:1054(_split_drawstyle_linestyle)
1816 0.023 0.000 0.457 0.000 axis.py:2143(_update_label_position)
34428 0.023 0.000 0.023 0.000 backend_bases.py:1049(set_linewidth)
158077 0.023 0.000 0.023 0.000 {method 'lower' of 'str' objects}
4562 0.023 0.000 0.023 0.000 {method 'round' of 'numpy.ndarray' objects}
24223 0.023 0.000 0.198 0.000 transforms.py:2471(composite_transform_factory)
20838 0.023 0.000 0.672 0.000 transforms.py:2716(get_transformed_points_and_affine)
16985 0.023 0.000 0.640 0.000 markers.py:223(set_fillstyle)
5748 0.023 0.000 0.029 0.000 font_manager.py:885(set_size)
7304 0.022 0.000 0.023 0.000 numeric.py:2767(geterr)
20838 0.022 0.000 0.043 0.000 lines.py:911(get_markeredgecolor)
5993 0.022 0.000 0.094 0.000 signaltools.py:562(choose_conv_method)
82713 0.022 0.000 0.022 0.000 figure.py:411(_get_dpi)
207615 0.022 0.000 0.022 0.000 transforms.py:1709(get_affine)
23526 0.021 0.000 0.041 0.000 lines.py:1233(set_xdata)
3632 0.021 0.000 0.422 0.000 axis.py:2098(_get_pixel_distance_along_axis)
84058 0.021 0.000 0.021 0.000 backend_bases.py:1102(get_hatch_path)
84058 0.021 0.000 0.021 0.000 backend_bases.py:858(get_clip_path)
24139 0.021 0.000 0.221 0.000 transforms.py:1173(__add__)
17076 0.021 0.000 0.057 0.000 artist.py:634(set_figure)
9294 0.020 0.000 0.060 0.000 artist.py:856(_update_property)
82246 0.020 0.000 0.020 0.000 backend_bases.py:982(set_clip_path)
84058 0.020 0.000 0.020 0.000 backend_bases.py:868(get_dashes)
23556 0.020 0.000 0.377 0.000 lines.py:744(_get_transformed_path)
47818 0.019 0.000 0.019 0.000 backend_agg.py:265(get_canvas_width_height)
7248 0.019 0.000 1.069 0.000 spines.py:278(draw)
106370 0.019 0.000 0.019 0.000 {method 'startswith' of 'str' objects}
1844 0.019 0.000 0.019 0.000 {built-in method numpy.fft.fftpack_lite.rfftb}
29288 0.019 0.000 0.019 0.000 {method 'ravel' of 'numpy.ndarray' objects}
461 0.019 0.000 12.032 0.026 _peak_finding.py:420(find_peaks_cwt)
1860/1856 0.019 0.000 0.696 0.000 axis.py:414(_get_tick1line)
3696 0.019 0.000 0.019 0.000 {method 'sort' of 'list' objects}
461 0.019 0.000 12.059 0.026 msplot.py:201(findPeaks)
21811 0.018 0.000 0.162 0.000 transforms.py:1791(inverted)
5993 0.018 0.000 0.040 0.000 signaltools.py:451(_fftconv_faster)
1860 0.018 0.000 0.295 0.000 axis.py:381(_get_text1)
5452 0.018 0.000 0.033 0.000 ticker.py:191(_divmod)
3632 0.018 0.000 0.020 0.000 {built-in method matplotlib._path.get_path_extents}
522 0.018 0.000 0.018 0.000 {method 'read' of '_io.FileIO' objects}
319 0.018 0.000 0.047 0.000 doccer.py:12(docformat)
2726 0.017 0.000 0.023 0.000 ticker.py:690(_set_orderOfMagnitude)
13690 0.017 0.000 0.030 0.000 abc.py:178(__instancecheck__)
99260 0.017 0.000 0.017 0.000 {built-in method math.radians}
84058 0.017 0.000 0.017 0.000 artist.py:624(get_path_effects)
1860 0.017 0.000 0.485 0.000 axis.py:440(_get_gridline)
119986 0.017 0.000 0.017 0.000 {method 'get_descent' of 'matplotlib.ft2font.FT2Font' objects}
461 0.017 0.000 0.053 0.000 _peak_finding.py:16(_boolrelextrema)
19980 0.017 0.000 0.131 0.000 axis.py:282(set_label2)
11558 0.017 0.000 0.087 0.000 font_manager.py:970(_normalize_font_family)
11747 0.017 0.000 0.021 0.000 transforms.py:367(_get_intervalx)
445 0.017 0.000 28.444 0.064 backend_bases.py:2095(print_figure)
8491 0.017 0.000 0.017 0.000 cbook.py:752(is_numlike)
20838 0.017 0.000 0.272 0.000 markers.py:277(get_transform)
49630 0.017 0.000 0.017 0.000 {method 'get_bitmap_offset' of 'matplotlib.ft2font.FT2Font' objects}
111486 0.016 0.000 0.016 0.000 path.py:273(should_simplify)
20838 0.016 0.000 0.833 0.000 backend_agg.py:122(draw_markers)
34428 0.016 0.000 0.016 0.000 backend_bases.py:1040(set_joinstyle)
7618 0.016 0.000 0.130 0.000 transforms.py:1957(translate)
1820 0.016 0.000 0.030 0.000 _base.py:3733(get_children)
19980 0.015 0.000 0.130 0.000 axis.py:271(set_label1)
10880 0.015 0.000 0.107 0.000 spines.py:138(get_patch_transform)
8066 0.015 0.000 0.149 0.000 shape_base.py:182(vstack)
11280 0.015 0.000 0.015 0.000 {built-in method _bisect.bisect_left}
2726 0.015 0.000 3.907 0.001 ticker.py:1788(tick_values)
82246 0.015 0.000 0.015 0.000 artist.py:520(get_gid)
108520 0.015 0.000 0.015 0.000 backend_bases.py:232(close_group)
9832 0.015 0.000 0.049 0.000 lines.py:653(set_data)
16748/9260 0.015 0.000 0.045 0.000 _base.py:688(get_xaxis_transform)
108520 0.015 0.000 0.015 0.000 backend_bases.py:224(open_group)
9378 0.015 0.000 0.220 0.000 transforms.py:1770(transform_point)
891 0.015 0.000 0.985 0.001 figure.py:414(_set_dpi)
1844 0.014 0.000 0.022 0.000 signaltools.py:272(_centered)
84058 0.014 0.000 0.014 0.000 backend_bases.py:927(get_snap)
1 0.014 0.014 97.510 97.510 example.py:1(<module>)
5532 0.014 0.000 0.014 0.000 _peak_finding.py:311(<listcomp>)
8449 0.014 0.000 0.022 0.000 lines.py:1458(set_dash_capstyle)
10210 0.014 0.000 0.062 0.000 {built-in method builtins.any}
93385 0.014 0.000 0.014 0.000 path.py:235(codes)
5532 0.014 0.000 0.058 0.000 helper.py:257(put_twiddle_factors)
8462 0.014 0.000 0.027 0.000 lines.py:39(_get_dash_pattern)
84058 0.014 0.000 0.014 0.000 backend_bases.py:1110(get_hatch_color)
910 0.014 0.000 1.102 0.001 axis.py:2354(get_tick_space)
49630 0.014 0.000 0.014 0.000 {built-in method math.cos}
20838 0.014 0.000 0.019 0.000 lines.py:542(get_fillstyle)
49629 0.014 0.000 0.014 0.000 axis.py:705(get_scale)
2726 0.014 0.000 3.926 0.001 ticker.py:1784(__call__)
23556 0.013 0.000 0.145 0.000 transforms.py:2743(get_affine)
84058 0.013 0.000 0.013 0.000 backend_bases.py:1128(get_sketch_params)
465 0.013 0.000 0.013 0.000 {method 'read' of '_io.BufferedReader' objects}
890 0.013 0.000 0.013 0.000 _base.py:2398(<listcomp>)
5532 0.013 0.000 0.014 0.000 fftpack.py:613(_cook_nd_args)
3748 0.013 0.000 0.156 0.000 markers.py:721(_set_tickdown)
17 0.013 0.001 0.013 0.001 {built-in method _winapi.CreateProcess}
40105 0.013 0.000 0.034 0.000 transforms.py:2626(get_matrix)
1816 0.013 0.000 0.273 0.000 axis.py:1853(_update_offset_text_position)
6304 0.013 0.000 0.062 0.000 fromnumeric.py:1973(all)
8650 0.013 0.000 0.016 0.000 transforms.py:374(_get_intervaly)
58690 0.013 0.000 0.013 0.000 backend_bases.py:1065(set_url)
8449 0.013 0.000 0.487 0.000 lines.py:1156(set_marker)
8536 0.013 0.000 0.560 0.000 markers.py:163(__init__)
10880 0.013 0.000 0.091 0.000 patches.py:230(get_patch_transform)
1339 0.013 0.000 0.720 0.001 figure.py:686(set_size_inches)
1820 0.013 0.000 0.044 0.000 transforms.py:1036(set)
4149 0.013 0.000 0.177 0.000 numeric.py:978(convolve)
8066 0.013 0.000 0.104 0.000 shape_base.py:237(<listcomp>)
1860/1856 0.013 0.000 0.577 0.000 axis.py:425(_get_tick2line)
14224 0.013 0.000 0.043 0.000 artist.py:341(set_transform)
5990 0.012 0.000 0.033 0.000 text.py:238(update)
84058 0.012 0.000 0.012 0.000 backend_bases.py:1122(get_hatch_linewidth)
5748 0.012 0.000 0.015 0.000 font_manager.py:867(set_stretch)
52545 0.012 0.000 0.012 0.000 path.py:280(should_simplify)
18997 0.012 0.000 0.028 0.000 lines.py:1243(set_ydata)
23972 0.012 0.000 0.012 0.000 signaltools.py:419(_numeric_arrays)
3748 0.012 0.000 0.144 0.000 markers.py:715(_set_tickup)
1816 0.012 0.000 0.138 0.000 _base.py:1389(apply_aspect)
34428 0.012 0.000 0.012 0.000 backend_bases.py:967(set_capstyle)
9262 0.012 0.000 0.061 0.000 artist.py:919(set_zorder)
15708 0.012 0.000 0.012 0.000 _weakrefset.py:70(__contains__)
5632 0.012 0.000 0.082 0.000 transforms.py:2648(__init__)
14075 0.012 0.000 0.052 0.000 axis.py:291(_set_artist_props)
8449 0.012 0.000 0.447 0.000 lines.py:548(set_fillstyle)
82246 0.011 0.000 0.011 0.000 backend_bases.py:827(restore)
8449 0.011 0.000 0.019 0.000 lines.py:1039(set_linewidth)
1844 0.011 0.000 0.071 0.000 fftpack.py:380(irfft)
1816 0.011 0.000 0.034 0.000 axis.py:2181(_update_offset_text_position)
1860 0.011 0.000 0.082 0.000 _base.py:713(get_xaxis_text1_transform)
1860 0.011 0.000 0.207 0.000 axis.py:398(_get_text2)
47824 0.011 0.000 0.011 0.000 text.py:808(get_color)
906 0.011 0.000 51.941 0.057 backend_agg.py:453(draw)
3632 0.011 0.000 0.025 0.000 ticker.py:603(get_offset)
5523 0.011 0.000 0.034 0.000 helper.py:317(_check_size)
1 0.011 0.011 0.017 0.017 backend_qt5.py:458(__init__)
13590 0.011 0.000 0.025 0.000 backend_bases.py:994(set_dashes)
16 0.010 0.001 0.010 0.001 {built-in method drawPixmap}
16933 0.010 0.000 0.019 0.000 lines.py:68(_scale_dashes)
5532 0.010 0.000 0.016 0.000 helper.py:283(pop_twiddle_factors)
7264 0.010 0.000 0.024 0.000 axis.py:1958(get_view_interval)
217 0.010 0.000 0.010 0.000 {built-in method numpy.core.multiarray.fromstring}
7264 0.010 0.000 0.034 0.000 text.py:1150(set_position)
10904 0.010 0.000 0.010 0.000 {method 'item' of 'numpy.generic' objects}
1352 0.010 0.000 0.531 0.000 backend_agg.py:468(get_renderer)
8449 0.010 0.000 0.014 0.000 lines.py:1222(set_markersize)
8449 0.010 0.000 0.038 0.000 lines.py:753(set_transform)
47818 0.010 0.000 0.010 0.000 text.py:630(get_wrap)
13590 0.010 0.000 0.019 0.000 artist.py:534(get_snap)
68524 0.010 0.000 0.010 0.000 {method 'items' of 'dict' objects}
52545 0.010 0.000 0.010 0.000 path.py:262(simplify_threshold)
7240 0.010 0.000 0.010 0.000 msplot.py:382(toSeconds)
45386 0.009 0.000 0.009 0.000 {built-in method builtins.abs}
24510 0.009 0.000 0.009 0.000 transforms.py:2799(interval_contains)
14452 0.009 0.000 0.069 0.000 artist.py:884(<listcomp>)
8449 0.009 0.000 0.015 0.000 lines.py:1419(set_dash_joinstyle)
4508 0.009 0.000 0.045 0.000 fromnumeric.py:1886(any)
3688 0.009 0.000 0.164 0.000 fftpack.py:1013(rfftn)
47818 0.009 0.000 0.009 0.000 artist.py:723(get_alpha)
7305 0.009 0.000 0.009 0.000 {built-in method numpy.core.umath.seterrobj}
23972 0.009 0.000 0.013 0.000 signaltools.py:482(<genexpr>)
1 0.009 0.009 0.009 0.009 pyparsing.py:1080(ParserElement)
3809 0.009 0.000 0.202 0.000 transforms.py:1947(rotate_deg_around)
15115 0.009 0.000 0.009 0.000 {method 'extend' of 'list' objects}
3812 0.009 0.000 0.063 0.000 transforms.py:2550(__init__)
2252 0.009 0.000 0.014 0.000 linalg.py:139(_commonType)
8453 0.009 0.000 0.011 0.000 lines.py:640(axes)
3632 0.009 0.000 0.090 0.000 transforms.py:1700(transform_path_affine)
3692 0.009 0.000 0.016 0.000 numerictypes.py:728(issubdtype)
3633 0.008 0.000 0.049 0.000 axis.py:1317(get_major_ticks)
1860/1852 0.008 0.000 2.415 0.001 axis.py:1724(_get_tick)
34451 0.008 0.000 0.008 0.000 text.py:312(get_rotation_mode)
466 0.008 0.000 0.136 0.000 _base.py:3111(set_ylim)
16 0.008 0.001 0.099 0.006 backend_qt5agg.py:76(paintEvent)
955 0.008 0.000 0.235 0.000 axis.py:575(_get_gridline)
955/951 0.008 0.000 0.318 0.000 axis.py:546(_get_tick1line)
2828 0.008 0.000 0.008 0.000 {built-in method builtins.sorted}
58941 0.008 0.000 0.008 0.000 path.py:254(simplify_threshold)
4413 0.008 0.000 0.008 0.000 {method 'astype' of 'numpy.ndarray' objects}
11558 0.008 0.000 0.008 0.000 font_manager.py:974(<listcomp>)
3632 0.008 0.000 4.554 0.001 axis.py:969(<listcomp>)
1860 0.008 0.000 0.068 0.000 _base.py:741(get_xaxis_text2_transform)
8449 0.008 0.000 0.013 0.000 lines.py:1472(set_solid_capstyle)
992 0.008 0.000 0.089 0.000 <frozen importlib._bootstrap_external>:1233(find_spec)
34428 0.008 0.000 0.008 0.000 backend_bases.py:1077(set_snap)
8449 0.008 0.000 0.012 0.000 lines.py:1432(set_solid_joinstyle)
3688 0.007 0.000 0.136 0.000 fftpack.py:291(rfft)
1844 0.007 0.000 0.012 0.000 signaltools.py:385(<listcomp>)
1860 0.007 0.000 0.026 0.000 axis.py:367(apply_tickdir)
5523 0.007 0.000 0.017 0.000 helper.py:318(<listcomp>)
7608 0.007 0.000 0.017 0.000 core.py:629(filled)
7541 0.007 0.000 0.007 0.000 {method 'splitlines' of 'str' objects}
49630 0.007 0.000 0.007 0.000 backend_bases.py:703(flipy)
2726 0.007 0.000 0.035 0.000 ticker.py:1535(le)
3652 0.007 0.000 0.008 0.000 numeric.py:3060(__init__)
1 0.007 0.007 85.944 85.944 msplot.py:315(makeAnimation)
8179 0.007 0.000 0.007 0.000 {built-in method math.log10}
8449 0.007 0.000 0.012 0.000 lines.py:1019(set_drawstyle)
5849 0.007 0.000 0.042 0.000 {method 'any' of 'numpy.ndarray' objects}
9 0.007 0.001 0.007 0.001 {built-in method _winapi.WaitForSingleObject}
3652 0.007 0.000 0.031 0.000 numeric.py:3069(__exit__)
334 0.007 0.000 0.012 0.000 doccer.py:128(indentcount_lines)
1818 0.007 0.000 0.071 0.000 _base.py:866(set_position)
1678 0.007 0.000 0.007 0.000 {method 'searchsorted' of 'numpy.ndarray' objects}
891 0.007 0.000 0.890 0.001 transforms.py:1902(clear)
19971 0.007 0.000 0.007 0.000 artist.py:244(axes)
955 0.007 0.000 0.123 0.000 axis.py:516(_get_text1)
8603/4735 0.007 0.000 0.025 0.000 _base.py:768(get_yaxis_transform)
4546 0.007 0.000 0.015 0.000 axis.py:2294(get_view_interval)
3666 0.007 0.000 0.009 0.000 patches.py:698(get_path)
3652 0.007 0.000 0.047 0.000 numeric.py:3064(__enter__)
1812 0.007 0.000 1.945 0.001 lines.py:1290(_draw_solid)
955/951 0.007 0.000 0.289 0.000 axis.py:561(_get_tick2line)
5862 0.007 0.000 0.011 0.000 text.py:994(set_color)
1400 0.007 0.000 0.007 0.000 {built-in method devicePixelRatio}
1940 0.006 0.000 0.081 0.000 markers.py:701(_set_tickleft)
5532 0.006 0.000 0.042 0.000 helper.py:311(_prune_cache)
5993 0.006 0.000 0.013 0.000 signaltools.py:672(<listcomp>)
461 0.006 0.000 0.018 0.000 msplot.py:239(updateAuxPlot)
8449 0.006 0.000 0.011 0.000 lines.py:1000(set_antialiased)
1940 0.006 0.000 0.073 0.000 markers.py:707(_set_tickright)
5748 0.006 0.000 0.035 0.000 font_manager.py:813(set_family)
5035 0.006 0.000 0.008 0.000 <frozen importlib._bootstrap>:402(parent)
1837 0.006 0.000 0.006 0.000 {method 'remove' of 'list' objects}
5425 0.006 0.000 0.012 0.000 transforms.py:2382(transform_path_non_affine)
8449 0.006 0.000 0.011 0.000 lines.py:1186(set_markeredgewidth)
27886 0.006 0.000 0.006 0.000 backend_bases.py:976(set_clip_rectangle)
461 0.006 0.000 12.907 0.028 animation.py:1552(_draw_frame)
7562 0.006 0.000 0.006 0.000 {method 'expandtabs' of 'str' objects}
20838 0.006 0.000 0.006 0.000 markers.py:286(get_snap_threshold)
903 0.006 0.000 0.013 0.000 inspect.py:2092(_signature_from_function)
5452 0.006 0.000 0.007 0.000 ticker.py:1514(closeto)
20929 0.005 0.000 0.005 0.000 markers.py:220(get_fillstyle)
22592 0.005 0.000 0.005 0.000 markers.py:289(_set_nothing)
5746 0.005 0.000 0.011 0.000 text.py:1254(set_usetex)
3632 0.005 0.000 0.252 0.000 transforms.py:1425(transform_path)
20838 0.005 0.000 0.005 0.000 lines.py:613(get_markevery)
955 0.005 0.000 0.102 0.000 axis.py:531(_get_text2)
1339 0.005 0.000 0.678 0.001 transforms.py:983(_set_p1)
1824 0.005 0.000 0.014 0.000 transforms.py:349(_get_ymax)
3632 0.005 0.000 0.006 0.000 axis.py:1340(get_minor_ticks)
14610 0.005 0.000 0.005 0.000 {built-in method numpy.core.umath.geterrobj}
2346/2345 0.005 0.000 0.035 0.000 cbook.py:546(process)
522 0.005 0.000 0.006 0.000 <frozen importlib._bootstrap_external>:430(_validate_bytecode_header)
3632 0.005 0.000 0.181 0.000 transforms.py:1436(transform_path_affine)
1 0.005 0.005 0.005 0.005 msplot.py:183(<listcomp>)
8449 0.005 0.000 0.009 0.000 lines.py:1198(set_markerfacecolor)
1818 0.005 0.000 0.044 0.000 transforms.py:278(frozen)
20838 0.005 0.000 0.005 0.000 markers.py:280(get_alt_path)
1844 0.005 0.000 0.084 0.000 fftpack.py:1142(irfftn)
955 0.005 0.000 0.038 0.000 _base.py:793(get_yaxis_text1_transform)
8461 0.005 0.000 0.007 0.000 cbook.py:720(is_hashable)
16 0.005 0.000 0.005 0.000 {built-in method eraseRect}
5452 0.005 0.000 0.005 0.000 ticker.py:1523(__init__)
445 0.005 0.000 54.016 0.121 animation.py:311(grab_frame)
7264 0.005 0.000 0.005 0.000 text.py:895(get_position)
955/947 0.005 0.000 1.130 0.001 axis.py:2055(_get_tick)
4538 0.005 0.000 0.292 0.000 transforms.py:282(__array__)
3 0.005 0.002 0.005 0.002 backend_agg.py:85(__init__)
372/145 0.005 0.000 0.011 0.000 sre_parse.py:470(_parse)
20838 0.005 0.000 0.005 0.000 markers.py:239(get_joinstyle)
2726 0.005 0.000 0.005 0.000 {method 'nonzero' of 'numpy.ndarray' objects}
4114 0.005 0.000 0.005 0.000 {method 'mro' of 'type' objects}
2252 0.004 0.000 0.006 0.000 linalg.py:209(_assertNdSquareness)
445 0.004 0.000 53.333 0.120 figure.py:1471(savefig)
1337 0.004 0.000 0.004 0.000 {built-in method resize}
11074 0.004 0.000 0.004 0.000 {method 'pop' of 'collections.OrderedDict' objects}
5748 0.004 0.000 0.007 0.000 font_manager.py:826(set_style)
14792/14788 0.004 0.000 0.005 0.000 {method 'join' of 'str' objects}
8461 0.004 0.000 0.008 0.000 lines.py:1010(set_color)
906 0.004 0.000 0.040 0.000 backend_bases.py:1815(draw_event)
2726 0.004 0.000 0.016 0.000 ticker.py:1551(ge)
853 0.004 0.000 0.006 0.000 _base.py:2817(get_xlim)
11292/11196 0.004 0.000 0.021 0.000 spines.py:148(_ensure_position_is_set)
8449 0.004 0.000 0.004 0.000 lines.py:558(set_markevery)
4149 0.004 0.000 0.005 0.000 numeric.py:904(_mode_from_name)
20838 0.004 0.000 0.004 0.000 markers.py:242(get_capstyle)
8449 0.004 0.000 0.008 0.000 lines.py:1210(set_markerfacecoloralt)
8449 0.004 0.000 0.008 0.000 lines.py:1174(set_markeredgecolor)
17983 0.004 0.000 0.004 0.000 {built-in method math.log}
461 0.004 0.000 0.004 0.000 msplot.py:205(<listcomp>)
712 0.004 0.000 0.105 0.000 <frozen importlib._bootstrap>:861(_find_spec)
1 0.004 0.004 0.004 0.004 backend_qt5.py:121(_create_qApp)
2819 0.004 0.000 0.115 0.000 lines.py:983(get_path)
3636 0.004 0.000 0.005 0.000 transforms.py:299(_get_y0)
1 0.004 0.004 12.966 12.966 msplot.py:163(<listcomp>)
955 0.004 0.000 0.033 0.000 _base.py:820(get_yaxis_text2_transform)
20925 0.004 0.000 0.004 0.000 markers.py:245(get_marker)
1266 0.004 0.000 0.005 0.000 inspect.py:2710(__init__)
1335 0.004 0.000 0.008 0.000 backend_qt5.py:544(resize)
760/4 0.004 0.000 0.768 0.192 <frozen importlib._bootstrap>:958(_find_and_load)
5986 0.004 0.000 0.004 0.000 {built-in method builtins.divmod}
1860 0.004 0.000 0.072 0.000 axis.py:364(_get_text2_transform)
3632 0.004 0.000 0.005 0.000 ticker.py:1425(__call__)
1816 0.004 0.000 0.048 0.000 _base.py:859(get_position)
3809 0.004 0.000 0.631 0.000 patches.py:720(get_patch_transform)
933 0.004 0.000 0.006 0.000 figure.py:78(as_list)
522 0.004 0.000 0.131 0.000 <frozen importlib._bootstrap_external>:743(get_code)
20838 0.004 0.000 0.004 0.000 markers.py:274(get_path)
22092 0.004 0.000 0.004 0.000 helper.py:318(<genexpr>)
5746 0.003 0.000 0.006 0.000 text.py:298(set_rotation_mode)
461 0.003 0.000 0.003 0.000 _peak_finding.py:294(<listcomp>)
955 0.003 0.000 0.013 0.000 axis.py:501(apply_tickdir)
2718 0.003 0.000 0.117 0.000 transforms.py:2727(get_transformed_path_and_affine)
2252 0.003 0.000 0.007 0.000 linalg.py:106(_makearray)
24 0.003 0.000 0.016 0.001 __init__.py:1060(_rc_params_in_file)
2239 0.003 0.000 0.006 0.000 _base.py:2938(get_xscale)
13590 0.003 0.000 0.003 0.000 backend_bases.py:956(set_antialiased)
2726 0.003 0.000 0.038 0.000 fromnumeric.py:2133(ptp)
8008 0.003 0.000 0.003 0.000 {method 'rpartition' of 'str' objects}
13590 0.003 0.000 0.003 0.000 artist.py:568(get_sketch_params)
1860 0.003 0.000 0.086 0.000 axis.py:361(_get_text1_transform)
1 0.003 0.003 66.841 66.841 animation.py:896(save)
5748 0.003 0.000 0.005 0.000 font_manager.py:838(set_variant)
5640 0.003 0.000 0.006 0.000 font_manager.py:1084(get_default_size)
1227/903 0.003 0.000 0.020 0.000 inspect.py:2173(_signature_from_callable)
925 0.003 0.000 0.018 0.000 patches.py:320(_set_facecolor)
2726 0.003 0.000 0.012 0.000 fromnumeric.py:1487(nonzero)
4668 0.003 0.000 0.008 0.000 <frozen importlib._bootstrap_external>:57(_path_join)
1044 0.003 0.000 0.009 0.000 <frozen importlib._bootstrap_external>:263(cache_from_source)
10880 0.003 0.000 0.003 0.000 spines.py:145(get_path)
461 0.003 0.000 12.900 0.028 msplot.py:363(update)
5993 0.003 0.000 0.003 0.000 signaltools.py:440(_prod)
2718 0.003 0.000 0.012 0.000 lines.py:1343(_get_rgba_ln_color)
445 0.003 0.000 53.322 0.120 backend_qt5agg.py:221(print_figure)
65 0.003 0.000 0.003 0.000 {built-in method nt.listdir}
1844 0.003 0.000 0.005 0.000 helper.py:51(next_fast_len)
2816 0.003 0.000 0.009 0.000 artist.py:820(set_alpha)
15114/15063 0.003 0.000 0.003 0.000 {built-in method builtins.issubclass}
1 0.003 0.003 0.009 0.009 msplot.py:91(<listcomp>)
3666 0.003 0.000 0.003 0.000 path.py:634(unit_rectangle)
2726 0.003 0.000 0.003 0.000 ticker.py:1291(raise_if_exceeds)
2252 0.003 0.000 0.003 0.000 linalg.py:101(get_linalg_error_extobj)
5849 0.003 0.000 0.035 0.000 _methods.py:37(_any)
683/133 0.003 0.000 0.010 0.000 sre_compile.py:64(_compile)
1844 0.003 0.000 0.003 0.000 signaltools.py:386(<listcomp>)
890 0.003 0.000 0.022 0.000 figure.py:775(set_facecolor)
5579 0.003 0.000 0.003 0.000 {method 'pop' of 'list' objects}
2718 0.003 0.000 2.104 0.001 lines.py:1266(_draw_lines)
4668 0.003 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:59(<listcomp>)
906 0.003 0.000 0.156 0.000 lines.py:1295(_draw_dashed)
64 0.003 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:1067(_path_hooks)
635 0.003 0.000 0.013 0.000 <frozen importlib._bootstrap>:493(_init_module_attrs)
533 0.003 0.000 0.011 0.000 inspect.py:1079(getfullargspec)
2726 0.003 0.000 0.003 0.000 text.py:836(get_size)
2831 0.003 0.000 0.003 0.000 axis.py:175(get_tick_padding)
760/4 0.002 0.000 0.768 0.192 <frozen importlib._bootstrap>:931(_find_and_load_unlocked)
461 0.002 0.000 0.002 0.000 msplot.py:206(<listcomp>)
896 0.002 0.000 0.007 0.000 figure.py:726(get_size_inches)
1 0.002 0.002 0.002 0.002 msplot.py:97(<listcomp>)
639/4 0.002 0.000 0.766 0.192 <frozen importlib._bootstrap>:641(_load_unlocked)
1846 0.002 0.000 0.013 0.000 cbook.py:2554(safe_first_element)
2616 0.002 0.000 0.003 0.000 inspect.py:2431(__init__)
1 0.002 0.002 0.002 0.002 msplot.py:99(<listcomp>)
3632 0.002 0.000 0.002 0.000 ticker.py:283(set_locs)
1 0.002 0.002 0.027 0.027 netcdf.py:626(_read_var_array)
2 0.002 0.001 0.002 0.001 {built-in method statusBar}
474 0.002 0.000 0.004 0.000 _base.py:3093(get_ylim)
1820 0.002 0.000 0.003 0.000 transforms.py:292(_get_x0)
1800 0.002 0.000 0.047 0.000 transforms.py:1403(get_matrix)
8961 0.002 0.000 0.002 0.000 transforms.py:2045(get_matrix)
1093 0.002 0.000 0.005 0.000 <frozen importlib._bootstrap>:159(_get_module_lock)
488 0.002 0.000 0.002 0.000 {method 'sub' of '_sre.SRE_Pattern' objects}
466 0.002 0.000 0.096 0.000 transforms.py:993(_set_intervaly)
95 0.002 0.000 0.067 0.001 _distn_infrastructure.py:1484(__init__)
1844 0.002 0.000 0.002 0.000 signaltools.py:278(<listcomp>)
4149 0.002 0.000 0.002 0.000 signaltools.py:495(_np_conv_ok)
68 0.002 0.000 0.002 0.000 {built-in method io.open}
1 0.002 0.002 0.012 0.012 msplot.py:96(<listcomp>)
904 0.002 0.000 0.469 0.001 backend_agg.py:311(clear)
1 0.002 0.002 0.002 0.002 msplot.py:98(<listcomp>)
1 0.002 0.002 0.002 0.002 msplot.py:100(<listcomp>)
693 0.002 0.000 0.098 0.000 <frozen importlib._bootstrap_external>:1117(_get_spec)
287 0.002 0.000 0.003 0.000 sre_compile.py:250(_optimize_charset)
12157 0.002 0.000 0.002 0.000 {built-in method builtins.callable}
1093 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:77(acquire)
1044 0.002 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:63(_path_split)
2 0.002 0.001 0.002 0.001 msplot.py:198(<listcomp>)
5746 0.002 0.000 0.002 0.000 text.py:636(set_wrap)
2252 0.002 0.000 0.002 0.000 linalg.py:198(_assertRankAtLeast2)
419 0.002 0.000 0.002 0.000 {built-in method matplotlib._path.is_sorted}
1987 0.002 0.000 0.002 0.000 {method 'format' of 'str' objects}
4504 0.002 0.000 0.003 0.000 linalg.py:111(isComplexType)
1400 0.002 0.000 0.008 0.000 backend_qt5.py:249(_dpi_ratio)
955 0.002 0.000 0.036 0.000 axis.py:498(_get_text2_transform)
1820 0.002 0.000 0.003 0.000 _base.py:3215(get_yscale)
2718 0.002 0.000 0.002 0.000 lines.py:1498(is_dashed)
461 0.002 0.000 0.002 0.000 {built-in method update}
445 0.002 0.000 24.875 0.056 backend_qt5agg.py:170(draw)
1572 0.002 0.000 0.002 0.000 {built-in method _thread.allocate_lock}
1093 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:102(release)
896 0.002 0.000 0.003 0.000 transforms.py:327(_get_p1)
461 0.002 0.000 0.002 0.000 _peak_finding.py:520(<listcomp>)
931 0.002 0.000 0.008 0.000 figure.py:406(_get_axes)
522/4 0.002 0.000 0.766 0.192 <frozen importlib._bootstrap_external>:672(exec_module)
5748 0.002 0.000 0.002 0.000 font_manager.py:907(set_file)
408 0.002 0.000 0.002 0.000 {method 'search' of '_sre.SRE_Pattern' objects}
8 0.002 0.000 0.002 0.000 backend_qt5.py:587(_icon)
16696 0.002 0.000 0.002 0.000 {method 'lstrip' of 'str' objects}
1818 0.002 0.000 0.002 0.000 _base.py:916(get_axes_locator)
635 0.002 0.000 0.003 0.000 <frozen importlib._bootstrap>:304(__exit__)
1742 0.002 0.000 0.016 0.000 __init__.py:909(__setitem__)
7343 0.002 0.000 0.002 0.000 {method 'values' of 'collections.OrderedDict' objects}
616 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:524(spec_from_file_location)
1803/1802 0.002 0.000 0.003 0.000 transforms.py:2337(__eq__)
3692 0.002 0.000 0.002 0.000 numerictypes.py:660(issubclass_)
925 0.002 0.000 0.007 0.000 patches.py:292(_set_edgecolor)
11 0.002 0.000 0.012 0.001 artist.py:1145(_get_setters_and_targets)
43 0.002 0.000 0.002 0.000 {built-in method builtins.dir}
7837 0.002 0.000 0.002 0.000 signaltools.py:80(_inputs_swap_needed)
955 0.002 0.000 0.040 0.000 axis.py:495(_get_text1_transform)
459 0.002 0.000 12.853 0.028 animation.py:1095(_draw_next_frame)
472 0.002 0.000 0.003 0.000 axis.py:717(limit_range_for_scale)
5230 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap>:208(_verbose_message)
331 0.002 0.000 0.015 0.000 _util.py:269(getargspec_no_self)
10452 0.002 0.000 0.002 0.000 {method 'rstrip' of 'str' objects}
10724 0.002 0.000 0.003 0.000 mathtext.py:2765(<genexpr>)
4523 0.002 0.000 0.002 0.000 sre_parse.py:232(__next)
606/32 0.001 0.000 0.007 0.000 pyparsing.py:1347(_parseNoCache)
1 0.001 0.001 0.001 0.001 {built-in method _pickle.load}
906 0.001 0.000 0.002 0.000 ticker.py:1396(__call__)
108 0.001 0.000 0.021 0.000 _distn_infrastructure.py:626(_construct_argparser)
2252 0.001 0.000 0.003 0.000 linalg.py:124(_realType)
1427 0.001 0.000 0.004 0.000 enum.py:801(__and__)
922 0.001 0.000 0.001 0.000 {built-in method numpy.core.multiarray.where}
1080/533 0.001 0.000 0.002 0.000 sre_parse.py:173(getwidth)
480 0.001 0.000 0.003 0.000 cbook.py:1761(get_siblings)
906 0.001 0.000 0.002 0.000 backend_bases.py:1371(__init__)
3173 0.001 0.000 0.002 0.000 enum.py:515(__new__)
912 0.001 0.000 0.019 0.000 patches.py:327(set_facecolor)
358 0.001 0.000 0.003 0.000 colors.py:151(_to_rgba_no_colorcycle)
459 0.001 0.000 0.002 0.000 animation.py:1118(_post_draw)
843 0.001 0.000 0.007 0.000 _base.py:2772(get_xbound)
2 0.001 0.001 0.001 0.001 {method 'readlines' of '_io._IOBase' objects}
908 0.001 0.000 0.001 0.000 {method 'acquire' of '_thread.RLock' objects}
80 0.001 0.000 0.027 0.000 __init__.py:359(namedtuple)
522 0.001 0.000 0.060 0.000 <frozen importlib._bootstrap_external>:485(_compile_bytecode)
16 0.001 0.000 0.003 0.000 enum.py:124(__new__)
1050 0.001 0.000 0.001 0.000 {method 'rsplit' of 'str' objects}
1920 0.001 0.000 0.001 0.000 {built-in method numpy.core.multiarray.result_type}
2328 0.001 0.000 0.080 0.000 <frozen importlib._bootstrap_external>:75(_path_stat)
5532 0.001 0.000 0.001 0.000 fftpack.py:95(_unitary)
906 0.001 0.000 0.002 0.000 figure.py:1128(<listcomp>)
635/504 0.001 0.000 0.150 0.000 <frozen importlib._bootstrap>:553(module_from_spec)
108 0.001 0.000 0.046 0.000 _distn_infrastructure.py:706(_construct_doc)
3185 0.001 0.000 0.005 0.000 enum.py:265(__call__)
760 0.001 0.000 0.007 0.000 <frozen importlib._bootstrap>:146(__enter__)
912 0.001 0.000 0.008 0.000 patches.py:307(set_edgecolor)
445 0.001 0.000 0.001 0.000 figure.py:747(get_facecolor)
64 0.001 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:1281(_fill_cache)
113 0.001 0.000 0.001 0.000 {built-in method _codecs.charmap_decode}
466 0.001 0.000 0.002 0.000 axis.py:2320(get_minpos)
3670 0.001 0.000 0.002 0.000 sre_parse.py:253(get)
616 0.001 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:1228(_get_spec)
64 0.001 0.000 0.005 0.000 colors.py:665(from_list)
2054 0.001 0.000 0.001 0.000 {built-in method builtins.setattr}
19 0.001 0.000 0.001 0.000 {built-in method _imp.create_builtin}
932 0.001 0.000 0.001 0.000 backend_bases.py:1346(__init__)
484 0.001 0.000 0.001 0.000 cbook.py:1685(clean)
1812 0.001 0.000 0.001 0.000 backend_bases.py:1717(is_saving)
755 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap>:57(__init__)
890 0.001 0.000 0.009 0.000 figure.py:767(set_edgecolor)
814 0.001 0.000 0.036 0.000 <frozen importlib._bootstrap_external>:85(_path_is_mode_type)
3632 0.001 0.000 0.001 0.000 ticker.py:1428(tick_values)
3480 0.001 0.000 0.001 0.000 inspect.py:2755(<genexpr>)
3632 0.001 0.000 0.001 0.000 axis.py:921(<listcomp>)
616 0.001 0.000 0.007 0.000 <frozen importlib._bootstrap_external>:361(_get_cached)
437 0.001 0.000 0.001 0.000 function_base.py:2674(__init__)
2648 0.001 0.000 0.001 0.000 sre_parse.py:163(__getitem__)
933 0.001 0.000 0.001 0.000 figure.py:82(<listcomp>)
324 0.001 0.000 0.002 0.000 inspect.py:1777(_signature_bound_method)
304/133 0.001 0.000 0.012 0.000 sre_parse.py:407(_parse_sub)
1816 0.001 0.000 0.001 0.000 _base.py:1251(get_aspect)
143 0.001 0.000 0.024 0.000 artist.py:667(set_clip_path)
435 0.001 0.000 0.003 0.000 copy.py:66(copy)
4 0.001 0.000 0.001 0.000 {built-in method nt.open}
3474 0.001 0.000 0.001 0.000 {built-in method builtins.ord}
1138 0.001 0.000 0.007 0.000 <frozen importlib._bootstrap>:389(cached)
55 0.001 0.000 0.003 0.000 {built-in method builtins.eval}
890 0.001 0.000 0.004 0.000 figure.py:808(set_frameon)
462 0.001 0.000 0.003 0.000 numeric.py:150(ones)
1 0.001 0.001 0.001 0.001 msplot.py:177(<listcomp>)
2252 0.001 0.000 0.001 0.000 {method '__array_prepare__' of 'numpy.ndarray' objects}
445 0.001 0.000 0.001 0.000 backend_bases.py:2073(_get_output_canvas)
1 0.001 0.001 0.001 0.001 mmio.py:106(MMFile)
145 0.001 0.000 0.001 0.000 artist.py:953(update_from)
2718 0.001 0.000 0.001 0.000 backend_agg.py:314(option_image_nocomposite)
1077 0.001 0.000 0.006 0.000 <frozen importlib._bootstrap_external>:1080(_path_importer_cache)
1 0.001 0.001 0.006 0.006 machar.py:116(_do_init)
300/18 0.001 0.000 0.005 0.000 pyparsing.py:1520(_parseCache)
11 0.001 0.000 0.001 0.000 artist.py:1099(<listcomp>)
906 0.001 0.000 0.001 0.000 ticker.py:1399(tick_values)
1812 0.001 0.000 0.001 0.000 artist.py:913(get_zorder)
2718 0.001 0.000 0.001 0.000 backend_bases.py:1055(set_linestyle)
908 0.001 0.000 0.001 0.000 {method 'release' of '_thread.RLock' objects}
1 0.001 0.001 0.030 0.030 backend_qt5.py:1(<module>)
405 0.001 0.000 0.003 0.000 artist.py:1116(get_valid_values)
906 0.001 0.000 0.001 0.000 figure.py:421(get_tight_layout)
39 0.001 0.000 0.004 0.000 __init__.py:1696(param)
2 0.001 0.000 0.001 0.000 {built-in method scipy.ndimage._nd_image.correlate1d}
717 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:355(__init__)
1 0.001 0.001 0.002 0.002 _fitpack_impl.py:23(<module>)
133 0.001 0.000 0.028 0.000 sre_compile.py:557(compile)
42 0.001 0.000 0.001 0.000 {built-in method matplotlib._path.point_in_path}
60 0.001 0.000 0.001 0.000 function_base.py:25(linspace)
980 0.001 0.000 0.001 0.000 {method 'update' of 'dict' objects}
4 0.001 0.000 0.001 0.000 {method 'close' of '_io.BufferedRandom' objects}
333 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap>:178(_lock_unlock_module)
2104 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:838(__exit__)
522 0.001 0.000 0.015 0.000 <frozen importlib._bootstrap_external>:840(path_stats)
133 0.001 0.000 0.002 0.000 sre_compile.py:482(_compile_info)
16 0.001 0.000 0.001 0.000 {singleShot}
693 0.001 0.000 0.098 0.000 <frozen importlib._bootstrap_external>:1149(find_spec)
686/684 0.001 0.000 0.001 0.000 pyparsing.py:349(__init__)
522 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:35(_new_module)
485/43 0.001 0.000 0.637 0.015 {built-in method builtins.__import__}
1 0.001 0.001 0.001 0.001 __init__.py:3026(Scrollbar)
287 0.001 0.000 0.004 0.000 sre_compile.py:223(_compile_charset)
419 0.001 0.000 0.003 0.000 lines.py:764(_is_sorted)
8 0.001 0.000 0.001 0.000 {built-in method addAction}
240 0.001 0.000 0.001 0.000 ntpath.py:121(splitdrive)
236 0.001 0.000 0.001 0.000 pyparsing.py:1121(__init__)
461 0.001 0.000 0.003 0.000 patches.py:744(set_x)
1 0.001 0.001 0.001 0.001 _mathtext_data.py:3(<module>)
20 0.001 0.000 0.206 0.010 __init__.py:1(<module>)
2 0.001 0.000 0.012 0.006 msplot.py:173(makeAuxData)
2104 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:834(__enter__)
18 0.000 0.000 0.000 0.000 {built-in method _thread.start_new_thread}
760 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap>:153(__exit__)
5769 0.000 0.000 0.000 0.000 inspect.py:2480(name)
448 0.000 0.000 0.004 0.000 rcsetup.py:375(validate_color)
1044 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:52(_r_long)
2021 0.000 0.000 0.001 0.000 inspect.py:159(isfunction)
102 0.000 0.000 0.030 0.000 _axes.py:568(text)
749 0.000 0.000 0.035 0.000 <frozen importlib._bootstrap_external>:94(_path_isfile)
446 0.000 0.000 0.000 0.000 animation.py:338(_frame_sink)
522 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:393(_check_name_wrapper)
3197 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock}
933/5 0.000 0.000 0.766 0.153 <frozen importlib._bootstrap>:197(_call_with_frames_removed)
6080 0.000 0.000 0.000 0.000 inspect.py:2492(kind)
1064 0.000 0.000 0.001 0.000 {built-in method from_bytes}
435 0.000 0.000 0.001 0.000 copy.py:268(_reconstruct)
1 0.000 0.000 0.000 0.000 tz.py:334(tzfile)
470 0.000 0.000 0.000 0.000 transforms.py:1014(_get_minposy)
64 0.000 0.000 0.001 0.000 cbook.py:1406(popall)
133 0.000 0.000 0.014 0.000 sre_parse.py:844(parse)
180/32 0.000 0.000 0.006 0.000 pyparsing.py:3375(parseImpl)
462 0.000 0.000 0.001 0.000 backend_qt5agg.py:179(draw_idle)
11 0.000 0.000 0.000 0.000 {built-in method builtins.compile}
1 0.000 0.000 0.001 0.001 records.py:36(<module>)
1270 0.000 0.000 0.000 0.000 colors.py:203(<genexpr>)
11 0.000 0.000 0.016 0.001 artist.py:1226(pprint_setters)
2540 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:307(<genexpr>)
461 0.000 0.000 0.002 0.000 patches.py:771(set_width)
1515 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects}
314 0.000 0.000 0.000 0.000 enum.py:351(__setattr__)
992 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:37(_relax_case)
1030 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects}
635 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:297(__enter__)
35 0.000 0.000 0.000 0.000 {built-in method _winapi.CreatePipe}
370 0.000 0.000 0.001 0.000 inspect.py:485(unwrap)
246 0.000 0.000 0.001 0.000 enum.py:70(__setitem__)
933 0.000 0.000 0.000 0.000 figure.py:84(<listcomp>)
331 0.000 0.000 0.000 0.000 _util.py:292(<listcomp>)
727 0.000 0.000 0.000 0.000 text.py:288(_get_multialignment)
2217 0.000 0.000 0.001 0.000 sre_parse.py:248(match)
1 0.000 0.000 0.072 0.072 _continuous_distns.py:5(<module>)
87 0.000 0.000 0.010 0.000 lines.py:1310(update_from)
445 0.000 0.000 0.001 0.000 figure.py:743(get_edgecolor)
11 0.000 0.000 0.003 0.000 artist.py:1087(get_aliases)
2221 0.000 0.000 0.000 0.000 {method 'values' of 'mappingproxy' objects}
48 0.000 0.000 0.002 0.000 __init__.py:1042(_open_file_or_url)
15 0.000 0.000 0.000 0.000 {built-in method nt._isdir}
56/17 0.000 0.000 0.001 0.000 abc.py:194(__subclasscheck__)
2135 0.000 0.000 0.000 0.000 {built-in method nt.fspath}
64 0.000 0.000 0.001 0.000 ticker.py:1695(_staircase)
22 0.000 0.000 0.001 0.000 {method 'emit' of 'PyQt5.QtCore.pyqtBoundSignal' objects}
363 0.000 0.000 0.002 0.000 inspect.py:2793(replace)
64 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1196(__init__)
283 0.000 0.000 0.001 0.000 function_base.py:4514(add_newdoc)
1475 0.000 0.000 0.001 0.000 artist.py:1183(is_alias)
693 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen}
1 0.000 0.000 0.002 0.002 pyplot.py:2197(_setup_pyplot_info_docstrings)
2967 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects}
760 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:142(__init__)
331 0.000 0.000 0.000 0.000 _util.py:306(<listcomp>)
934 0.000 0.000 0.000 0.000 sre_parse.py:285(tell)
108 0.000 0.000 0.006 0.000 _distn_infrastructure.py:591(__init__)
435 0.000 0.000 0.000 0.000 {method '__reduce_ex__' of 'object' objects}
24 0.000 0.000 0.073 0.003 axis.py:729(cla)
1250 0.000 0.000 0.000 0.000 sre_parse.py:171(append)
9 0.000 0.000 0.403 0.045 subprocess.py:1059(_communicate)
429 0.000 0.000 0.003 0.000 pyparsing.py:1144(copy)
445 0.000 0.000 0.000 0.000 patches.py:255(get_facecolor)
370 0.000 0.000 0.012 0.000 inspect.py:2779(from_callable)
446 0.000 0.000 0.000 0.000 figure.py:569(set_canvas)
2223 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident}
32 0.000 0.000 0.001 0.000 ticker.py:1676(_validate_steps)
205 0.000 0.000 0.003 0.000 cbook.py:1131(dedent)
109 0.000 0.000 0.001 0.000 functools.py:44(update_wrapper)
42 0.000 0.000 0.013 0.000 patches.py:170(contains)
17 0.000 0.000 0.015 0.001 subprocess.py:586(__init__)
70 0.000 0.000 0.001 0.000 ntpath.py:199(split)
635 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:293(__init__)
522 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename}
1 0.000 0.000 0.026 0.026 qt_compat.py:2(<module>)
686 0.000 0.000 0.000 0.000 pyparsing.py:340(__new__)
487 0.000 0.000 0.000 0.000 patches.py:248(get_edgecolor)
84/42 0.000 0.000 0.004 0.000 transforms.py:2314(frozen)
1 0.000 0.000 0.167 0.167 pyplot.py:17(<module>)
152 0.000 0.000 0.002 0.000 transforms.py:1066(__init__)
6 0.000 0.000 0.002 0.000 patches.py:1811(_pprint_styles)
1 0.000 0.000 0.000 0.000 {built-in method gc.collect}
145 0.000 0.000 0.003 0.000 transforms.py:812(unit)
21 0.000 0.000 0.001 0.000 backend_qt5.py:268(mouseEventCoords)
693 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:771(find_spec)
321 0.000 0.000 0.000 0.000 {method 'copy' of 'dict' objects}
522 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:800(__init__)
683 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__)
37 0.000 0.000 0.000 0.000 cycler.py:349(by_key)
447 0.000 0.000 0.003 0.000 colors.py:113(is_color_like)
204 0.000 0.000 0.001 0.000 shape_base.py:11(atleast_1d)
268 0.000 0.000 0.000 0.000 sre_compile.py:388(_simple)
174 0.000 0.000 0.001 0.000 pyparsing.py:732(copy)
893 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects}
1 0.000 0.000 0.058 0.058 msplot.py:169(<listcomp>)
94/58 0.000 0.000 0.137 0.002 <frozen importlib._bootstrap_external>:919(create_module)
331 0.000 0.000 0.000 0.000 _util.py:296(<listcomp>)
64 0.000 0.000 0.001 0.000 ntpath.py:74(join)
1 0.000 0.000 0.000 0.000 {built-in method addWidget}
61 0.000 0.000 0.000 0.000 sre_compile.py:378(<listcomp>)
1341 0.000 0.000 0.000 0.000 _mathtext_data.py:1756(<genexpr>)
64 0.000 0.000 0.003 0.000 ticker.py:1703(set_params)
210 0.000 0.000 0.000 0.000 text.py:577(_update_clip_properties)
18 0.000 0.000 0.001 0.000 netcdf.py:710(_read_var)
133 0.000 0.000 0.013 0.000 sre_compile.py:542(_code)
480 0.000 0.000 0.000 0.000 cbook.py:1768(<listcomp>)
2104 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock}
86 0.000 0.000 0.000 0.000 docstring.py:44(__call__)
331 0.000 0.000 0.000 0.000 _util.py:301(<listcomp>)
135 0.000 0.000 0.000 0.000 sre_parse.py:223(__init__)
2891 0.000 0.000 0.000 0.000 inspect.py:2484(default)
358 0.000 0.000 0.000 0.000 rcsetup.py:122(validate_bool)
218 0.000 0.000 0.003 0.000 rcsetup.py:359(validate_color_for_prop_cycle)
755 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:173(cb)
113 0.000 0.000 0.001 0.000 _base.py:922(_set_artist_props)
445 0.000 0.000 0.000 0.000 figure.py:763(get_frameon)
64 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1310(<setcomp>)
26 0.000 0.000 0.004 0.000 __init__.py:905(__init__)
1003 0.000 0.000 0.000 0.000 sre_parse.py:159(__len__)
35 0.000 0.000 0.000 0.000 ntpath.py:471(normpath)
241 0.000 0.000 0.000 0.000 sre_parse.py:342(_escape)
17 0.000 0.000 0.004 0.000 rcsetup.py:805(validate_cycler)
300 0.000 0.000 0.000 0.000 pyparsing.py:1465(set)
8 0.000 0.000 0.002 0.000 _base.py:2276(handle_single_axis)
22 0.000 0.000 0.003 0.000 traceback.py:313(extract)
370 0.000 0.000 0.013 0.000 inspect.py:3031(signature)
84 0.000 0.000 0.001 0.000 pyparsing.py:3238(__init__)
23 0.000 0.000 0.001 0.000 abc.py:132(__new__)
21 0.000 0.000 0.014 0.001 backend_bases.py:1441(__init__)
104 0.000 0.000 0.000 0.000 {built-in method _winapi.CloseHandle}
163 0.000 0.000 0.004 0.000 rcsetup.py:77(f)
12 0.000 0.000 0.001 0.000 enum.py:623(<listcomp>)
47 0.000 0.000 0.000 0.000 utils.py:74(__call__)
484 0.000 0.000 0.000 0.000 cbook.py:1690(<listcomp>)
2 0.000 0.000 0.000 0.000 _distn_infrastructure.py:3404(get_distribution_names)
101 0.000 0.000 0.002 0.000 rcsetup.py:98(<listcomp>)
1 0.000 0.000 0.030 0.030 msplot.py:267(<listcomp>)
600 0.000 0.000 0.000 0.000 pyparsing.py:2182(__hash__)
1 0.000 0.000 0.001 0.001 core.py:21(<module>)
350 0.000 0.000 0.000 0.000 _distn_infrastructure.py:43(instancemethod)
19 0.000 0.000 0.001 0.000 threading.py:757(__init__)
13 0.000 0.000 0.009 0.001 _distn_infrastructure.py:2663(__init__)
14 0.000 0.000 0.381 0.027 backend_bases.py:1312(_on_timer)
1110 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects}
2220 0.000 0.000 0.000 0.000 inspect.py:2785(parameters)
712 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:698(find_spec)
22 0.000 0.000 0.001 0.000 cbook.py:188(deprecate)
2 0.000 0.000 0.001 0.000 six.py:1(<module>)
1 0.000 0.000 0.000 0.000 pyplot.py:1882(get_plot_commands)
21 0.000 0.000 0.015 0.001 backend_bases.py:1943(motion_notify_event)
36 0.000 0.000 0.000 0.000 {built-in method _ctypes.POINTER}
17 0.000 0.000 0.014 0.001 subprocess.py:954(_execute_child)
160 0.000 0.000 0.005 0.000 cm.py:67(_generate_cmap)
133 0.000 0.000 0.001 0.000 sre_parse.py:828(fix_flags)
32 0.000 0.000 0.000 0.000 function_base.py:1843(diff)
64 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1322(path_hook_for_FileFinder)
262 0.000 0.000 0.000 0.000 pyparsing.py:186(__init__)
1 0.000 0.000 0.001 0.001 getlimits.py:3(<module>)
1 0.000 0.000 0.025 0.025 pyparsing.py:61(<module>)
159 0.000 0.000 0.001 0.000 enum.py:795(__or__)
102 0.000 0.000 0.001 0.000 _base.py:1801(_add_text)
16 0.000 0.000 0.226 0.014 animation.py:364(isAvailable)
155/115 0.000 0.000 0.000 0.000 sre_compile.py:414(_get_literal_prefix)
1 0.000 0.000 0.004 0.004 mathtext.py:2764(<listcomp>)
306 0.000 0.000 0.001 0.000 re.py:184(sub)
2 0.000 0.000 0.003 0.002 __init__.py:962(update)
42 0.000 0.000 0.005 0.000 path.py:487(contains_point)
225 0.000 0.000 0.000 0.000 _distn_infrastructure.py:714(<genexpr>)
16 0.000 0.000 0.000 0.000 numeric.py:2522(within_tol)
41 0.000 0.000 0.001 0.000 nosetester.py:152(__init__)