Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0abd1b7 commit 69d9b36Copy full SHA for 69d9b36
lib/matplotlib/pyplot.py
@@ -3586,8 +3586,8 @@ def scatter(
3586
*,
3587
edgecolors: Literal["face", "none"] | ColorType | Sequence[ColorType] | None = None,
3588
plotnonfinite: bool = False,
3589
+ markerscale=2,
3590
data=None,
- markersize: int | None = None,
3591
**kwargs,
3592
) -> PathCollection:
3593
__ret = gca().scatter(
@@ -3604,7 +3604,7 @@ def scatter(
3604
linewidths=linewidths,
3605
edgecolors=edgecolors,
3606
plotnonfinite=plotnonfinite,
3607
- markersize=markersize,
+ markerscale=markerscale,
3608
**({"data": data} if data is not None else {}),
3609
3610
)
0 commit comments