diff --git a/tutorials/intermediate/autoscale.py b/tutorials/intermediate/autoscale.py index c698eb5c35ab..0f4dda87d183 100644 --- a/tutorials/intermediate/autoscale.py +++ b/tutorials/intermediate/autoscale.py @@ -164,7 +164,7 @@ fig, ax = plt.subplots() collection = mpl.collections.StarPolygonCollection( - 5, 0, [250, ], # five point star, zero angle, size 250px + 5, rotation=0, sizes=(250,), # five point star, zero angle, size 250px offsets=np.column_stack([x, y]), # Set the positions offset_transform=ax.transData, # Propagate transformations of the Axes ) diff --git a/tutorials/introductory/images.py b/tutorials/introductory/images.py index f40b208dd225..236bc3b4bac2 100644 --- a/tutorials/introductory/images.py +++ b/tutorials/introductory/images.py @@ -245,7 +245,7 @@ from PIL import Image img = Image.open('../../doc/_static/stinkbug.png') -img.thumbnail((64, 64), Image.ANTIALIAS) # resizes image in-place +img.thumbnail((64, 64), Image.Resampling.LANCZOS) # resizes image in-place imgplot = plt.imshow(img) ###############################################################################