@@ -2325,8 +2325,13 @@ def angle_spectrum(
2325
2325
2326
2326
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2327
2327
@_copy_docstring_and_deprecators (Axes .annotate )
2328
- def annotate (text , xy , * args , ** kwargs ):
2329
- return gca ().annotate (text , xy , * args , ** kwargs )
2328
+ def annotate (
2329
+ text , xy , xytext = None , xycoords = 'data' , textcoords = None ,
2330
+ arrowprops = None , annotation_clip = None , ** kwargs ):
2331
+ return gca ().annotate (
2332
+ text , xy , xytext = xytext , xycoords = xycoords ,
2333
+ textcoords = textcoords , arrowprops = arrowprops ,
2334
+ annotation_clip = annotation_clip , ** kwargs )
2330
2335
2331
2336
2332
2337
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2422,7 +2427,7 @@ def boxplot(
2422
2427
showfliers = None , boxprops = None , labels = None , flierprops = None ,
2423
2428
medianprops = None , meanprops = None , capprops = None ,
2424
2429
whiskerprops = None , manage_ticks = True , autorange = False ,
2425
- zorder = None , * , data = None ):
2430
+ zorder = None , capwidths = None , * , data = None ):
2426
2431
return gca ().boxplot (
2427
2432
x , notch = notch , sym = sym , vert = vert , whis = whis ,
2428
2433
positions = positions , widths = widths , patch_artist = patch_artist ,
@@ -2433,7 +2438,7 @@ def boxplot(
2433
2438
flierprops = flierprops , medianprops = medianprops ,
2434
2439
meanprops = meanprops , capprops = capprops ,
2435
2440
whiskerprops = whiskerprops , manage_ticks = manage_ticks ,
2436
- autorange = autorange , zorder = zorder ,
2441
+ autorange = autorange , zorder = zorder , capwidths = capwidths ,
2437
2442
** ({"data" : data } if data is not None else {}))
2438
2443
2439
2444
@@ -2890,14 +2895,16 @@ def streamplot(
2890
2895
x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
2891
2896
norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
2892
2897
transform = None , zorder = None , start_points = None , maxlength = 4.0 ,
2893
- integration_direction = 'both' , * , data = None ):
2898
+ integration_direction = 'both' , broken_streamlines = True , * ,
2899
+ data = None ):
2894
2900
__ret = gca ().streamplot (
2895
2901
x , y , u , v , density = density , linewidth = linewidth , color = color ,
2896
2902
cmap = cmap , norm = norm , arrowsize = arrowsize ,
2897
2903
arrowstyle = arrowstyle , minlength = minlength ,
2898
2904
transform = transform , zorder = zorder , start_points = start_points ,
2899
2905
maxlength = maxlength ,
2900
2906
integration_direction = integration_direction ,
2907
+ broken_streamlines = broken_streamlines ,
2901
2908
** ({"data" : data } if data is not None else {}))
2902
2909
sci (__ret .lines )
2903
2910
return __ret
0 commit comments