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