@@ -2259,8 +2259,21 @@ def axvspan(xmin, xmax, ymin=0, ymax=1, **kwargs):
22592259
22602260# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
22612261@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 )
22642277
22652278# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
22662279@docstring .copy_dedent (Axes .barbs )
@@ -2269,8 +2282,10 @@ def barbs(*args, data=None, **kw):
22692282
22702283# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
22712284@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 )
22742289
22752290# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
22762291@docstring .copy_dedent (Axes .boxplot )
@@ -2496,8 +2511,8 @@ def magnitude_spectrum(
24962511
24972512# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
24982513@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 )
25012516
25022517# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
25032518@docstring .copy_dedent (Axes .minorticks_off )
@@ -2511,15 +2526,25 @@ def minorticks_on():
25112526
25122527# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
25132528@_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 )
25162535 sci (__ret )
25172536 return __ret
25182537
25192538# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
25202539@_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 )
25232548 sci (__ret )
25242549 return __ret
25252550
@@ -2550,8 +2575,9 @@ def pie(
25502575
25512576# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
25522577@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 )
25552581
25562582# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
25572583@docstring .copy_dedent (Axes .plot_date )
@@ -2642,13 +2668,17 @@ def stackplot(x, *args, data=None, **kwargs):
26422668
26432669# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
26442670@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 )
26472677
26482678# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
26492679@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 )
26522682
26532683# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
26542684@_autogen_docstring (Axes .streamplot )
@@ -2685,8 +2715,13 @@ def tick_params(axis='both', **kwargs):
26852715
26862716# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
26872717@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 )
26902725
26912726# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
26922727@_autogen_docstring (Axes .tricontour )
0 commit comments