@@ -2259,8 +2259,12 @@ def axvspan(xmin, xmax, ymin=0, ymax=1, **kwargs):
2259
2259
2260
2260
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2261
2261
@docstring .copy_dedent (Axes .bar )
2262
- def bar (* args , data = None , ** kwargs ):
2263
- return gca ().bar (* args , data = data , ** kwargs )
2262
+ def bar (
2263
+ x , height , width = 0.8 , bottom = None , * , align = 'center' ,
2264
+ data = None , ** kwargs ):
2265
+ return gca ().bar (
2266
+ x = x , height = height , width = width , bottom = bottom , align = align ,
2267
+ data = data , ** kwargs )
2264
2268
2265
2269
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2266
2270
@docstring .copy_dedent (Axes .barbs )
@@ -2269,8 +2273,10 @@ def barbs(*args, data=None, **kw):
2269
2273
2270
2274
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2271
2275
@docstring .copy_dedent (Axes .barh )
2272
- def barh (* args , ** kwargs ):
2273
- return gca ().barh (* args , ** kwargs )
2276
+ def barh (y , width , height = 0.8 , left = None , * , align = 'center' , ** kwargs ):
2277
+ return gca ().barh (
2278
+ y = y , width = width , height = height , left = left , align = align ,
2279
+ ** kwargs )
2274
2280
2275
2281
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2276
2282
@docstring .copy_dedent (Axes .boxplot )
@@ -2496,8 +2502,8 @@ def magnitude_spectrum(
2496
2502
2497
2503
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2498
2504
@docstring .copy_dedent (Axes .margins )
2499
- def margins (* args , ** kw ):
2500
- return gca ().margins (* args , ** kw )
2505
+ def margins (* margins , x = None , y = None , tight = True ):
2506
+ return gca ().margins (* margins , x = x , y = y , tight = tight )
2501
2507
2502
2508
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2503
2509
@docstring .copy_dedent (Axes .minorticks_off )
@@ -2511,15 +2517,25 @@ def minorticks_on():
2511
2517
2512
2518
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2513
2519
@_autogen_docstring (Axes .pcolor )
2514
- def pcolor (* args , data = None , ** kwargs ):
2515
- __ret = gca ().pcolor (* args , data = data , ** kwargs )
2520
+ def pcolor (
2521
+ * args , alpha = None , norm = None , cmap = None , vmin = None ,
2522
+ vmax = None , data = None , ** kwargs ):
2523
+ __ret = gca ().pcolor (
2524
+ * args , alpha = alpha , norm = norm , cmap = cmap , vmin = vmin ,
2525
+ vmax = vmax , data = data , ** kwargs )
2516
2526
sci (__ret )
2517
2527
return __ret
2518
2528
2519
2529
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2520
2530
@_autogen_docstring (Axes .pcolormesh )
2521
- def pcolormesh (* args , data = None , ** kwargs ):
2522
- __ret = gca ().pcolormesh (* args , data = data , ** kwargs )
2531
+ def pcolormesh (
2532
+ * args , alpha = None , norm = None , cmap = None , vmin = None ,
2533
+ vmax = None , shading = 'flat' , antialiased = False , data = None ,
2534
+ ** kwargs ):
2535
+ __ret = gca ().pcolormesh (
2536
+ * args , alpha = alpha , norm = norm , cmap = cmap , vmin = vmin ,
2537
+ vmax = vmax , shading = shading , antialiased = antialiased ,
2538
+ data = data , ** kwargs )
2523
2539
sci (__ret )
2524
2540
return __ret
2525
2541
@@ -2550,8 +2566,9 @@ def pie(
2550
2566
2551
2567
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2552
2568
@docstring .copy_dedent (Axes .plot )
2553
- def plot (* args , data = None , ** kwargs ):
2554
- return gca ().plot (* args , data = data , ** kwargs )
2569
+ def plot (* args , scalex = True , scaley = True , data = None , ** kwargs ):
2570
+ return gca ().plot (
2571
+ * args , scalex = scalex , scaley = scaley , data = data , ** kwargs )
2555
2572
2556
2573
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2557
2574
@docstring .copy_dedent (Axes .plot_date )
@@ -2642,13 +2659,19 @@ def stackplot(x, *args, data=None, **kwargs):
2642
2659
2643
2660
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2644
2661
@docstring .copy_dedent (Axes .stem )
2645
- def stem (* args , data = None , ** kwargs ):
2646
- return gca ().stem (* args , data = data , ** kwargs )
2662
+ def stem (
2663
+ * args , linefmt = None , markerfmt = None , basefmt = None , bottom = 0 ,
2664
+ label = None , data = None ):
2665
+ return gca ().stem (
2666
+ * args , linefmt = linefmt , markerfmt = markerfmt , basefmt = basefmt ,
2667
+ bottom = bottom , label = label , data = data )
2647
2668
2648
2669
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2649
2670
@docstring .copy_dedent (Axes .step )
2650
- def step (x , y , * args , data = None , ** kwargs ):
2651
- return gca ().step (x = x , y = y , * args , data = data , ** kwargs )
2671
+ def step (x , y , * args , where = 'pre' , linestyle = '' , data = None , ** kwargs ):
2672
+ return gca ().step (
2673
+ x = x , y = y , * args , where = where , linestyle = linestyle , data = data ,
2674
+ ** kwargs )
2652
2675
2653
2676
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2654
2677
@_autogen_docstring (Axes .streamplot )
@@ -2685,8 +2708,13 @@ def tick_params(axis='both', **kwargs):
2685
2708
2686
2709
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2687
2710
@docstring .copy_dedent (Axes .ticklabel_format )
2688
- def ticklabel_format (** kwargs ):
2689
- return gca ().ticklabel_format (** kwargs )
2711
+ def ticklabel_format (
2712
+ * , axis = 'both' , style = '' , scilimits = None , useOffset = None ,
2713
+ useLocale = None , useMathText = None ):
2714
+ return gca ().ticklabel_format (
2715
+ axis = axis , style = style , scilimits = scilimits ,
2716
+ useOffset = useOffset , useLocale = useLocale ,
2717
+ useMathText = useMathText )
2690
2718
2691
2719
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2692
2720
@_autogen_docstring (Axes .tricontour )
0 commit comments