@@ -2259,8 +2259,21 @@ 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 )
2268
+
2269
+ # Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2270
+ @docstring .copy_dedent (Axes .multi_bar )
2271
+ def multi_bar (
2272
+ pos ,length ,thickness = 0.8 ,* ,style = 'grouped' ,
2273
+ orientation = 'vertical' ,** kwargs ):
2274
+ return gca ().multi_bar (
2275
+ pos = pos ,length = length ,thickness = thickness ,style = style ,
2276
+ orientation = orientation ,** kwargs )
2264
2277
2265
2278
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2266
2279
@docstring .copy_dedent (Axes .barbs )
@@ -2269,8 +2282,10 @@ def barbs(*args, data=None, **kw):
2269
2282
2270
2283
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2271
2284
@docstring .copy_dedent (Axes .barh )
2272
- def barh (* args ,** kwargs ):
2273
- return gca ().barh (* args ,** kwargs )
2285
+ def barh (y ,width ,height = 0.8 ,left = None ,* ,align = 'center' ,** kwargs ):
2286
+ return gca ().barh (
2287
+ y = y ,width = width ,height = height ,left = left ,align = align ,
2288
+ ** kwargs )
2274
2289
2275
2290
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2276
2291
@docstring .copy_dedent (Axes .boxplot )
@@ -2496,8 +2511,8 @@ def magnitude_spectrum(
2496
2511
2497
2512
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2498
2513
@docstring .copy_dedent (Axes .margins )
2499
- def margins (* args , ** kw ):
2500
- return gca ().margins (* args , ** kw )
2514
+ def margins (* margins , x = None , y = None , tight = True ):
2515
+ return gca ().margins (* margins , x = x , y = y , tight = tight )
2501
2516
2502
2517
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2503
2518
@docstring .copy_dedent (Axes .minorticks_off )
@@ -2511,15 +2526,25 @@ def minorticks_on():
2511
2526
2512
2527
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2513
2528
@_autogen_docstring (Axes .pcolor )
2514
- def pcolor (* args ,data = None ,** kwargs ):
2515
- __ret = gca ().pcolor (* args ,data = data ,** kwargs )
2529
+ def pcolor (
2530
+ * args ,alpha = None ,norm = None ,cmap = None ,vmin = None ,
2531
+ vmax = None ,data = None ,** kwargs ):
2532
+ __ret = gca ().pcolor (
2533
+ * args ,alpha = alpha ,norm = norm ,cmap = cmap ,vmin = vmin ,
2534
+ vmax = vmax ,data = data ,** kwargs )
2516
2535
sci (__ret )
2517
2536
return __ret
2518
2537
2519
2538
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2520
2539
@_autogen_docstring (Axes .pcolormesh )
2521
- def pcolormesh (* args ,data = None ,** kwargs ):
2522
- __ret = gca ().pcolormesh (* args ,data = data ,** kwargs )
2540
+ def pcolormesh (
2541
+ * args ,alpha = None ,norm = None ,cmap = None ,vmin = None ,
2542
+ vmax = None ,shading = 'flat' ,antialiased = False ,data = None ,
2543
+ ** kwargs ):
2544
+ __ret = gca ().pcolormesh (
2545
+ * args ,alpha = alpha ,norm = norm ,cmap = cmap ,vmin = vmin ,
2546
+ vmax = vmax ,shading = shading ,antialiased = antialiased ,
2547
+ data = data ,** kwargs )
2523
2548
sci (__ret )
2524
2549
return __ret
2525
2550
@@ -2550,8 +2575,9 @@ def pie(
2550
2575
2551
2576
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2552
2577
@docstring .copy_dedent (Axes .plot )
2553
- def plot (* args ,data = None ,** kwargs ):
2554
- return gca ().plot (* args ,data = data ,** kwargs )
2578
+ def plot (* args ,scalex = True ,scaley = True ,data = None ,** kwargs ):
2579
+ return gca ().plot (
2580
+ * args ,scalex = scalex ,scaley = scaley ,data = data ,** kwargs )
2555
2581
2556
2582
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2557
2583
@docstring .copy_dedent (Axes .plot_date )
@@ -2642,13 +2668,17 @@ def stackplot(x, *args, data=None, **kwargs):
2642
2668
2643
2669
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2644
2670
@docstring .copy_dedent (Axes .stem )
2645
- def stem (* args ,data = None ,** kwargs ):
2646
- return gca ().stem (* args ,data = data ,** kwargs )
2671
+ def stem (
2672
+ * args ,linefmt = None ,markerfmt = None ,basefmt = None ,bottom = 0 ,
2673
+ label = None ,data = None ):
2674
+ return gca ().stem (
2675
+ * args ,linefmt = linefmt ,markerfmt = markerfmt ,basefmt = basefmt ,
2676
+ bottom = bottom ,label = label ,data = data )
2647
2677
2648
2678
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2649
2679
@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 )
2680
+ def step (x ,y ,* args ,where = 'pre' , data = None ,** kwargs ):
2681
+ return gca ().step (x = x ,y = y ,* args ,where = where , data = data ,** kwargs )
2652
2682
2653
2683
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2654
2684
@_autogen_docstring (Axes .streamplot )
@@ -2685,8 +2715,13 @@ def tick_params(axis='both', **kwargs):
2685
2715
2686
2716
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2687
2717
@docstring .copy_dedent (Axes .ticklabel_format )
2688
- def ticklabel_format (** kwargs ):
2689
- return gca ().ticklabel_format (** kwargs )
2718
+ def ticklabel_format (
2719
+ * ,axis = 'both' ,style = '' ,scilimits = None ,useOffset = None ,
2720
+ useLocale = None ,useMathText = None ):
2721
+ return gca ().ticklabel_format (
2722
+ axis = axis ,style = style ,scilimits = scilimits ,
2723
+ useOffset = useOffset ,useLocale = useLocale ,
2724
+ useMathText = useMathText )
2690
2725
2691
2726
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2692
2727
@_autogen_docstring (Axes .tricontour )