@@ -2269,8 +2269,12 @@ def axvspan(xmin, xmax, ymin=0, ymax=1, **kwargs):
2269
2269
2270
2270
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2271
2271
@docstring .copy_dedent (Axes .bar )
2272
- def bar (* args ,data = None ,** kwargs ):
2273
- return gca ().bar (* args ,data = data ,** kwargs )
2272
+ def bar (
2273
+ x ,height ,width = 0.8 ,bottom = None ,* ,align = 'center' ,
2274
+ data = None ,** kwargs ):
2275
+ return gca ().bar (
2276
+ x = x ,height = height ,width = width ,bottom = bottom ,align = align ,
2277
+ data = data ,** kwargs )
2274
2278
2275
2279
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2276
2280
@docstring .copy_dedent (Axes .barbs )
@@ -2279,8 +2283,10 @@ def barbs(*args, data=None, **kw):
2279
2283
2280
2284
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2281
2285
@docstring .copy_dedent (Axes .barh )
2282
- def barh (* args ,** kwargs ):
2283
- return gca ().barh (* args ,** kwargs )
2286
+ def barh (y ,width ,height = 0.8 ,left = None ,* ,align = 'center' ,** kwargs ):
2287
+ return gca ().barh (
2288
+ y = y ,width = width ,height = height ,left = left ,align = align ,
2289
+ ** kwargs )
2284
2290
2285
2291
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2286
2292
@docstring .copy_dedent (Axes .boxplot )
@@ -2506,8 +2512,8 @@ def magnitude_spectrum(
2506
2512
2507
2513
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2508
2514
@docstring .copy_dedent (Axes .margins )
2509
- def margins (* args , ** kw ):
2510
- return gca ().margins (* args , ** kw )
2515
+ def margins (* margins , x = None , y = None , tight = True ):
2516
+ return gca ().margins (* margins , x = x , y = y , tight = tight )
2511
2517
2512
2518
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2513
2519
@docstring .copy_dedent (Axes .minorticks_off )
@@ -2521,15 +2527,25 @@ def minorticks_on():
2521
2527
2522
2528
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2523
2529
@_autogen_docstring (Axes .pcolor )
2524
- def pcolor (* args ,data = None ,** kwargs ):
2525
- __ret = gca ().pcolor (* args ,data = data ,** kwargs )
2530
+ def pcolor (
2531
+ * args ,alpha = None ,norm = None ,cmap = None ,vmin = None ,
2532
+ vmax = None ,data = None ,** kwargs ):
2533
+ __ret = gca ().pcolor (
2534
+ * args ,alpha = alpha ,norm = norm ,cmap = cmap ,vmin = vmin ,
2535
+ vmax = vmax ,data = data ,** kwargs )
2526
2536
sci (__ret )
2527
2537
return __ret
2528
2538
2529
2539
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2530
2540
@_autogen_docstring (Axes .pcolormesh )
2531
- def pcolormesh (* args ,data = None ,** kwargs ):
2532
- __ret = gca ().pcolormesh (* args ,data = data ,** kwargs )
2541
+ def pcolormesh (
2542
+ * args ,alpha = None ,norm = None ,cmap = None ,vmin = None ,
2543
+ vmax = None ,shading = 'flat' ,antialiased = False ,data = None ,
2544
+ ** kwargs ):
2545
+ __ret = gca ().pcolormesh (
2546
+ * args ,alpha = alpha ,norm = norm ,cmap = cmap ,vmin = vmin ,
2547
+ vmax = vmax ,shading = shading ,antialiased = antialiased ,
2548
+ data = data ,** kwargs )
2533
2549
sci (__ret )
2534
2550
return __ret
2535
2551
@@ -2560,8 +2576,9 @@ def pie(
2560
2576
2561
2577
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2562
2578
@docstring .copy_dedent (Axes .plot )
2563
- def plot (* args ,data = None ,** kwargs ):
2564
- return gca ().plot (* args ,data = data ,** kwargs )
2579
+ def plot (* args ,scalex = True ,scaley = True ,data = None ,** kwargs ):
2580
+ return gca ().plot (
2581
+ * args ,scalex = scalex ,scaley = scaley ,data = data ,** kwargs )
2565
2582
2566
2583
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2567
2584
@docstring .copy_dedent (Axes .plot_date )
@@ -2652,13 +2669,19 @@ def stackplot(x, *args, data=None, **kwargs):
2652
2669
2653
2670
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2654
2671
@docstring .copy_dedent (Axes .stem )
2655
- def stem (* args ,data = None ,** kwargs ):
2656
- return gca ().stem (* args ,data = data ,** kwargs )
2672
+ def stem (
2673
+ * args ,linefmt = None ,markerfmt = None ,basefmt = None ,bottom = 0 ,
2674
+ label = None ,data = None ):
2675
+ return gca ().stem (
2676
+ * args ,linefmt = linefmt ,markerfmt = markerfmt ,basefmt = basefmt ,
2677
+ bottom = bottom ,label = label ,data = data )
2657
2678
2658
2679
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2659
2680
@docstring .copy_dedent (Axes .step )
2660
- def step (x ,y ,* args ,data = None ,** kwargs ):
2661
- return gca ().step (x = x ,y = y ,* args ,data = data ,** kwargs )
2681
+ def step (x ,y ,* args ,where = 'pre' ,linestyle = '' ,data = None ,** kwargs ):
2682
+ return gca ().step (
2683
+ x = x ,y = y ,* args ,where = where ,linestyle = linestyle ,data = data ,
2684
+ ** kwargs )
2662
2685
2663
2686
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2664
2687
@_autogen_docstring (Axes .streamplot )
@@ -2695,8 +2718,13 @@ def tick_params(axis='both', **kwargs):
2695
2718
2696
2719
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2697
2720
@docstring .copy_dedent (Axes .ticklabel_format )
2698
- def ticklabel_format (** kwargs ):
2699
- return gca ().ticklabel_format (** kwargs )
2721
+ def ticklabel_format (
2722
+ * ,axis = 'both' ,style = '' ,scilimits = None ,useOffset = None ,
2723
+ useLocale = None ,useMathText = None ):
2724
+ return gca ().ticklabel_format (
2725
+ axis = axis ,style = style ,scilimits = scilimits ,
2726
+ useOffset = useOffset ,useLocale = useLocale ,
2727
+ useMathText = useMathText )
2700
2728
2701
2729
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2702
2730
@_autogen_docstring (Axes .tricontour )