@@ -166,6 +166,8 @@ class Axes(_AxesBase):
166
166
colors :ColorType | Sequence [ColorType ]| None = ...,
167
167
linestyles :LineStyleType = ...,
168
168
label :str = ...,
169
+ * ,
170
+ data = ...,
169
171
** kwargs
170
172
)-> LineCollection : ...
171
173
def vlines (
@@ -176,6 +178,8 @@ class Axes(_AxesBase):
176
178
colors :ColorType | Sequence [ColorType ]| None = ...,
177
179
linestyles :LineStyleType = ...,
178
180
label :str = ...,
181
+ * ,
182
+ data = ...,
179
183
** kwargs
180
184
)-> LineCollection : ...
181
185
def eventplot (
@@ -188,14 +192,16 @@ class Axes(_AxesBase):
188
192
colors :ColorType | Sequence [ColorType ]| None = ...,
189
193
alpha :float | Sequence [float ]| None = ...,
190
194
linestyles :LineStyleType | Sequence [LineStyleType ]= ...,
195
+ * ,
196
+ data = ...,
191
197
** kwargs
192
198
)-> EventCollection : ...
193
199
def plot (
194
200
self ,
195
201
* args :float | ArrayLike | str ,
196
202
scalex :bool = ...,
197
203
scaley :bool = ...,
198
- data : Any | None = ...,
204
+ data = ...,
199
205
** kwargs
200
206
)-> list [Line2D ]: ...
201
207
def plot_date (
@@ -206,13 +212,15 @@ class Axes(_AxesBase):
206
212
tz :str | datetime .tzinfo | None = ...,
207
213
xdate :bool = ...,
208
214
ydate :bool = ...,
215
+ * ,
216
+ data = ...,
209
217
** kwargs
210
218
)-> list [Line2D ]: ...
211
219
def loglog (self ,* args ,** kwargs )-> list [Line2D ]: ...
212
220
def semilogx (self ,* args ,** kwargs )-> list [Line2D ]: ...
213
221
def semilogy (self ,* args ,** kwargs )-> list [Line2D ]: ...
214
222
def acorr (
215
- self ,x :ArrayLike ,** kwargs
223
+ self ,x :ArrayLike ,* , data = ..., * *kwargs
216
224
)-> tuple [np .ndarray ,np .ndarray ,LineCollection | Line2D ,Line2D | None ]: ...
217
225
def xcorr (
218
226
self ,
@@ -222,6 +230,8 @@ class Axes(_AxesBase):
222
230
detrend :Callable [[ArrayLike ],ArrayLike ]= ...,
223
231
usevlines :bool = ...,
224
232
maxlags :int = ...,
233
+ * ,
234
+ data = ...,
225
235
** kwargs
226
236
)-> tuple [np .ndarray ,np .ndarray ,LineCollection | Line2D ,Line2D | None ]: ...
227
237
def step (
@@ -230,7 +240,7 @@ class Axes(_AxesBase):
230
240
y :ArrayLike ,
231
241
* args ,
232
242
where :Literal ["pre" ,"post" ,"mid" ]= ...,
233
- data : Any | None = ...,
243
+ data = ...,
234
244
** kwargs
235
245
)-> list [Line2D ]: ...
236
246
def bar (
@@ -241,6 +251,7 @@ class Axes(_AxesBase):
241
251
bottom :float | ArrayLike | None = ...,
242
252
* ,
243
253
align :Literal ["center" ,"edge" ]= ...,
254
+ data = ...,
244
255
** kwargs
245
256
)-> BarContainer : ...
246
257
def barh (
@@ -251,7 +262,7 @@ class Axes(_AxesBase):
251
262
left :float | ArrayLike | None = ...,
252
263
* ,
253
264
align :Literal ["center" ,"edge" ]= ...,
254
- data : Any | None = ...,
265
+ data = ...,
255
266
** kwargs
256
267
)-> BarContainer : ...
257
268
def bar_label (
@@ -268,6 +279,8 @@ class Axes(_AxesBase):
268
279
self ,
269
280
xranges :Sequence [tuple [float ,float ]],
270
281
yrange :tuple [float ,float ],
282
+ * ,
283
+ data = ...,
271
284
** kwargs
272
285
)-> BrokenBarHCollection : ...
273
286
def stem (
@@ -278,7 +291,8 @@ class Axes(_AxesBase):
278
291
basefmt :str | None = ...,
279
292
bottom :float = ...,
280
293
label :str | None = ...,
281
- orientation :Literal ["vertical" ,"horizontal" ]= ...
294
+ orientation :Literal ["vertical" ,"horizontal" ]= ...,
295
+ data = ...,
282
296
)-> StemContainer : ...
283
297
284
298
# TODO: data kwarg preprocessor?
@@ -302,7 +316,8 @@ class Axes(_AxesBase):
302
316
rotatelabels :bool = ...,
303
317
* ,
304
318
normalize :bool = ...,
305
- hatch :str | Sequence [str ]| None = ...
319
+ hatch :str | Sequence [str ]| None = ...,
320
+ data = ...,
306
321
): ...
307
322
def errorbar (
308
323
self ,
@@ -321,6 +336,8 @@ class Axes(_AxesBase):
321
336
xuplims :bool = ...,
322
337
errorevery :int | tuple [int ,int ]= ...,
323
338
capthick :float | None = ...,
339
+ * ,
340
+ data = ...,
324
341
** kwargs
325
342
)-> ErrorbarContainer : ...
326
343
def boxplot (
@@ -352,6 +369,8 @@ class Axes(_AxesBase):
352
369
autorange :bool = ...,
353
370
zorder :float | None = ...,
354
371
capwidths :float | ArrayLike | None = ...,
372
+ * ,
373
+ data = ...,
355
374
)-> dict [str ,Any ]: ...
356
375
def bxp (
357
376
self ,
@@ -392,6 +411,7 @@ class Axes(_AxesBase):
392
411
* ,
393
412
edgecolors :Literal ["face" ,"none" ]| ColorType | Sequence [ColorType ]| None = ...,
394
413
plotnonfinite :bool = ...,
414
+ data = ...,
395
415
** kwargs
396
416
)-> PathCollection : ...
397
417
def hexbin (
@@ -414,6 +434,8 @@ class Axes(_AxesBase):
414
434
reduce_C_function :Callable [[np .ndarray ],float ]= ...,
415
435
mincnt :int | None = ...,
416
436
marginals :bool = ...,
437
+ * ,
438
+ data = ...,
417
439
** kwargs
418
440
)-> PolyCollection : ...
419
441
def arrow (
@@ -422,9 +444,9 @@ class Axes(_AxesBase):
422
444
def quiverkey (
423
445
self ,Q :Quiver ,X :float ,Y :float ,U :float ,label :str ,** kwargs
424
446
)-> QuiverKey : ...
425
- def quiver (self ,* args ,** kwargs )-> Quiver : ...
426
- def barbs (self ,* args ,** kwargs )-> Barbs : ...
427
- def fill (self ,* args ,data : Any | None = ...,** kwargs )-> list [Polygon ]: ...
447
+ def quiver (self ,* args ,data = ..., ** kwargs )-> Quiver : ...
448
+ def barbs (self ,* args ,data = ..., ** kwargs )-> Barbs : ...
449
+ def fill (self ,* args ,data = ...,** kwargs )-> list [Polygon ]: ...
428
450
def fill_between (
429
451
self ,
430
452
x :ArrayLike ,
@@ -433,6 +455,8 @@ class Axes(_AxesBase):
433
455
where :Sequence [bool ]| None = ...,
434
456
interpolate :bool = ...,
435
457
step :Literal ["pre" ,"post" ,"mid" ]| None = ...,
458
+ * ,
459
+ data = ...,
436
460
** kwargs
437
461
)-> PolyCollection : ...
438
462
def fill_betweenx (
@@ -443,6 +467,8 @@ class Axes(_AxesBase):
443
467
where :Sequence [bool ]| None = ...,
444
468
step :Literal ["pre" ,"post" ,"mid" ]| None = ...,
445
469
interpolate :bool = ...,
470
+ * ,
471
+ data = ...,
446
472
** kwargs
447
473
)-> PolyCollection : ...
448
474
def imshow (
@@ -463,6 +489,7 @@ class Axes(_AxesBase):
463
489
filterrad :float = ...,
464
490
resample :bool | None = ...,
465
491
url :str | None = ...,
492
+ data = ...,
466
493
** kwargs
467
494
)-> AxesImage : ...
468
495
def pcolor (
@@ -474,6 +501,7 @@ class Axes(_AxesBase):
474
501
cmap :str | Colormap | None = ...,
475
502
vmin :float | None = ...,
476
503
vmax :float | None = ...,
504
+ data = ...,
477
505
** kwargs
478
506
)-> Collection : ...
479
507
def pcolormesh (
@@ -486,6 +514,7 @@ class Axes(_AxesBase):
486
514
vmax :float | None = ...,
487
515
shading :Literal ["flat" ,"nearest" ,"gouraud" ,"auto" ]| None = ...,
488
516
antialiased :bool = ...,
517
+ data = ...,
489
518
** kwargs
490
519
)-> QuadMesh : ...
491
520
def pcolorfast (
@@ -496,10 +525,11 @@ class Axes(_AxesBase):
496
525
cmap :str | Colormap | None = ...,
497
526
vmin :float | None = ...,
498
527
vmax :float | None = ...,
528
+ data = ...,
499
529
** kwargs
500
530
)-> AxesImage | PcolorImage | QuadMesh : ...
501
- def contour (self ,* args ,** kwargs )-> QuadContourSet : ...
502
- def contourf (self ,* args ,** kwargs )-> QuadContourSet : ...
531
+ def contour (self ,* args ,data = ..., ** kwargs )-> QuadContourSet : ...
532
+ def contourf (self ,* args ,data = ..., ** kwargs )-> QuadContourSet : ...
503
533
def clabel (
504
534
self ,CS :ContourSet ,levels :ArrayLike | None = ...,** kwargs
505
535
)-> list [Text ]: ...
@@ -520,6 +550,8 @@ class Axes(_AxesBase):
520
550
color :ColorType | Sequence [ColorType ]| None = ...,
521
551
label :str | Sequence [str ]| None = ...,
522
552
stacked :bool = ...,
553
+ * ,
554
+ data = ...,
523
555
** kwargs
524
556
)-> tuple [
525
557
np .ndarray | list [np .ndarray ],
@@ -534,6 +566,7 @@ class Axes(_AxesBase):
534
566
orientation :Literal ["vertical" ,"horizontal" ]= ...,
535
567
baseline :float | ArrayLike = ...,
536
568
fill :bool = ...,
569
+ data = ...,
537
570
** kwargs
538
571
)-> StepPatch : ...
539
572
def hist2d (
@@ -550,6 +583,8 @@ class Axes(_AxesBase):
550
583
weights :ArrayLike | None = ...,
551
584
cmin :float | None = ...,
552
585
cmax :float | None = ...,
586
+ * ,
587
+ data = ...,
553
588
** kwargs
554
589
)-> tuple [np .ndarray ,np .ndarray ,np .ndarray ,QuadMesh ]: ...
555
590
def ecdf (
@@ -560,6 +595,7 @@ class Axes(_AxesBase):
560
595
complementary :bool = ...,
561
596
orientation :Literal ["vertical" ,"horizonatal" ]= ...,
562
597
compress :bool = ...,
598
+ data = ...,
563
599
** kwargs
564
600
)-> Line2D : ...
565
601
def psd (
@@ -577,6 +613,8 @@ class Axes(_AxesBase):
577
613
sides :Literal ["default" ,"onesided" ,"twosided" ]| None = ...,
578
614
scale_by_freq :bool | None = ...,
579
615
return_line :bool | None = ...,
616
+ * ,
617
+ data = ...,
580
618
** kwargs
581
619
)-> tuple [np .ndarray ,np .ndarray ]| tuple [np .ndarray ,np .ndarray ,Line2D ]: ...
582
620
def csd (
@@ -595,6 +633,8 @@ class Axes(_AxesBase):
595
633
sides :Literal ["default" ,"onesided" ,"twosided" ]| None = ...,
596
634
scale_by_freq :bool | None = ...,
597
635
return_line :bool | None = ...,
636
+ * ,
637
+ data = ...,
598
638
** kwargs
599
639
)-> tuple [np .ndarray ,np .ndarray ]| tuple [np .ndarray ,np .ndarray ,Line2D ]: ...
600
640
def magnitude_spectrum (
@@ -606,6 +646,8 @@ class Axes(_AxesBase):
606
646
pad_to :int | None = ...,
607
647
sides :Literal ["default" ,"onesided" ,"twosided" ]| None = ...,
608
648
scale :Literal ["default" ,"linear" ,"dB" ]| None = ...,
649
+ * ,
650
+ data = ...,
609
651
** kwargs
610
652
)-> tuple [np .ndarray ,np .ndarray ,Line2D ]: ...
611
653
def angle_spectrum (
@@ -616,6 +658,8 @@ class Axes(_AxesBase):
616
658
window :Callable [[ArrayLike ],ArrayLike ]| ArrayLike | None = ...,
617
659
pad_to :int | None = ...,
618
660
sides :Literal ["default" ,"onesided" ,"twosided" ]| None = ...,
661
+ * ,
662
+ data = ...,
619
663
** kwargs
620
664
)-> tuple [np .ndarray ,np .ndarray ,Line2D ]: ...
621
665
def phase_spectrum (
@@ -626,6 +670,8 @@ class Axes(_AxesBase):
626
670
window :Callable [[ArrayLike ],ArrayLike ]| ArrayLike | None = ...,
627
671
pad_to :int | None = ...,
628
672
sides :Literal ["default" ,"onesided" ,"twosided" ]| None = ...,
673
+ * ,
674
+ data = ...,
629
675
** kwargs
630
676
)-> tuple [np .ndarray ,np .ndarray ,Line2D ]: ...
631
677
def cohere (
@@ -642,6 +688,8 @@ class Axes(_AxesBase):
642
688
pad_to :int | None = ...,
643
689
sides :Literal ["default" ,"onesided" ,"twosided" ]= ...,
644
690
scale_by_freq :bool | None = ...,
691
+ * ,
692
+ data = ...,
645
693
** kwargs
646
694
)-> tuple [np .ndarray ,np .ndarray ]: ...
647
695
def specgram (
@@ -664,6 +712,8 @@ class Axes(_AxesBase):
664
712
scale :Literal ["default" ,"linear" ,"dB" ]| None = ...,
665
713
vmin :float | None = ...,
666
714
vmax :float | None = ...,
715
+ * ,
716
+ data = ...,
667
717
** kwargs
668
718
)-> tuple [np .ndarray ,np .ndarray ,np .ndarray ,AxesImage ]: ...
669
719
def spy (
@@ -692,6 +742,8 @@ class Axes(_AxesBase):
692
742
| float
693
743
| Callable [[GaussianKDE ],float ]
694
744
| None = ...,
745
+ * ,
746
+ data = ...,
695
747
)-> dict [str ,Collection ]: ...
696
748
def violin (
697
749
self ,