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