@@ -2379,8 +2379,8 @@ def angle_spectrum(
2379
2379
2380
2380
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2381
2381
@docstring .copy_dedent (Axes .annotate )
2382
- def annotate (* args , ** kwargs ):
2383
- return gca ().annotate (* args , ** kwargs )
2382
+ def annotate (s , xy , * args , ** kwargs ):
2383
+ return gca ().annotate (s , xy , * args , ** kwargs )
2384
2384
2385
2385
2386
2386
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2427,10 +2427,12 @@ def axvspan(xmin, xmax, ymin=0, ymax=1, **kwargs):
2427
2427
2428
2428
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2429
2429
@docstring .copy_dedent (Axes .bar )
2430
- def bar (* args , data = None , ** kwargs ):
2430
+ def bar (
2431
+ x , height , width = 0.8 , bottom = None , * , align = 'center' ,
2432
+ data = None , ** kwargs ):
2431
2433
return gca ().bar (
2432
- * args , ** ({ "data" : data } if data is not None else {}) ,
2433
- ** kwargs )
2434
+ x , height , width = width , bottom = bottom , align = align ,
2435
+ ** ({ "data" : data } if data is not None else {}), ** kwargs )
2434
2436
2435
2437
2436
2438
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2442,8 +2444,9 @@ def barbs(*args, data=None, **kw):
2442
2444
2443
2445
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2444
2446
@docstring .copy_dedent (Axes .barh )
2445
- def barh (* args , ** kwargs ):
2446
- return gca ().barh (* args , ** kwargs )
2447
+ def barh (y , width , height = 0.8 , left = None , * , align = 'center' , ** kwargs ):
2448
+ return gca ().barh (
2449
+ y , width , height = height , left = left , align = align , ** kwargs )
2447
2450
2448
2451
2449
2452
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2707,8 +2710,8 @@ def magnitude_spectrum(
2707
2710
2708
2711
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2709
2712
@docstring .copy_dedent (Axes .margins )
2710
- def margins (* args , ** kw ):
2711
- return gca ().margins (* args , ** kw )
2713
+ def margins (* margins , x = None , y = None , tight = True ):
2714
+ return gca ().margins (* margins , x = x , y = y , tight = tight )
2712
2715
2713
2716
2714
2717
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2725,20 +2728,27 @@ def minorticks_on():
2725
2728
2726
2729
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2727
2730
@_autogen_docstring (Axes .pcolor )
2728
- def pcolor (* args , data = None , ** kwargs ):
2731
+ def pcolor (
2732
+ * args , alpha = None , norm = None , cmap = None , vmin = None ,
2733
+ vmax = None , data = None , ** kwargs ):
2729
2734
__ret = gca ().pcolor (
2730
- * args , ** ({"data" : data } if data is not None else {}),
2735
+ * args , alpha = alpha , norm = norm , cmap = cmap , vmin = vmin ,
2736
+ vmax = vmax , ** ({"data" : data } if data is not None else {}),
2731
2737
** kwargs )
2732
2738
sci (__ret )
2733
2739
return __ret
2734
2740
2735
2741
2736
2742
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2737
2743
@_autogen_docstring (Axes .pcolormesh )
2738
- def pcolormesh (* args , data = None , ** kwargs ):
2744
+ def pcolormesh (
2745
+ * args , alpha = None , norm = None , cmap = None , vmin = None ,
2746
+ vmax = None , shading = 'flat' , antialiased = False , data = None ,
2747
+ ** kwargs ):
2739
2748
__ret = gca ().pcolormesh (
2740
- * args , ** ({"data" : data } if data is not None else {}),
2741
- ** kwargs )
2749
+ * args , alpha = alpha , norm = norm , cmap = cmap , vmin = vmin ,
2750
+ vmax = vmax , shading = shading , antialiased = antialiased ,
2751
+ ** ({"data" : data } if data is not None else {}), ** kwargs )
2742
2752
sci (__ret )
2743
2753
return __ret
2744
2754
@@ -2773,10 +2783,10 @@ def pie(
2773
2783
2774
2784
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2775
2785
@docstring .copy_dedent (Axes .plot )
2776
- def plot (* args , data = None , ** kwargs ):
2786
+ def plot (* args , scalex = True , scaley = True , data = None , ** kwargs ):
2777
2787
return gca ().plot (
2778
- * args , ** ({"data" : data } if data is not None else {}),
2779
- ** kwargs )
2788
+ * args , scalex = scalex , scaley = scaley , ** ({"data" : data } if data
2789
+ is not None else {}), ** kwargs )
2780
2790
2781
2791
2782
2792
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2813,8 +2823,8 @@ def quiver(*args, data=None, **kw):
2813
2823
2814
2824
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2815
2825
@docstring .copy_dedent (Axes .quiverkey )
2816
- def quiverkey (* args , ** kw ):
2817
- return gca ().quiverkey (* args , ** kw )
2826
+ def quiverkey (Q , X , Y , U , label , ** kw ):
2827
+ return gca ().quiverkey (Q , X , Y , U , label , ** kw )
2818
2828
2819
2829
2820
2830
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2883,18 +2893,21 @@ def stackplot(x, *args, data=None, **kwargs):
2883
2893
2884
2894
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2885
2895
@docstring .copy_dedent (Axes .stem )
2886
- def stem (* args , data = None , ** kwargs ):
2896
+ def stem (
2897
+ * args , linefmt = None , markerfmt = None , basefmt = None , bottom = 0 ,
2898
+ label = None , data = None ):
2887
2899
return gca ().stem (
2888
- * args , ** ({"data" : data } if data is not None else {}),
2889
- ** kwargs )
2900
+ * args , linefmt = linefmt , markerfmt = markerfmt , basefmt = basefmt ,
2901
+ bottom = bottom , label = label , ** ({"data" : data } if data is not
2902
+ None else {}))
2890
2903
2891
2904
2892
2905
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2893
2906
@docstring .copy_dedent (Axes .step )
2894
- def step (x , y , * args , data = None , ** kwargs ):
2907
+ def step (x , y , * args , where = 'pre' , data = None , ** kwargs ):
2895
2908
return gca ().step (
2896
- x , y , * args , ** ({"data" : data } if data is not None else {}),
2897
- ** kwargs )
2909
+ x , y , * args , where = where , ** ({"data" : data } if data is not
2910
+ None else {}), ** kwargs )
2898
2911
2899
2912
2900
2913
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2936,8 +2949,13 @@ def tick_params(axis='both', **kwargs):
2936
2949
2937
2950
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2938
2951
@docstring .copy_dedent (Axes .ticklabel_format )
2939
- def ticklabel_format (** kwargs ):
2940
- return gca ().ticklabel_format (** kwargs )
2952
+ def ticklabel_format (
2953
+ * , axis = 'both' , style = '' , scilimits = None , useOffset = None ,
2954
+ useLocale = None , useMathText = None ):
2955
+ return gca ().ticklabel_format (
2956
+ axis = axis , style = style , scilimits = scilimits ,
2957
+ useOffset = useOffset , useLocale = useLocale ,
2958
+ useMathText = useMathText )
2941
2959
2942
2960
2943
2961
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
0 commit comments