Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorials/intermediate/autoscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
2 changes: 1 addition & 1 deletion tutorials/introductory/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

###############################################################################
Expand Down